From 0e8e6af14b7d79db32d1f5b58f9dba2619efbf1e Mon Sep 17 00:00:00 2001 From: Brax Excell Date: Fri, 30 Aug 2024 14:08:43 -0500 Subject: [PATCH 01/24] update architecture diagram --- .images/architecture.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.images/architecture.svg b/.images/architecture.svg index d7d40c838..a222bc1dd 100644 --- a/.images/architecture.svg +++ b/.images/architecture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 3dbba1732cfcbb40c081e8d6bcf2fd71c1739003 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Fri, 6 Sep 2024 11:30:45 -0400 Subject: [PATCH 02/24] Ensure Section 2 tables populate for admins (#139757) --- services/ui-src/src/util/synthesize.js | 61 ++++++++++----------- services/ui-src/src/util/synthesize.test.js | 25 ++++++++- 2 files changed, 54 insertions(+), 32 deletions(-) diff --git a/services/ui-src/src/util/synthesize.js b/services/ui-src/src/util/synthesize.js index 361d698c7..497eabff0 100644 --- a/services/ui-src/src/util/synthesize.js +++ b/services/ui-src/src/util/synthesize.js @@ -215,6 +215,20 @@ const snakeToCamel = (str) => group.toUpperCase().replace("-", "").replace("_", "") ); +// returns the state abbreviation for the associated report +const getStateAbbr = (stateUserAbbr) => { + if (stateUserAbbr) return stateUserAbbr; + const windowPathName = window.location.pathname; + // if admin, grab the state from the URL + const stateFromURL = windowPathName.split("/")[3]; + + // if admin and in a print view get state param + const urlSearchParams = new URLSearchParams(window.location.search); + const stateFromParams = urlSearchParams.get("state"); + + return windowPathName.includes("print") ? stateFromParams : stateFromURL; +}; + /** * Retrieve acsSet from state and return for individual state. * @@ -230,26 +244,13 @@ const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { ? snakeToCamel(acsProperty) : acsProperty; - // if allStatesData and stateUser are available - if (allStatesData && stateUserAbbr) { - const windowPathName = window.location.pathname; - // if admin, grab the state from the URL - const stateFromURL = windowPathName.split("/")[3]; + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); - // if admin and in a print view get state param - const urlSearchParams = new URLSearchParams(window.location.search); - const stateFromParams = urlSearchParams.get("state"); - - // Get stateUser state or fallback to the URL, if an admin - const stateAbbr = - stateUserAbbr || - (windowPathName.includes("print") ? stateFromParams : stateFromURL); - - // Filter for only matching state - const stateData = allStatesData.filter((st) => st.code === stateAbbr)[0]; - - // Filter for matching state from JSON - const acs = stateData?.acsSet.filter((year) => year.year === +ffy)[0]; + // Find data for matching state + const stateData = allStatesData.find((st) => st.code === stateAbbr); + const acs = stateData?.acsSet.find((year) => year.year === +ffy); // If acs exists, return the value from the object if (acs) { @@ -279,20 +280,18 @@ export const compareACS = ( ) => { const percentagePrecision = 2; let returnValue = "Not Available"; - // if allStatesData and stateUser are available - if (allStatesData && stateUserAbbr) { - // Filter for only matching state - const stateData = allStatesData.filter( - (st) => st.code === stateUserAbbr - )[0]; - - // Filter for the correct year of state data - const startACS = stateData?.acsSet.filter( + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); + const stateData = allStatesData.find((st) => st.code === stateAbbr); + + // Find the correct year of state data + const startACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy1, 10) - )[0]; - const endACS = stateData?.acsSet.filter( + ); + const endACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy2, 10) - )[0]; + ); // If start year and end year of ACS exist, return the calculated value (percent change) from the objects if (startACS && endACS) { diff --git a/services/ui-src/src/util/synthesize.test.js b/services/ui-src/src/util/synthesize.test.js index a9f17cc45..43aed8a7b 100644 --- a/services/ui-src/src/util/synthesize.test.js +++ b/services/ui-src/src/util/synthesize.test.js @@ -128,7 +128,7 @@ const fallbackChipState = { }, }; -describe("value synthesization utility", () => { +describe("value synthesis utility", () => { describe("handles identity", () => { test("with no values", () => { // Returns undefined, because there's not a value @@ -615,6 +615,29 @@ describe("value synthesization utility", () => { ); expect(out).toEqual({ contents: ["3.70%"] }); }); + + it("compares two ffys as admin user", () => { + Object.defineProperty(window, "location", { + value: { + pathname: "/views/sections/AL/2023/02", + }, + }); + const out = synthesize( + { + compareACS: { + ffy1: 2021, + ffy2: 2020, + acsProperty: "numberUninsured", + }, + }, + state.allStatesData, + state.global.stateName, + undefined, // state user abbreviation + state.enrollmentCounts.chipEnrollments, + state.formData + ); + expect(out).toEqual({ contents: ["3.70%"] }); + }); }); describe("handles CHIPS Enrollment Data", () => { From a7d64866dc5d75874e323700f8bae4e005f606c8 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:21:11 -0400 Subject: [PATCH 03/24] Update datagrid patterns (#139760) --- .../ui-src/src/components/fields/DataGrid.jsx | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 4b913d5b1..2054cc157 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -1,12 +1,13 @@ import React, { useEffect, useState } from "react"; +import { useDispatch, useSelector } from "react-redux"; import PropTypes from "prop-types"; import Question from "./Question"; -import { connect, useDispatch } from "react-redux"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question, lastYearFormData }) => { +const DataGrid = ({ question }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); + const lastYearFormData = useSelector((state) => state.lastYearFormData); const dispatch = useDispatch(); const rowStyle = @@ -148,16 +149,6 @@ const DataGrid = ({ question, lastYearFormData }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, - year: PropTypes.number.isRequired, - state: PropTypes.string.isRequired, - lastYearFormData: PropTypes.object.isRequired, }; -const mapStateToProps = (state) => ({ - year: state.formData[0].contents.section.year, - state: state.formData[0].contents.section.state, - lastYearFormData: state.lastYearFormData, - lastYearTotals: state.lastYearTotals, -}); - -export default connect(mapStateToProps)(DataGrid); +export default DataGrid; From e70e079dea95d0d91f9284a950dce841c9b13963 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:35:30 -0400 Subject: [PATCH 04/24] Pull previous year value for 3c fields (#139761) --- .../ui-src/src/components/fields/Integer.jsx | 75 +++++++++++++------ .../src/components/fields/Integer.test.jsx | 52 ++++++++++++- .../ui-src/src/components/fields/Money.jsx | 2 +- .../ui-src/src/components/fields/Question.jsx | 2 +- 4 files changed, 107 insertions(+), 24 deletions(-) diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index fee83e44f..fb59e1fbd 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -4,12 +4,54 @@ import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; +const getPrevYearValue = (question, lastYearFormData) => { + let prevYearValue; + + // Split and create array from id + const splitID = question.id.split("-"); + + // the subquestion id (a, b, c, etc) + const questionId = splitID[5]; + + // Custom handling for -03-c-05 and -03-c-06 + if ( + splitID[1] === "03" && + splitID[2] === "c" && + (splitID[3] === "05" || splitID[3] === "06") && + questionId === "a" && + parseInt(splitID[4]) > 2 && + parseInt(splitID[4]) < 10 + ) { + // Set year to last year + splitID[0] = parseInt(splitID[0]) - 1; + splitID.pop(); + + const fieldsetId = splitID.join("-"); + const partIndex = parseInt(splitID[3]) - 1; + + // Get questions from last years JSON + const questions = + lastYearFormData[3].contents.section.subsections[2].parts[partIndex] + .questions; + + // Filter down to this question + const matchingQuestion = questions.filter( + (question) => fieldsetId === question?.fieldset_info?.id + ); + + // The first will always be correct + if (matchingQuestion[0]) { + prevYearValue = parseInt(matchingQuestion[0].questions[0].answer?.entry); + } + } + return prevYearValue; +}; + const Integer = ({ onChange, question, prevYear, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); - const lastYearTotals = useSelector((state) => state.lastYearTotals); - const prevYearNumber = - lastYearTotals[question.id.substring(0, question.id.length - 2)]; + const lastYearFormData = useSelector((state) => state.lastYearFormData); + const change = ({ target: { name, value } }) => { const stripped = value.replace(/[^0-9]+/g, ""); const parsed = parseFloat(stripped); @@ -25,22 +67,14 @@ const Integer = ({ onChange, question, prevYear, ...props }) => { } }; - if (prevYearNumber && question.id.indexOf("-a") > -1) { - return ( - - ); - } - const renderAnswer = (val) => (val || Number.isInteger(val) ? val : ""); // may attempt to rerender string on page load, so both val || isInteger + const renderAnswer = () => { + if (answer === null) { + return getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; + } else { + // may attempt to rerender string on page load, so both answer || isInteger + return answer || Number.isInteger(answer) ? answer : ""; + } + }; return ( { name={question.id} numeric onChange={change} - value={answer != null ? renderAnswer(answer) : prevYear && prevYear.value} + value={renderAnswer()} {...props} /> ); @@ -61,5 +95,4 @@ Integer.propTypes = { prevYear: PropTypes.object, }; -export { Integer }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index e9bb8095e..f120eaf80 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -6,7 +6,40 @@ import Integer from "./Integer"; import { screen, render, fireEvent } from "@testing-library/react"; const mockStore = configureMockStore(); -const store = mockStore({ lastYearTotals: { 2022: [] } }); +const lastYearFormData = [ + {}, + {}, + {}, + { + contents: { + section: { + subsections: [ + {}, + {}, + { + parts: [ + {}, + {}, + {}, + {}, + { + questions: [ + { + fieldset_info: { + id: "2022-03-c-05-03", + }, + questions: [{ answer: { entry: 3000 } }], + }, + ], + }, + ], + }, + ], + }, + }, + }, +]; +const store = mockStore({ lastYearTotals: { 2022: [] }, lastYearFormData }); const buildInteger = (intProps) => { return ( @@ -73,4 +106,21 @@ describe("", () => { expect(screen.queryByDisplayValue("raw text")).not.toBeInTheDocument(); expect(screen.getByRole("alert")).toBeInTheDocument(); }); + + it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { + const props = { + question: { + id: "2023-03-c-05-03-a", + label: "How much?", + answer: { entry: null }, + }, + }; + + render(buildInteger(props)); + + expect(screen.getByDisplayValue("3000")).toBeInTheDocument(); + const input = screen.getByRole("textbox"); + fireEvent.change(input, { target: { value: 234 } }); + expect(screen.getByDisplayValue("234")).toBeInTheDocument(); + }); }); diff --git a/services/ui-src/src/components/fields/Money.jsx b/services/ui-src/src/components/fields/Money.jsx index d7fcce141..dba1ac251 100644 --- a/services/ui-src/src/components/fields/Money.jsx +++ b/services/ui-src/src/components/fields/Money.jsx @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; const Money = ({ ...props }) => { return ; diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 271024817..db62d228a 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -9,7 +9,7 @@ import { DateRange } from "./DateRange"; import { Email } from "./Email"; import { Fieldset } from "./Fieldset"; import UploadComponent from "../layout/UploadComponent"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; import { MailingAddress } from "./MailingAddress"; import { Money } from "./Money"; import { Objectives } from "./Objectives"; From 5ceb7951eafe6753671fd976e10b73f64ca1ee3f Mon Sep 17 00:00:00 2001 From: dwhitestratiform <52459927+dwhitestratiform@users.noreply.github.com> Date: Tue, 10 Sep 2024 07:52:13 -0400 Subject: [PATCH 05/24] Adding destroy action notification for slack (#139759) --- .github/workflows/destroy.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/destroy.yml b/.github/workflows/destroy.yml index e1033651b..0a96661ec 100644 --- a/.github/workflows/destroy.yml +++ b/.github/workflows/destroy.yml @@ -65,4 +65,18 @@ jobs: inputs: '{ "topics": "mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.config,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.offsets,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.status"}' ref: refs/heads/master # Otherwise workflow-dispatch tries to operate off of our default name - name: Destroy - run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false \ No newline at end of file + run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false + + # Notify the integrations channel when a destroy action fails + notify_on_destroy_failure: + runs-on: ubuntu-latest + needs: + - destroy + if: ${{ failure() }} + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}." + MSG_MINIMAL: true + SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} \ No newline at end of file From 26eed161359ce15d036ae92b928887039135c046 Mon Sep 17 00:00:00 2001 From: Nick Summers Date: Thu, 12 Sep 2024 09:08:32 -0400 Subject: [PATCH 06/24] [CMDCT-3976] <11 Print View Fix (#139751) --- .../libs/validation/backend-section.schema.ts | 3 + .../data/seed-local/seed-section.json | 14633 ++++------------ .../ui-src/src/components/fields/DataGrid.jsx | 4 +- .../ui-src/src/components/fields/Integer.jsx | 19 +- .../src/components/fields/Integer.test.jsx | 53 +- .../src/components/fields/Objective.jsx | 6 +- .../src/components/fields/Objectives.jsx | 10 +- .../ui-src/src/components/fields/Question.jsx | 18 +- .../src/components/fields/Repeatable.jsx | 5 +- .../src/components/fields/Repeatables.jsx | 3 + .../ui-src/src/components/layout/Part.jsx | 3 +- .../ui-src/src/components/layout/Section.jsx | 9 +- .../src/components/layout/Subsection.jsx | 4 +- .../ui-src/src/components/sections/Print.jsx | 2 + 14 files changed, 3812 insertions(+), 10960 deletions(-) diff --git a/services/app-api/libs/validation/backend-section.schema.ts b/services/app-api/libs/validation/backend-section.schema.ts index 3383d025c..9ae88e986 100644 --- a/services/app-api/libs/validation/backend-section.schema.ts +++ b/services/app-api/libs/validation/backend-section.schema.ts @@ -359,6 +359,9 @@ export const sectionSchema = { hint: { type: "string", }, + mask: { + type: "string", + }, questions: { type: "array", items: { diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index faa2eab30..c0a87b848 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -75,42 +75,32 @@ "id": "2023-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-07", "hint": "Include city, state, and zip code.", "type": "mailing_address", "label": "Full mailing address:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -159,14 +149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -174,9 +158,7 @@ "id": "2023-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -200,14 +182,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -221,14 +197,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -265,9 +235,7 @@ "id": "2023-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -307,14 +275,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -352,9 +314,7 @@ "id": "2023-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -375,9 +335,7 @@ "id": "2023-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-01-05", @@ -387,18 +345,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -406,9 +358,7 @@ "id": "2023-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -431,14 +381,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -446,9 +390,7 @@ "id": "2023-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -472,14 +414,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -493,14 +429,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -537,9 +467,7 @@ "id": "2023-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -579,14 +507,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -624,9 +546,7 @@ "id": "2023-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -647,9 +567,7 @@ "id": "2023-01-a-02-04", "type": "text_multiline", "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-02-05", @@ -659,18 +577,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -678,9 +590,7 @@ "id": "2023-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -701,14 +611,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -722,14 +626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -744,14 +642,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -766,14 +658,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -787,14 +673,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -809,19 +689,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-03-07", @@ -831,19 +703,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-03-08", @@ -853,19 +717,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-03-09", @@ -875,14 +731,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -896,14 +746,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -918,14 +762,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -940,19 +778,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-03-13", @@ -961,14 +791,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -982,14 +806,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1003,14 +821,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1024,19 +836,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1045,9 +849,7 @@ "id": "2023-01-a-03-17", "type": "text_multiline", "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-03-18", @@ -1056,14 +858,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1122,14 +918,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1143,14 +933,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1165,14 +949,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1187,14 +965,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1208,14 +980,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1230,19 +996,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-04-07", @@ -1252,19 +1010,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-04-08", @@ -1274,19 +1024,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-04-09", @@ -1296,19 +1038,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2023-01-a-04-10", @@ -1317,14 +1051,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1338,14 +1066,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1360,14 +1082,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1382,19 +1098,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-04-14", @@ -1403,14 +1111,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1425,14 +1127,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1447,14 +1143,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1468,14 +1158,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1489,14 +1173,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1510,19 +1188,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1531,9 +1201,7 @@ "id": "2023-01-a-04-20", "type": "text_multiline", "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-04-21", @@ -1542,14 +1210,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1633,9 +1295,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1658,9 +1318,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1684,18 +1342,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2022" }, { "contents": "Number of children enrolled in FFY 2023" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table" @@ -1704,9 +1358,7 @@ "id": "2023-02-a-01-01", "type": "text_multiline", "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1752,9 +1404,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -1781,9 +1431,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -1810,9 +1458,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -1839,9 +1485,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -1868,9 +1512,7 @@ } ], [ - { - "contents": "2022" - }, + { "contents": "2022" }, { "lookupAcs": { "ffy": "2022", @@ -1898,21 +1540,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -1956,9 +1590,7 @@ "id": "2023-02-a-02-01", "type": "text_multiline", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1994,14 +1626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2009,9 +1635,7 @@ "id": "2023-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2035,14 +1659,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2053,9 +1671,7 @@ "id": "2023-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-b", @@ -2070,49 +1686,37 @@ "id": "2023-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2135,17 +1739,13 @@ "id": "2023-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2185,14 +1785,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2200,9 +1794,7 @@ "id": "2023-03-a-01-01-a", "type": "text_multiline", "label": "What are you doing differently?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2227,14 +1819,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2242,9 +1828,7 @@ "id": "2023-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2266,25 +1850,19 @@ "hint": "For example: TV, school outreach, or word of mouth.", "type": "text_multiline", "label": "What methods have been most effective in reaching low-income, uninsured children?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2307,18 +1885,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2326,9 +1895,7 @@ "id": "2023-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2352,18 +1919,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2371,9 +1929,7 @@ "id": "2023-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2394,9 +1950,7 @@ "id": "2023-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -2408,18 +1962,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2430,9 +1975,7 @@ "id": "2023-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2453,9 +1996,7 @@ "id": "2023-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2474,9 +2015,7 @@ "id": "2023-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2495,9 +2034,7 @@ "id": "2023-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2527,17 +2064,13 @@ "id": "2023-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2561,18 +2094,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2583,17 +2107,13 @@ "id": "2023-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2619,14 +2139,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -2637,14 +2151,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2655,17 +2163,13 @@ "id": "2023-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-03-b", "type": "text", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2688,33 +2192,25 @@ "id": "2023-03-c-01-04", "type": "text_multiline", "label": "What else have you done to simplify the eligibility renewal process for families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-05", "type": "text_multiline", "label": "Which retention strategies have you found to be most effective?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-06", "type": "text_multiline", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -2728,54 +2224,47 @@ "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2023? This number should be equal to the total of reported numbers for questions 2-4 below.", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "id": "2023-03-c-02-03-a", "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This table is auto-populated with the data you entered above.", @@ -2785,9 +2274,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-01')].answer.entry" @@ -2802,9 +2289,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-02')].answer.entry" @@ -2819,9 +2304,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-03')].answer.entry" @@ -2836,9 +2319,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-04')].answer.entry" @@ -2854,15 +2335,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -2879,34 +2354,29 @@ "id": "2023-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2927,36 +2397,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3018,15 +2484,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3108,15 +2568,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3133,34 +2587,29 @@ "id": "2023-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -3181,36 +2630,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3272,15 +2717,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3362,15 +2801,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3415,14 +2848,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -3439,9 +2866,7 @@ "id": "2023-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3453,7 +2878,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3477,33 +2903,29 @@ "id": "2023-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3521,9 +2943,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-03" - }, + "fieldset_info": { "id": "2023-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -3540,9 +2960,7 @@ "id": "2023-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3554,7 +2972,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3578,33 +2997,29 @@ "id": "2023-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3622,9 +3037,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-04" - }, + "fieldset_info": { "id": "2023-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -3635,9 +3048,7 @@ "id": "2023-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3649,7 +3060,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3673,33 +3085,29 @@ "id": "2023-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3717,9 +3125,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-05" - }, + "fieldset_info": { "id": "2023-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -3730,9 +3136,7 @@ "id": "2023-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3744,7 +3148,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3768,33 +3173,29 @@ "id": "2023-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3812,9 +3213,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-06" - }, + "fieldset_info": { "id": "2023-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -3826,9 +3225,7 @@ "id": "2023-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3840,7 +3237,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3864,33 +3262,29 @@ "id": "2023-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3908,9 +3302,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-07" - }, + "fieldset_info": { "id": "2023-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -3921,9 +3313,7 @@ "id": "2023-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3935,7 +3325,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3959,33 +3350,29 @@ "id": "2023-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4003,18 +3390,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-08" - }, + "fieldset_info": { "id": "2023-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -4031,9 +3414,7 @@ "id": "2023-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4045,7 +3426,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4069,33 +3451,29 @@ "id": "2023-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4113,9 +3491,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-10" - }, + "fieldset_info": { "id": "2023-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -4126,9 +3502,7 @@ "id": "2023-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4140,7 +3514,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4164,33 +3539,29 @@ "id": "2023-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4208,9 +3579,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-11" - }, + "fieldset_info": { "id": "2023-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -4221,9 +3590,7 @@ "id": "2023-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4235,7 +3602,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4259,33 +3627,29 @@ "id": "2023-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4303,9 +3667,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-12" - }, + "fieldset_info": { "id": "2023-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -4317,9 +3679,7 @@ "id": "2023-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4331,7 +3691,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4355,33 +3716,29 @@ "id": "2023-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4399,9 +3756,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-13" - }, + "fieldset_info": { "id": "2023-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -4412,9 +3767,7 @@ "id": "2023-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4426,7 +3779,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4450,33 +3804,29 @@ "id": "2023-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4494,9 +3844,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-14" - }, + "fieldset_info": { "id": "2023-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -4514,9 +3862,7 @@ "id": "2023-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4528,7 +3874,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4552,33 +3899,29 @@ "id": "2023-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4596,9 +3939,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-15" - }, + "fieldset_info": { "id": "2023-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -4609,9 +3950,7 @@ "id": "2023-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4623,7 +3962,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4647,33 +3987,29 @@ "id": "2023-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4691,9 +4027,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-16" - }, + "fieldset_info": { "id": "2023-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -4704,9 +4038,7 @@ "id": "2023-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4718,7 +4050,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4742,33 +4075,29 @@ "id": "2023-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4786,9 +4115,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-17" - }, + "fieldset_info": { "id": "2023-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -4800,9 +4127,7 @@ "id": "2023-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4814,7 +4139,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4838,33 +4164,29 @@ "id": "2023-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4882,9 +4204,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-18" - }, + "fieldset_info": { "id": "2023-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -4895,9 +4215,7 @@ "id": "2023-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4909,7 +4227,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4933,33 +4252,29 @@ "id": "2023-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4977,18 +4292,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-19" - }, + "fieldset_info": { "id": "2023-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -5030,14 +4341,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -5054,9 +4359,7 @@ "id": "2023-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5068,7 +4371,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5092,33 +4396,29 @@ "id": "2023-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5136,9 +4436,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-03" - }, + "fieldset_info": { "id": "2023-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -5155,9 +4453,7 @@ "id": "2023-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5169,7 +4465,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5193,33 +4490,29 @@ "id": "2023-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5237,9 +4530,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-04" - }, + "fieldset_info": { "id": "2023-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -5250,9 +4541,7 @@ "id": "2023-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5264,7 +4553,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5288,33 +4578,29 @@ "id": "2023-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5332,9 +4618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-05" - }, + "fieldset_info": { "id": "2023-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -5345,9 +4629,7 @@ "id": "2023-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5359,7 +4641,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5383,33 +4666,29 @@ "id": "2023-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5427,9 +4706,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-06" - }, + "fieldset_info": { "id": "2023-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -5441,9 +4718,7 @@ "id": "2023-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5455,7 +4730,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5479,33 +4755,29 @@ "id": "2023-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5523,9 +4795,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-07" - }, + "fieldset_info": { "id": "2023-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -5536,9 +4806,7 @@ "id": "2023-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5550,7 +4818,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5574,33 +4843,29 @@ "id": "2023-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5618,18 +4883,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-08" - }, + "fieldset_info": { "id": "2023-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -5646,9 +4907,7 @@ "id": "2023-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5660,7 +4919,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5684,33 +4944,29 @@ "id": "2023-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5728,9 +4984,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-10" - }, + "fieldset_info": { "id": "2023-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -5741,9 +4995,7 @@ "id": "2023-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5755,7 +5007,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5779,33 +5032,29 @@ "id": "2023-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5823,9 +5072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-11" - }, + "fieldset_info": { "id": "2023-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -5836,9 +5083,7 @@ "id": "2023-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5850,7 +5095,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5874,33 +5120,29 @@ "id": "2023-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5918,9 +5160,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-12" - }, + "fieldset_info": { "id": "2023-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -5932,9 +5172,7 @@ "id": "2023-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5946,7 +5184,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5970,33 +5209,29 @@ "id": "2023-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6014,9 +5249,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-13" - }, + "fieldset_info": { "id": "2023-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -6027,9 +5260,7 @@ "id": "2023-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6041,7 +5272,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6065,33 +5297,29 @@ "id": "2023-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6109,9 +5337,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-14" - }, + "fieldset_info": { "id": "2023-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -6129,9 +5355,7 @@ "id": "2023-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6143,7 +5367,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6167,33 +5392,29 @@ "id": "2023-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6211,9 +5432,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-15" - }, + "fieldset_info": { "id": "2023-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -6224,9 +5443,7 @@ "id": "2023-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6238,7 +5455,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6262,33 +5480,29 @@ "id": "2023-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6306,9 +5520,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-16" - }, + "fieldset_info": { "id": "2023-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -6319,9 +5531,7 @@ "id": "2023-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6333,7 +5543,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6357,33 +5568,29 @@ "id": "2023-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6401,9 +5608,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-17" - }, + "fieldset_info": { "id": "2023-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -6415,9 +5620,7 @@ "id": "2023-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6429,7 +5632,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6453,33 +5657,29 @@ "id": "2023-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6497,9 +5697,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-18" - }, + "fieldset_info": { "id": "2023-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -6510,9 +5708,7 @@ "id": "2023-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6524,7 +5720,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6548,33 +5745,29 @@ "id": "2023-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6592,18 +5785,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-19" - }, + "fieldset_info": { "id": "2023-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -6626,14 +5815,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6655,18 +5838,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -6674,9 +5851,7 @@ "id": "2023-03-d-01-02-a", "type": "text_multiline", "label": "What information or tools do you provide families with so they can track cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6706,9 +5881,7 @@ "id": "2023-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6739,17 +5912,13 @@ "id": "2023-03-d-01-03", "type": "text_multiline", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-05", @@ -6758,14 +5927,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6773,9 +5936,7 @@ "id": "2023-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6799,14 +5960,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6814,9 +5969,7 @@ "id": "2023-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6837,9 +5990,7 @@ "id": "2023-03-d-01-07", "type": "text_multiline", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6861,17 +6012,13 @@ "id": "2023-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -6914,14 +6061,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -6961,14 +6102,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6977,9 +6112,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-04", @@ -6989,14 +6122,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7008,18 +6135,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -7031,14 +6149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7046,9 +6158,7 @@ "id": "2023-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7069,9 +6179,7 @@ "id": "2023-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -7080,25 +6188,19 @@ "id": "2023-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-09", "type": "text", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-10", "type": "text", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7131,15 +6233,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -7199,41 +6295,31 @@ "id": "2023-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7270,14 +6356,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7288,14 +6368,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7306,14 +6380,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7321,9 +6389,7 @@ "id": "2023-03-f-01-04", "type": "text_multiline", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-05", @@ -7332,18 +6398,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -7351,9 +6408,7 @@ "id": "2023-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the managed care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7374,17 +6429,15 @@ "id": "2023-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7393,17 +6446,13 @@ "id": "2023-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7414,17 +6463,13 @@ "id": "2023-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-11", "type": "integer", "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7435,17 +6480,15 @@ "id": "2023-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -7456,10 +6499,7 @@ "answer": { "entry": null, "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -7474,14 +6514,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7489,9 +6523,7 @@ "id": "2023-03-f-01-15-a", "type": "text_multiline", "label": "How do you provide oversight of the contractors? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7515,14 +6547,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7530,9 +6556,7 @@ "id": "2023-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7553,17 +6577,13 @@ "id": "2023-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7597,14 +6617,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7616,9 +6630,7 @@ "id": "2023-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7630,7 +6642,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7656,49 +6669,43 @@ "id": "2023-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7716,9 +6723,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-02" - }, + "fieldset_info": { "id": "2023-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -7729,9 +6734,7 @@ "id": "2023-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7743,7 +6746,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7769,49 +6773,43 @@ "id": "2023-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7829,9 +6827,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-03" - }, + "fieldset_info": { "id": "2023-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -7848,9 +6844,7 @@ "id": "2023-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7862,7 +6856,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7888,49 +6883,43 @@ "id": "2023-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7948,9 +6937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-04" - }, + "fieldset_info": { "id": "2023-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -7968,9 +6955,7 @@ "id": "2023-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7982,7 +6967,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8008,49 +6994,43 @@ "id": "2023-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -8068,9 +7048,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-05" - }, + "fieldset_info": { "id": "2023-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -8083,9 +7061,8 @@ "id": "2023-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -8100,14 +7077,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8118,18 +7089,14 @@ "id": "2023-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -8163,9 +7130,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -8191,17 +7156,13 @@ "id": "2023-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8228,14 +7189,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8247,14 +7202,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -8284,9 +7233,7 @@ "id": "2023-03-h-02-01", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results. This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-h-02-02", @@ -8299,18 +7246,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid_exp_chip" }, - { - "label": "Separate CHIP", - "value": "separate_chip" - }, + { "label": "Separate CHIP", "value": "separate_chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combo" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8321,18 +7262,9 @@ "answer": { "entry": null, "options": [ - { - "label": "CAHPS 5.1", - "value": "CAHPS 5.1" - }, - { - "label": "CAHPS 5.1H", - "value": "CAHPS 5.1H" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "CAHPS 5.1", "value": "CAHPS 5.1" }, + { "label": "CAHPS 5.1H", "value": "CAHPS 5.1H" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8343,18 +7275,12 @@ "answer": { "entry": null, "options": [ - { - "label": "None", - "value": "None" - }, + { "label": "None", "value": "None" }, { "label": "Children with Chronic Conditions", "value": "Children with Chronic Conditions" }, - { - "label": "Other", - "value": "Other" - } + { "label": "Other", "value": "Other" } ] } }, @@ -8369,14 +7295,8 @@ "label": "NCQA HEDIS CAHPS 5.1H", "value": "NCQA HEDIS CAHPS 5.1H" }, - { - "label": "HRQ CAHPS", - "value": "HRQ CAHPS" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "HRQ CAHPS", "value": "HRQ CAHPS" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8384,9 +7304,7 @@ "id": "2023-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8458,10 +7376,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8469,9 +7384,7 @@ "id": "2023-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8499,7 +7412,7 @@ "parts": [ { "id": "2023-03-i-01", - "title": "\u00A0", + "title": " ", "type": "part", "questions": [ { @@ -8510,14 +7423,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -8525,7 +7432,7 @@ }, { "id": "2023-03-i-02", - "title": "\u00A0", + "title": " ", "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", "type": "part", "questions": [ @@ -8543,9 +7450,7 @@ "id": "2023-03-i-02-01-01-01", "type": "text", "label": "What is the name of your HSI program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-i-02-01-01-02", @@ -8554,14 +7459,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -8587,9 +7486,7 @@ "id": "2023-03-i-02-01-01-03", "type": "text_multiline", "label": "Which populations does the HSI program serve?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8608,9 +7505,7 @@ "id": "2023-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8623,15 +7518,14 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "id": "2023-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8644,7 +7538,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8694,9 +7589,7 @@ "id": "2023-03-i-02-01-01-06", "type": "text_multiline", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8715,9 +7608,7 @@ "id": "2023-03-i-02-01-01-07", "type": "text_multiline", "label": "What outcomes have you found when measuring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8736,9 +7627,7 @@ "id": "2023-03-i-02-01-01-08", "type": "text_multiline", "label": "Is there anything else you'd like to add about this HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8757,9 +7646,7 @@ "id": "2023-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8859,9 +7746,7 @@ "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", "type": "text_multiline", "label": "Briefly describe your goal.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-02", @@ -8890,9 +7775,7 @@ "id": "2023-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8925,17 +7808,14 @@ "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -8948,17 +7828,14 @@ "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9009,34 +7886,26 @@ "id": "2023-04-a-01-01-01-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9054,9 +7923,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase access to care" - } + "answer": { "entry": "Increase access to care" } }, { "id": "2023-04-a-01-01-02-02", @@ -9071,9 +7938,7 @@ "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-02", @@ -9102,9 +7967,7 @@ "id": "2023-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9137,17 +8000,14 @@ "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9160,17 +8020,14 @@ "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9221,34 +8078,26 @@ "id": "2023-04-a-01-01-02-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9283,9 +8132,7 @@ "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-02", @@ -9314,9 +8161,7 @@ "id": "2023-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9349,17 +8194,14 @@ "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9372,17 +8214,14 @@ "hint": "For example: The total number of rural children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9433,34 +8272,26 @@ "id": "2023-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9477,9 +8308,7 @@ "id": "2023-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02", @@ -9493,9 +8322,7 @@ "id": "2023-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-02", @@ -9524,9 +8351,7 @@ "id": "2023-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9559,17 +8384,14 @@ "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9582,17 +8404,14 @@ "hint": "For example: The total number of children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9643,34 +8462,26 @@ "id": "2023-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9687,9 +8498,7 @@ "id": "2023-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02", @@ -9703,9 +8512,7 @@ "id": "2023-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-02", @@ -9734,9 +8541,7 @@ "id": "2023-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9768,17 +8573,14 @@ "id": "2023-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9790,17 +8592,14 @@ "id": "2023-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9851,34 +8650,26 @@ "id": "2023-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9895,9 +8686,7 @@ "id": "2023-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02", @@ -9911,9 +8700,7 @@ "id": "2023-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-02", @@ -9942,9 +8729,7 @@ "id": "2023-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9976,17 +8761,14 @@ "id": "2023-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9999,17 +8781,14 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -10060,34 +8839,26 @@ "id": "2023-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10109,34 +8880,26 @@ "id": "2023-04-a-02-01", "type": "text_multiline", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-03", "type": "text_multiline", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-04", "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10182,34 +8945,26 @@ "id": "2023-05-a-01-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-01" - }, + "fieldset_info": { "id": "2023-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -10223,34 +8978,26 @@ "id": "2023-05-a-01-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-02" - }, + "fieldset_info": { "id": "2023-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -10264,34 +9011,26 @@ "id": "2023-05-a-01-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-03" - }, + "fieldset_info": { "id": "2023-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -10305,34 +9044,26 @@ "id": "2023-05-a-01-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-04" - }, + "fieldset_info": { "id": "2023-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -10343,9 +9074,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -10366,9 +9095,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -10389,9 +9116,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -10435,9 +9160,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3>", @@ -10474,18 +9197,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -10509,34 +9224,26 @@ "id": "2023-05-a-02-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-01" - }, + "fieldset_info": { "id": "2023-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -10550,34 +9257,26 @@ "id": "2023-05-a-02-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-02" - }, + "fieldset_info": { "id": "2023-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -10591,34 +9290,26 @@ "id": "2023-05-a-02-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-03" - }, + "fieldset_info": { "id": "2023-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -10632,34 +9323,26 @@ "id": "2023-05-a-02-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-04" - }, + "fieldset_info": { "id": "2023-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -10673,34 +9356,26 @@ "id": "2023-05-a-02-05-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-05-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-05-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-05" - }, + "fieldset_info": { "id": "2023-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -10714,34 +9389,26 @@ "id": "2023-05-a-02-06-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-06-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-06-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-06" - }, + "fieldset_info": { "id": "2023-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -10755,34 +9422,26 @@ "id": "2023-05-a-02-07-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-07-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-07-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-07" - }, + "fieldset_info": { "id": "2023-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -10793,9 +9452,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -10816,9 +9473,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -10839,9 +9494,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -10862,9 +9515,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -10885,9 +9536,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -10908,9 +9557,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -10931,9 +9578,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -10954,9 +9599,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -10995,9 +9638,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -11034,18 +9675,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11058,9 +9691,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -11117,48 +9748,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY23)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2025" - } - ], + "targets": [{ "lookupFmapFy": "2025" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11177,9 +9790,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11198,9 +9809,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11217,9 +9826,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -11235,9 +9842,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11267,9 +9872,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11299,9 +9902,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11319,18 +9920,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11367,10 +9960,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -11378,9 +9968,7 @@ "id": "2023-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11404,14 +9992,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -11419,9 +10001,7 @@ "id": "2023-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11457,34 +10037,29 @@ "id": "2023-05-a-03-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-01" - }, + "fieldset_info": { "id": "2023-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -11499,34 +10074,26 @@ "id": "2023-05-a-03-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-03-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-02" - }, + "fieldset_info": { "id": "2023-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -11535,9 +10102,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11558,9 +10123,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11582,18 +10145,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11617,34 +10172,29 @@ "id": "2023-05-a-04-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-01" - }, + "fieldset_info": { "id": "2023-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -11659,34 +10209,26 @@ "id": "2023-05-a-04-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-04-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-02" - }, + "fieldset_info": { "id": "2023-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -11695,9 +10237,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11718,9 +10258,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11742,18 +10280,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11768,17 +10298,13 @@ "id": "2023-05-a-05-01", "type": "text_multiline", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11815,49 +10341,37 @@ "id": "2023-06-a-01-01", "type": "text_multiline", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-02", "type": "text_multiline", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-03", "type": "text_multiline", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-04", "type": "text_multiline", "label": "What changes have you made to your CHIP program in FFY 2023 or plan to make in FFY 2024? Why have you decided to make these changes?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11938,42 +10452,32 @@ "id": "2022-00-a-01-04", "label": "Contact name:", "type": "text", - "answer": { - "entry": "Haley Gov" - } + "answer": { "entry": "Haley Gov" } }, { "id": "2022-00-a-01-05", "label": "Job title:", "type": "text", - "answer": { - "entry": "Lead" - } + "answer": { "entry": "Lead" } }, { "id": "2022-00-a-01-06", "label": "Email:", "type": "email", - "answer": { - "entry": "haley@cms.gov" - } + "answer": { "entry": "haley@cms.gov" } }, { "id": "2022-00-a-01-07", "label": "Full mailing address:", "type": "mailing_address", - "answer": { - "entry": "address here" - }, + "answer": { "entry": "address here" }, "hint": "Include city, state, and zip code." }, { "id": "2022-00-a-01-08", "label": "Phone number:", "type": "phone_number", - "answer": { - "entry": "8004659988" - } + "answer": { "entry": "8004659988" } }, { "questions": [], @@ -12036,9 +10540,7 @@ "id": "2022-01-a-01-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "25" - } + "answer": { "entry": "25" } } ], "id": "2022-01-a-01-01", @@ -12046,14 +10548,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12069,14 +10565,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12127,9 +10617,7 @@ "id": "2022-01-a-01-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -12153,14 +10641,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12214,9 +10696,7 @@ "id": "2022-01-a-01-03-b", "label": "What's the maximum premium a family would be charged each year?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-01-03", @@ -12224,14 +10704,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12240,9 +10714,7 @@ "id": "2022-01-a-01-04", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-01-05", @@ -12250,18 +10722,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12271,9 +10737,7 @@ "id": "2022-01-a-01-06", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "info here" - } + "answer": { "entry": "info here" } } ], "context_data": { @@ -12308,9 +10772,7 @@ "id": "2022-01-a-02-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-02-01", @@ -12318,14 +10780,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12341,14 +10797,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12399,9 +10849,7 @@ "id": "2022-01-a-02-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "context_data": { @@ -12425,14 +10873,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12486,9 +10928,7 @@ "id": "2022-01-a-02-03-b", "label": "What's the maximum premium fee a family would be charged each year?", "type": "money", - "answer": { - "entry": "6" - } + "answer": { "entry": "6" } } ], "id": "2022-01-a-02-03", @@ -12496,14 +10936,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12512,9 +10946,7 @@ "id": "2022-01-a-02-04", "label": "Do your premiums differ for different CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-02-05", @@ -12522,18 +10954,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12543,9 +10969,7 @@ "id": "2022-01-a-02-06", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } } ], "context_data": { @@ -12567,18 +10991,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12592,18 +11007,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12617,18 +11023,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12643,18 +11040,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12669,95 +11057,53 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-03-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-03-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Medicaid Expansion CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-03-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12772,18 +11118,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12798,18 +11135,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12823,44 +11151,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-03-12", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12875,18 +11183,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12900,18 +11199,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12925,43 +11215,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-03-16", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -12973,9 +11243,7 @@ "id": "2022-01-a-03-17", "label": "Briefly describe why you made these changes to your Medicaid Expansion CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-03-18", @@ -12983,18 +11251,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13056,18 +11315,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13081,18 +11331,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13106,18 +11347,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13132,18 +11364,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13158,121 +11381,68 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-04-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-04-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Separate CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-04-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: changing amounts, populations, or the collection process." }, { - "context_data": { - "bullet_text": "Crowd-out policies" - }, + "context_data": { "bullet_text": "Crowd-out policies" }, "id": "2022-01-a-04-09", "label": "Have you made any changes to substitution of coverage policies?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13287,18 +11457,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13312,18 +11473,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -13337,44 +11489,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-04-13", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13389,18 +11521,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13414,18 +11537,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" }, @@ -13440,18 +11554,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -13466,18 +11571,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13491,43 +11587,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-04-19", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13539,9 +11615,7 @@ "id": "2022-01-a-04-20", "label": "Briefly describe why you made these changes to your Separate CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-04-21", @@ -13549,14 +11623,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -13639,9 +11707,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13664,9 +11730,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13690,18 +11754,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2021" }, { "contents": "Number of children enrolled in FFY 2022" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table", @@ -13739,9 +11799,7 @@ "id": "2022-02-a-01-01", "label": "If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-02-a-01", @@ -13758,9 +11816,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2013" - }, + { "contents": "2013" }, { "lookupAcs": { "ffy": "2013", @@ -13787,9 +11843,7 @@ } ], [ - { - "contents": "2014" - }, + { "contents": "2014" }, { "lookupAcs": { "ffy": "2014", @@ -13816,9 +11870,7 @@ } ], [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -13845,9 +11897,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -13874,9 +11924,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -13903,9 +11951,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -13932,9 +11978,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -13961,9 +12005,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -13990,9 +12032,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -14020,21 +12060,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "label": "", @@ -14056,9 +12088,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2019 and 2021" - } + { "contents": "Percent change between 2019 and 2021" } ] }, "fieldset_type": "synthesized_table", @@ -14096,9 +12126,7 @@ "id": "2022-02-a-02-01", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -14119,9 +12147,7 @@ "id": "2022-02-a-02-02-a", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02-02", @@ -14129,14 +12155,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14150,9 +12170,7 @@ "id": "2022-02-a-02-03-a", "label": "What is the alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-b", @@ -14167,49 +12185,37 @@ "id": "2022-02-a-02-03-c", "label": "Define the population you’re measuring, including ages and federal poverty levels.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-d", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-e", "label": "Why did your state choose to adopt this alternate data source?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-f", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-g", "label": "What are the limitations of this alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-h", "label": "How do you use this alternate data source in CHIP program planning?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14232,14 +12238,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14248,17 +12248,13 @@ "id": "2022-02-a-02-04", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-02-a-02-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02", @@ -14312,9 +12308,7 @@ "id": "2022-03-a-01-01-a", "label": "What are you doing differently?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-01", @@ -14322,14 +12316,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14353,9 +12341,7 @@ "id": "2022-03-a-01-02-a", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-02", @@ -14363,14 +12349,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -14380,26 +12360,20 @@ "id": "2022-03-a-01-03", "label": "What methods have been most effective in reaching low-income, uninsured children?", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: TV, school outreach, or word of mouth." }, { "id": "2022-03-a-01-04", "label": "Is there anything else you’d like to add about your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-a-01-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01" @@ -14433,9 +12407,7 @@ "id": "2022-03-b-01-01-a", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-01", @@ -14443,18 +12415,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14478,9 +12441,7 @@ "id": "2022-03-b-01-02-a", "label": "Which database do you use?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-02", @@ -14488,18 +12449,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14508,9 +12460,7 @@ "id": "2022-03-b-01-03", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", "type": "percentage", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -14524,9 +12474,7 @@ "id": "2022-03-b-01-04-a", "label": "How long is the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14560,9 +12508,7 @@ "id": "2022-03-b-01-04-b", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14581,9 +12527,7 @@ "id": "2022-03-b-01-04-c", "label": "What exemptions apply to the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14602,9 +12546,7 @@ "id": "2022-03-b-01-04-d", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14619,18 +12561,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14641,17 +12574,13 @@ "id": "2022-03-b-01-05", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-b-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01" @@ -14675,17 +12604,13 @@ "id": "2022-03-c-01-01-a", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-01-b", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14708,18 +12633,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14730,14 +12646,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14751,17 +12661,13 @@ "id": "2022-03-c-01-03-a", "label": "How many notices do you send to families before disenrolling a child from the program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-03-b", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14784,14 +12690,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14800,33 +12700,25 @@ "id": "2022-03-c-01-04", "label": "What else have you done to simplify the eligibility renewal process for families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-05", "label": "Which retention strategies have you found to be most effective?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-06", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-07", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-01", @@ -14839,18 +12731,14 @@ "id": "2022-03-c-02-01", "label": "How many applicants were denied CHIP coverage in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "Don’t include applicants being considered for redetermination — these data will be collected in Part 3." }, { "id": "2022-03-c-02-02", "label": "How many applicants were denied CHIP coverage for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee." }, { @@ -14859,43 +12747,33 @@ "id": "2022-03-c-02-03-a", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-02-03", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available." }, { "id": "2022-03-c-02-04", "label": "How many applicants were denied CHIP coverage for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-02-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-01')].answer.entry" @@ -14910,9 +12788,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-02')].answer.entry" @@ -14927,9 +12803,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-03')].answer.entry" @@ -14944,9 +12818,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-04')].answer.entry" @@ -14962,15 +12834,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: CHIP Eligibility Denials (Not Redetermination)", @@ -14989,25 +12855,19 @@ "id": "2022-03-c-03-01", "label": "How many children were eligible for redetermination in CHIP in FFY 2022?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-03", "label": "How many children were retained in CHIP after redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "questions": [ @@ -15029,44 +12889,34 @@ "id": "2022-03-c-03-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-03-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage." }, { "id": "2022-03-c-03-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "id": "2022-03-c-03-04", "label": "How many children were disenrolled in CHIP after the redetermination process?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-03-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15125,15 +12975,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in CHIP ", @@ -15215,15 +13059,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15243,25 +13081,19 @@ "id": "2022-03-c-04-01", "label": "How many children were eligible for redetermination in Medicaid in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-03", "label": "How many children were retained in Medicaid after redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15283,44 +13115,34 @@ "id": "2022-03-c-04-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-04-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead." }, { "id": "2022-03-c-04-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-04-04", "label": "How many children were disenrolled in Medicaid after the redetermination process?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-04-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15379,15 +13201,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in Medicaid ", @@ -15469,15 +13285,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15523,14 +13333,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -15559,9 +13363,7 @@ "id": "2022-03-c-05-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15584,33 +13386,25 @@ "id": "2022-03-c-05-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15629,9 +13423,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-03" - }, + "fieldset_info": { "id": "2022-03-c-05-03" }, "label": "How many children were newly enrolled in CHIP between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -15659,9 +13451,7 @@ "id": "2022-03-c-05-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15684,33 +13474,25 @@ "id": "2022-03-c-05-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15729,9 +13511,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-04" - }, + "fieldset_info": { "id": "2022-03-c-05-04" }, "label": "How many children were continuously enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15755,9 +13535,7 @@ "id": "2022-03-c-05-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15780,33 +13558,25 @@ "id": "2022-03-c-05-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15825,9 +13595,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-05" - }, + "fieldset_info": { "id": "2022-03-c-05-05" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15850,9 +13618,7 @@ "id": "2022-03-c-05-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15875,33 +13641,25 @@ "id": "2022-03-c-05-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15920,9 +13678,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-06" - }, + "fieldset_info": { "id": "2022-03-c-05-06" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15945,9 +13701,7 @@ "id": "2022-03-c-05-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15970,33 +13724,25 @@ "id": "2022-03-c-05-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16015,9 +13761,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-07" - }, + "fieldset_info": { "id": "2022-03-c-05-07" }, "label": "How many children were no longer enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16041,9 +13785,7 @@ "id": "2022-03-c-05-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -16066,33 +13808,25 @@ "id": "2022-03-c-05-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16111,9 +13845,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-08" - }, + "fieldset_info": { "id": "2022-03-c-05-08" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16122,9 +13854,7 @@ "id": "2022-03-c-05-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -16150,10 +13880,7 @@ "id": "2022-03-c-05-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16176,37 +13903,25 @@ "id": "2022-03-c-05-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16225,9 +13940,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-10" - }, + "fieldset_info": { "id": "2022-03-c-05-10" }, "label": "How many children were continuously enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16251,10 +13964,7 @@ "id": "2022-03-c-05-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16277,37 +13987,25 @@ "id": "2022-03-c-05-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16326,9 +14024,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-11" - }, + "fieldset_info": { "id": "2022-03-c-05-11" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16351,10 +14047,7 @@ "id": "2022-03-c-05-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16377,37 +14070,25 @@ "id": "2022-03-c-05-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16426,9 +14107,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-12" - }, + "fieldset_info": { "id": "2022-03-c-05-12" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16451,10 +14130,7 @@ "id": "2022-03-c-05-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16477,37 +14153,25 @@ "id": "2022-03-c-05-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16526,9 +14190,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-13" - }, + "fieldset_info": { "id": "2022-03-c-05-13" }, "label": "How many children were no longer enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16552,10 +14214,7 @@ "id": "2022-03-c-05-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16578,37 +14237,25 @@ "id": "2022-03-c-05-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16627,9 +14274,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-14" - }, + "fieldset_info": { "id": "2022-03-c-05-14" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16658,10 +14303,7 @@ "id": "2022-03-c-05-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16684,37 +14326,25 @@ "id": "2022-03-c-05-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16733,9 +14363,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-15" - }, + "fieldset_info": { "id": "2022-03-c-05-15" }, "label": "How many children were continuously enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16759,10 +14387,7 @@ "id": "2022-03-c-05-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16785,37 +14410,25 @@ "id": "2022-03-c-05-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16834,9 +14447,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-16" - }, + "fieldset_info": { "id": "2022-03-c-05-16" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16859,10 +14470,7 @@ "id": "2022-03-c-05-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16885,37 +14493,25 @@ "id": "2022-03-c-05-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16934,9 +14530,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-17" - }, + "fieldset_info": { "id": "2022-03-c-05-17" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16959,10 +14553,7 @@ "id": "2022-03-c-05-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16985,37 +14576,25 @@ "id": "2022-03-c-05-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17034,9 +14613,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-18" - }, + "fieldset_info": { "id": "2022-03-c-05-18" }, "label": "How many children were no longer enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17060,10 +14637,7 @@ "id": "2022-03-c-05-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17086,37 +14660,25 @@ "id": "2022-03-c-05-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17135,9 +14697,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-19" - }, + "fieldset_info": { "id": "2022-03-c-05-19" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17146,9 +14706,7 @@ "id": "2022-03-c-05-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-05", @@ -17188,14 +14746,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -17224,9 +14776,7 @@ "id": "2022-03-c-06-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17249,33 +14799,25 @@ "id": "2022-03-c-06-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17294,9 +14836,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-03" - }, + "fieldset_info": { "id": "2022-03-c-06-03" }, "label": "How many children were newly enrolled in Medicaid between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17324,9 +14864,7 @@ "id": "2022-03-c-06-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17349,33 +14887,25 @@ "id": "2022-03-c-06-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17394,9 +14924,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-04" - }, + "fieldset_info": { "id": "2022-03-c-06-04" }, "label": "How many children were continuously enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17420,9 +14948,7 @@ "id": "2022-03-c-06-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17445,33 +14971,25 @@ "id": "2022-03-c-06-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17490,9 +15008,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-05" - }, + "fieldset_info": { "id": "2022-03-c-06-05" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17515,9 +15031,7 @@ "id": "2022-03-c-06-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17540,33 +15054,25 @@ "id": "2022-03-c-06-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17585,9 +15091,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-06" - }, + "fieldset_info": { "id": "2022-03-c-06-06" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -17610,9 +15114,7 @@ "id": "2022-03-c-06-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17635,33 +15137,25 @@ "id": "2022-03-c-06-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17680,9 +15174,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-07" - }, + "fieldset_info": { "id": "2022-03-c-06-07" }, "label": "How many children were no longer enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17706,9 +15198,7 @@ "id": "2022-03-c-06-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17731,33 +15221,25 @@ "id": "2022-03-c-06-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17776,9 +15258,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-08" - }, + "fieldset_info": { "id": "2022-03-c-06-08" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17787,9 +15267,7 @@ "id": "2022-03-c-06-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -17815,10 +15293,7 @@ "id": "2022-03-c-06-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17841,37 +15316,25 @@ "id": "2022-03-c-06-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17890,9 +15353,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-10" - }, + "fieldset_info": { "id": "2022-03-c-06-10" }, "label": "How many children were continuously enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17916,10 +15377,7 @@ "id": "2022-03-c-06-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17942,37 +15400,25 @@ "id": "2022-03-c-06-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17991,9 +15437,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-11" - }, + "fieldset_info": { "id": "2022-03-c-06-11" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18016,10 +15460,7 @@ "id": "2022-03-c-06-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18042,37 +15483,25 @@ "id": "2022-03-c-06-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18091,9 +15520,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-12" - }, + "fieldset_info": { "id": "2022-03-c-06-12" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18116,10 +15543,7 @@ "id": "2022-03-c-06-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18142,37 +15566,25 @@ "id": "2022-03-c-06-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18191,9 +15603,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-13" - }, + "fieldset_info": { "id": "2022-03-c-06-13" }, "label": "How many children were no longer enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18217,10 +15627,7 @@ "id": "2022-03-c-06-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18243,37 +15650,25 @@ "id": "2022-03-c-06-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18292,9 +15687,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-14" - }, + "fieldset_info": { "id": "2022-03-c-06-14" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18323,10 +15716,7 @@ "id": "2022-03-c-06-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18349,37 +15739,25 @@ "id": "2022-03-c-06-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18398,9 +15776,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-15" - }, + "fieldset_info": { "id": "2022-03-c-06-15" }, "label": "How many children were continuously enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18424,10 +15800,7 @@ "id": "2022-03-c-06-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18450,37 +15823,25 @@ "id": "2022-03-c-06-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18499,9 +15860,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-16" - }, + "fieldset_info": { "id": "2022-03-c-06-16" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18524,10 +15883,7 @@ "id": "2022-03-c-06-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18550,37 +15906,25 @@ "id": "2022-03-c-06-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18599,9 +15943,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-17" - }, + "fieldset_info": { "id": "2022-03-c-06-17" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18624,10 +15966,7 @@ "id": "2022-03-c-06-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18650,37 +15989,25 @@ "id": "2022-03-c-06-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18699,9 +16026,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-18" - }, + "fieldset_info": { "id": "2022-03-c-06-18" }, "label": "How many children were no longer enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18725,10 +16050,7 @@ "id": "2022-03-c-06-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18751,37 +16073,25 @@ "id": "2022-03-c-06-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18800,9 +16110,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-19" - }, + "fieldset_info": { "id": "2022-03-c-06-19" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18811,9 +16119,7 @@ "id": "2022-03-c-06-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-06", @@ -18837,14 +16143,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -18882,9 +16182,7 @@ "id": "2022-03-d-01-02-a", "label": "What information or tools do you provide families with so they can track cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -18913,9 +16211,7 @@ "id": "2022-03-d-01-02-b", "label": "Who tracks cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-02", @@ -18931,18 +16227,12 @@ "value": "health_plans", "label": "Health plans" }, - { - "value": "states", - "label": "States" - }, + { "value": "states", "label": "States" }, { "value": "third_party_administrator", "label": "Third party administrator" }, - { - "value": "other", - "label": "Other " - } + { "value": "other", "label": "Other " } ], "entry": "health_plans" } @@ -18951,17 +16241,13 @@ "id": "2022-03-d-01-03", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-04", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -18982,9 +16268,7 @@ "id": "2022-03-d-01-05-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-05", @@ -18992,14 +16276,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19023,9 +16301,7 @@ "id": "2022-03-d-01-06-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-06", @@ -19033,14 +16309,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19065,25 +16335,19 @@ "id": "2022-03-d-01-07", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-d-01-08", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19126,14 +16390,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19172,14 +16430,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -19188,9 +16440,7 @@ "id": "2022-03-e-02-03", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This only applies to states operating an 1115 demo." }, { @@ -19199,14 +16449,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19218,18 +16462,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": null }, @@ -19254,9 +16489,7 @@ "id": "2022-03-e-02-06-a", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-e-02-06", @@ -19264,14 +16497,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19281,9 +16508,7 @@ "id": "2022-03-e-02-07", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -19292,25 +16517,19 @@ "id": "2022-03-e-02-08", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-09", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-10", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -19340,15 +16559,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "label": "Child", @@ -19411,41 +16624,31 @@ "id": "2022-03-e-02-14", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-15", "label": "What challenges did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-16", "label": "What accomplishments did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19481,14 +16684,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -19499,14 +16696,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19517,14 +16708,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19533,9 +16718,7 @@ "id": "2022-03-f-01-04", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -19556,9 +16739,7 @@ "id": "2022-03-f-01-05-a", "label": "What safeguards and procedures do the Managed Care plans have in place?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-05", @@ -19566,18 +16747,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "na" } @@ -19586,17 +16758,13 @@ "id": "2022-03-f-01-06", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-07", "label": "How many cases have been found in favor of the beneficiary in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -19605,17 +16773,13 @@ "id": "2022-03-f-01-08", "label": "How many cases related to provider credentialing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-09", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19626,17 +16790,13 @@ "id": "2022-03-f-01-10", "label": "How many cases related to provider billing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-11", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19647,17 +16807,13 @@ "id": "2022-03-f-01-12", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-13", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19667,10 +16823,7 @@ "type": "radio", "answer": { "options": [ - { - "value": "separate_chip_only", - "label": "CHIP only" - }, + { "value": "separate_chip_only", "label": "CHIP only" }, { "value": "medicaid_separate_chip_combined", "label": "Medicaid and CHIP combined" @@ -19698,9 +16851,7 @@ "id": "2022-03-f-01-15-a", "label": "How do you provide oversight of the contractors? ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-15", @@ -19708,14 +16859,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19739,9 +16884,7 @@ "id": "2022-03-f-01-16-a", "label": "What specifically are the contractors responsible for in terms of oversight?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-16", @@ -19749,14 +16892,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19765,17 +16902,13 @@ "id": "2022-03-f-01-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-f-01-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19807,14 +16940,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -19838,9 +16965,7 @@ "id": "2022-03-g-01-02-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19865,49 +16990,37 @@ "id": "2022-03-g-01-02-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19926,9 +17039,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-02" - }, + "fieldset_info": { "id": "2022-03-g-01-02" }, "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -19951,9 +17062,7 @@ "id": "2022-03-g-01-03-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19978,49 +17087,37 @@ "id": "2022-03-g-01-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20039,9 +17136,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-03" - }, + "fieldset_info": { "id": "2022-03-g-01-03" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20070,9 +17165,7 @@ "id": "2022-03-g-01-04-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20097,49 +17190,37 @@ "id": "2022-03-g-01-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20158,9 +17239,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-04" - }, + "fieldset_info": { "id": "2022-03-g-01-04" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one preventative dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20189,9 +17268,7 @@ "id": "2022-03-g-01-05-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20216,49 +17293,37 @@ "id": "2022-03-g-01-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20277,9 +17342,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-05" - }, + "fieldset_info": { "id": "2022-03-g-01-05" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2022?", "fieldset_type": "marked", "type": "fieldset", @@ -20295,9 +17358,7 @@ "id": "2022-03-g-01-06", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -20314,17 +17375,13 @@ "id": "2022-03-g-01-07-a", "label": "How many children were enrolled in supplemental dental coverage during FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-07-b", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "type": "integer", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This is the total number for all children between 0-18 years from question 1." }, { @@ -20358,9 +17415,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table", @@ -20387,14 +17442,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20403,17 +17452,13 @@ "id": "2022-03-g-01-08", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-g-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20455,14 +17500,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20473,14 +17512,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20536,10 +17569,7 @@ "value": "Sample size was too small (fewer than 30)", "label": "Sample size was too small (fewer than 30)" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [ null, @@ -20552,9 +17582,7 @@ "id": "2022-03-h-02-02", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "context_data": { @@ -20593,14 +17621,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -20620,9 +17642,7 @@ "id": "2022-03-i-02-01-01-01", "label": "What is the name of your HSI program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-i-02-01-01-02", @@ -20630,14 +17650,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20677,9 +17691,7 @@ "id": "2022-03-i-02-01-01-03", "label": "Which populations does the HSI program serve?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20698,9 +17710,7 @@ "id": "2022-03-i-02-01-01-04", "label": "How many children do you estimate are being served by the HSI program?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20719,9 +17729,7 @@ "id": "2022-03-i-02-01-01-05", "label": "How many children in the HSI program are below your state's FPL threshold? ", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [], @@ -20783,9 +17791,7 @@ "id": "2022-03-i-02-01-01-06", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20804,9 +17810,7 @@ "id": "2022-03-i-02-01-01-07", "label": "What outcomes have you found when measuring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20825,9 +17829,7 @@ "id": "2022-03-i-02-01-01-08", "label": "Is there anything else you'd like to add about this HSI program?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20846,9 +17848,7 @@ "id": "2022-03-i-02-01-01-09", "label": "Optional: Attach any additional documents.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-i-02-01-01" @@ -20933,9 +17933,7 @@ "id": "2022-04-a-01-01-01-02-01-01", "label": "Briefly describe your goal.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program." }, { @@ -20964,9 +17962,7 @@ "id": "2022-04-a-01-01-01-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-01-02-01-02", @@ -20998,18 +17994,14 @@ "id": "2022-04-a-01-01-01-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21021,18 +18013,14 @@ "id": "2022-04-a-01-01-01-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21084,33 +18072,25 @@ "id": "2022-04-a-01-01-01-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21131,9 +18111,7 @@ "id": "2022-04-a-01-01-02-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": "Increase access to care" - }, + "answer": { "entry": "Increase access to care" }, "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan." }, { @@ -21145,9 +18123,7 @@ "id": "2022-04-a-01-01-02-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to increase access to care for underserved populations, our goal is to increase the number of children of Hispanic ethnicity who have visited a primary care physician by 5% annually over the next five years (ending in 2028)." }, { @@ -21176,9 +18152,7 @@ "id": "2022-04-a-01-01-02-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-02-02-01-02", @@ -21210,18 +18184,14 @@ "id": "2022-04-a-01-01-02-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21233,18 +18203,14 @@ "id": "2022-04-a-01-01-02-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total number of children of Hispanic ethnicity enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21296,33 +18262,25 @@ "id": "2022-04-a-01-01-02-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21357,9 +18315,7 @@ "id": "2022-04-a-01-01-03-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state." }, { @@ -21388,9 +18344,7 @@ "id": "2022-04-a-01-01-03-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-03-02-01-02", @@ -21422,18 +18376,14 @@ "id": "2022-04-a-01-01-03-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year." }, { "id": "2022-04-a-01-01-03-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21445,18 +18395,14 @@ "id": "2022-04-a-01-01-03-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of rural children enrolled in CHIP." }, { "id": "2022-04-a-01-01-03-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21508,33 +18454,25 @@ "id": "2022-04-a-01-01-03-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21555,9 +18493,7 @@ "id": "2022-04-a-01-01-04-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21568,9 +18504,7 @@ "id": "2022-04-a-01-01-04-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21598,9 +18532,7 @@ "id": "2022-04-a-01-01-04-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-04-02-01-02", @@ -21632,17 +18564,13 @@ "id": "2022-04-a-01-01-04-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21654,17 +18582,13 @@ "id": "2022-04-a-01-01-04-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21716,33 +18640,25 @@ "id": "2022-04-a-01-01-04-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21763,9 +18679,7 @@ "id": "2022-04-a-01-01-05-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21776,9 +18690,7 @@ "id": "2022-04-a-01-01-05-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21806,9 +18718,7 @@ "id": "2022-04-a-01-01-05-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-05-02-01-02", @@ -21840,17 +18750,13 @@ "id": "2022-04-a-01-01-05-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21862,17 +18768,13 @@ "id": "2022-04-a-01-01-05-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21924,33 +18826,25 @@ "id": "2022-04-a-01-01-05-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21971,9 +18865,7 @@ "id": "2022-04-a-01-01-06-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21984,9 +18876,7 @@ "id": "2022-04-a-01-01-06-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -22014,9 +18904,7 @@ "id": "2022-04-a-01-01-06-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-06-02-01-02", @@ -22048,17 +18936,13 @@ "id": "2022-04-a-01-01-06-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -22070,18 +18954,14 @@ "id": "2022-04-a-01-01-06-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of eligible children in the last federal fiscal year." }, { "id": "2022-04-a-01-01-06-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -22133,33 +19013,25 @@ "id": "2022-04-a-01-01-06-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -22188,33 +19060,25 @@ "id": "2022-04-a-02-01", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-02", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-03", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care equity, special health care needs, or other emerging health care needs.) What have you discovered through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-04", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: studies, analyses, or any other documents that address your performance goals." } ], @@ -22266,33 +19130,25 @@ "id": "2022-05-a-01-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-01" - }, + "fieldset_info": { "id": "2022-05-a-01-01" }, "label": "How much did you spend on Managed Care in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22307,33 +19163,25 @@ "id": "2022-05-a-01-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-02" - }, + "fieldset_info": { "id": "2022-05-a-01-02" }, "label": "How much did you spend on Fee for Service in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22348,33 +19196,25 @@ "id": "2022-05-a-01-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-03" - }, + "fieldset_info": { "id": "2022-05-a-01-03" }, "label": "How much did you spend on anything else related to benefit costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22389,33 +19229,25 @@ "id": "2022-05-a-01-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-04" - }, + "fieldset_info": { "id": "2022-05-a-01-04" }, "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22425,9 +19257,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -22448,9 +19278,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -22471,9 +19299,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -22517,9 +19343,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -22550,18 +19374,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 1: Benefits Costs", @@ -22586,33 +19402,25 @@ "id": "2022-05-a-02-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-01" - }, + "fieldset_info": { "id": "2022-05-a-02-01" }, "label": "How much did you spend on personnel in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -22628,33 +19436,25 @@ "id": "2022-05-a-02-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } }, { "id": "2022-05-a-02-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-02" - }, + "fieldset_info": { "id": "2022-05-a-02-02" }, "label": "How much did you spend on general administration in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22669,33 +19469,25 @@ "id": "2022-05-a-02-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-03" - }, + "fieldset_info": { "id": "2022-05-a-02-03" }, "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22710,33 +19502,25 @@ "id": "2022-05-a-02-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-04" - }, + "fieldset_info": { "id": "2022-05-a-02-04" }, "label": "How much did you spend on claims processing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22751,33 +19535,25 @@ "id": "2022-05-a-02-05-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-c", "label": "2024", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-05" - }, + "fieldset_info": { "id": "2022-05-a-02-05" }, "label": "How much did you spend on outreach and marketing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22792,33 +19568,25 @@ "id": "2022-05-a-02-06-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-06" - }, + "fieldset_info": { "id": "2022-05-a-02-06" }, "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22833,33 +19601,25 @@ "id": "2022-05-a-02-07-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-07" - }, + "fieldset_info": { "id": "2022-05-a-02-07" }, "label": "How much did you spend on anything else related to administrative costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22869,9 +19629,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -22892,9 +19650,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -22915,9 +19671,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -22938,9 +19692,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -22961,9 +19713,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -22984,9 +19734,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -23007,9 +19755,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -23030,9 +19776,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -23071,9 +19815,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "formula": "(<0> + <1> + <2> - <3>) / 9", "$comment": "This should equal the total benefit cost calculated above, then divided by 9", @@ -23110,18 +19852,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 2: Administrative Costs", @@ -23134,9 +19868,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", "$comment": "Total benefit costs 2022 + total admin costs 2022", @@ -23193,49 +19925,31 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23254,9 +19968,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23275,9 +19987,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23293,9 +20003,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", "$comment": "Total program costs - federal share", @@ -23312,9 +20020,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23344,9 +20050,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23376,9 +20080,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23395,18 +20097,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 3: Federal and State Shares", @@ -23433,9 +20127,7 @@ "id": "2022-05-a-02-08-a", "label": "What other type of funding did you receive?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-08", @@ -23467,10 +20159,7 @@ "value": "tobacco settlement", "label": "Tobacco settlement" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [null, "state appropriations"] }, @@ -23495,9 +20184,7 @@ "id": "2022-05-a-02-09-a", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-09", @@ -23505,14 +20192,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -23534,33 +20215,25 @@ "id": "2022-05-a-03-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-01" - }, + "fieldset_info": { "id": "2022-05-a-03-01" }, "label": "How many children were eligible for managed care in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23575,33 +20248,25 @@ "id": "2022-05-a-03-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-02" - }, + "fieldset_info": { "id": "2022-05-a-03-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23612,9 +20277,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23635,9 +20298,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23659,18 +20320,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23694,33 +20347,25 @@ "id": "2022-05-a-04-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-01" - }, + "fieldset_info": { "id": "2022-05-a-04-01" }, "label": "How many children were eligible for fee for service in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23735,33 +20380,25 @@ "id": "2022-05-a-04-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-02" - }, + "fieldset_info": { "id": "2022-05-a-04-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee for service in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23772,9 +20409,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23795,9 +20430,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23819,18 +20452,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23849,17 +20474,13 @@ "id": "2022-05-a-05-01", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-05-02", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-05" @@ -23898,49 +20519,37 @@ "id": "2022-06-a-01-01", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-02", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-03", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-04", "label": "What changes have you made to your CHIP program in FFY 2022 or plan to make in FFY 2023? Why have you decided to make these changes?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-05", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-06-a-01" @@ -24029,25 +20638,19 @@ "id": "2021-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2021-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2021-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-00-a-01-07", @@ -24062,9 +20665,7 @@ "id": "2021-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -24113,14 +20714,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24128,9 +20723,7 @@ "id": "2021-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24154,14 +20747,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24175,14 +20762,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24219,9 +20800,7 @@ "id": "2021-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24261,14 +20840,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24306,9 +20879,7 @@ "id": "2021-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24329,9 +20900,7 @@ "id": "2021-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2021-01-a-01-05", @@ -24341,18 +20910,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24360,9 +20923,7 @@ "id": "2021-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24385,14 +20946,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24400,9 +20955,7 @@ "id": "2021-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24426,14 +20979,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24447,14 +20994,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24496,9 +21037,7 @@ "id": "2021-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24538,14 +21077,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24588,9 +21121,7 @@ "id": "2021-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24623,18 +21154,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24642,9 +21167,7 @@ "id": "2021-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24665,18 +21188,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24690,18 +21204,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24716,18 +21221,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24742,18 +21238,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24767,18 +21254,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24793,23 +21271,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-03-07", @@ -24819,23 +21286,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-03-08", @@ -24845,23 +21301,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-03-09", @@ -24871,18 +21316,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24896,18 +21332,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24922,18 +21349,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24948,23 +21366,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-03-13", @@ -24973,18 +21380,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24998,18 +21396,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25023,18 +21412,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25048,23 +21428,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25084,18 +21453,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -25154,18 +21514,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25179,18 +21530,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25205,18 +21547,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25231,18 +21564,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25256,18 +21580,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25282,23 +21597,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-04-07", @@ -25308,23 +21612,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-04-08", @@ -25334,23 +21627,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-04-09", @@ -25360,23 +21642,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2021-01-a-04-10", @@ -25385,18 +21656,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25410,18 +21672,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25436,18 +21689,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25462,23 +21706,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-04-14", @@ -25487,18 +21720,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25513,18 +21737,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25539,18 +21754,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25564,18 +21770,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25589,18 +21786,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25614,23 +21802,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25650,14 +21827,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -25785,9 +21956,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -25814,9 +21983,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -25843,9 +22010,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -25872,9 +22037,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -25901,9 +22064,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -25931,21 +22092,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -25966,9 +22119,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -25988,14 +22139,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26003,9 +22148,7 @@ "id": "2021-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26029,14 +22172,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26047,9 +22184,7 @@ "id": "2021-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-b", @@ -26064,49 +22199,37 @@ "id": "2021-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26129,17 +22252,13 @@ "id": "2021-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26179,14 +22298,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26221,14 +22334,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26236,9 +22343,7 @@ "id": "2021-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26268,17 +22373,13 @@ "id": "2021-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26301,18 +22402,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26320,9 +22412,7 @@ "id": "2021-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26346,18 +22436,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26365,9 +22446,7 @@ "id": "2021-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26388,9 +22467,7 @@ "id": "2021-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -26402,18 +22479,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26424,9 +22492,7 @@ "id": "2021-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26447,9 +22513,7 @@ "id": "2021-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26468,9 +22532,7 @@ "id": "2021-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26489,9 +22551,7 @@ "id": "2021-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26521,17 +22581,13 @@ "id": "2021-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2021-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26556,18 +22612,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26578,17 +22625,13 @@ "id": "2021-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26614,14 +22657,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -26632,14 +22669,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26650,9 +22681,7 @@ "id": "2021-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-01-03-b", @@ -26707,9 +22736,7 @@ "id": "2021-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -26723,35 +22750,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2021-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2021-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2021-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -26759,9 +22778,7 @@ "id": "2021-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-03-c-02-05", @@ -26779,9 +22796,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-01')].answer.entry" @@ -26796,9 +22811,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-02')].answer.entry" @@ -26813,9 +22826,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-03')].answer.entry" @@ -26830,9 +22841,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-04')].answer.entry" @@ -26848,15 +22857,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -26873,34 +22876,26 @@ "id": "2021-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2021-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2021-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2021-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -26921,26 +22916,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2021-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2021-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -26948,9 +22937,7 @@ "id": "2021-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27012,15 +22999,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27102,15 +23083,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27127,34 +23102,26 @@ "id": "2021-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2021-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2021-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2021-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -27175,26 +23142,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2021-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2021-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -27202,9 +23163,7 @@ "id": "2021-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27266,15 +23225,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27356,15 +23309,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27409,14 +23356,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -27433,9 +23374,7 @@ "id": "2021-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27471,33 +23410,25 @@ "id": "2021-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2021-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2021-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2021-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -27515,9 +23446,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-03" - }, + "fieldset_info": { "id": "2021-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -27534,9 +23463,7 @@ "id": "2021-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27572,33 +23499,25 @@ "id": "2021-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2021-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2021-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2021-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -27616,9 +23535,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-04" - }, + "fieldset_info": { "id": "2021-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -27629,9 +23546,7 @@ "id": "2021-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27667,33 +23582,25 @@ "id": "2021-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27711,9 +23618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-05" - }, + "fieldset_info": { "id": "2021-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -27724,9 +23629,7 @@ "id": "2021-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27762,33 +23665,25 @@ "id": "2021-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27806,9 +23701,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-06" - }, + "fieldset_info": { "id": "2021-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -27820,9 +23713,7 @@ "id": "2021-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27858,33 +23749,25 @@ "id": "2021-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2021-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2021-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2021-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -27902,9 +23785,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-07" - }, + "fieldset_info": { "id": "2021-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -27915,9 +23796,7 @@ "id": "2021-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27953,33 +23832,25 @@ "id": "2021-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2021-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -27997,18 +23868,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-08" - }, + "fieldset_info": { "id": "2021-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -28025,10 +23892,7 @@ "id": "2021-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28064,37 +23928,25 @@ "id": "2021-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28112,9 +23964,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-10" - }, + "fieldset_info": { "id": "2021-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -28125,110 +23975,90 @@ "id": "2021-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["yes", null], - "noninteractive": ["yes", null] - } - } - } - } - }, - { - "type": "fieldset", - "questions": [ - { - "type": "fieldset", - "label": "Total for all ages (0-16)", - "questions": [], - "fieldset_info": { - "actions": ["sum"], - "targets": [ - "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-03-c-05-11-b", - "type": "integer", - "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-c", - "type": "integer", - "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-d", - "type": "integer", - "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-e", - "type": "integer", - "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } - } - ], - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["no"], - "noninteractive": ["no", null] - } - } - } - }, - "fieldset_type": "datagrid" - } - ], - "fieldset_info": { - "id": "2021-03-c-05-11" - }, - "fieldset_type": "marked" - }, - { - "type": "fieldset", - "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", - "questions": [ - { - "id": "2021-03-c-05-12-a", - "type": "integer", - "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true + "answer": { "entry": null, "readonly": true }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + } + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null, "readonly": true } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2021-03-c-05-11" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2021-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28264,37 +24094,25 @@ "id": "2021-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28312,9 +24130,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-12" - }, + "fieldset_info": { "id": "2021-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -28326,10 +24142,7 @@ "id": "2021-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28365,37 +24178,25 @@ "id": "2021-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28413,9 +24214,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-13" - }, + "fieldset_info": { "id": "2021-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -28426,10 +24225,7 @@ "id": "2021-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28465,37 +24261,25 @@ "id": "2021-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28513,9 +24297,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-14" - }, + "fieldset_info": { "id": "2021-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -28533,10 +24315,7 @@ "id": "2021-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28572,37 +24351,25 @@ "id": "2021-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28620,9 +24387,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-15" - }, + "fieldset_info": { "id": "2021-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -28633,10 +24398,7 @@ "id": "2021-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28672,37 +24434,25 @@ "id": "2021-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28720,9 +24470,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-16" - }, + "fieldset_info": { "id": "2021-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -28733,10 +24481,7 @@ "id": "2021-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28772,37 +24517,25 @@ "id": "2021-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28820,9 +24553,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-17" - }, + "fieldset_info": { "id": "2021-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -28834,10 +24565,7 @@ "id": "2021-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28873,37 +24601,25 @@ "id": "2021-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28921,9 +24637,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-18" - }, + "fieldset_info": { "id": "2021-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -28934,10 +24648,7 @@ "id": "2021-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28973,37 +24684,25 @@ "id": "2021-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29021,18 +24720,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-19" - }, + "fieldset_info": { "id": "2021-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -29074,14 +24769,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -29098,9 +24787,7 @@ "id": "2021-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29136,33 +24823,25 @@ "id": "2021-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2021-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2021-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2021-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -29180,9 +24859,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-03" - }, + "fieldset_info": { "id": "2021-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -29199,9 +24876,7 @@ "id": "2021-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29237,33 +24912,25 @@ "id": "2021-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2021-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2021-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2021-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -29281,9 +24948,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-04" - }, + "fieldset_info": { "id": "2021-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -29294,9 +24959,7 @@ "id": "2021-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29332,33 +24995,25 @@ "id": "2021-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -29376,9 +25031,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-05" - }, + "fieldset_info": { "id": "2021-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -29389,9 +25042,7 @@ "id": "2021-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29427,33 +25078,25 @@ "id": "2021-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -29471,9 +25114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-06" - }, + "fieldset_info": { "id": "2021-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -29485,9 +25126,7 @@ "id": "2021-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29523,33 +25162,25 @@ "id": "2021-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2021-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2021-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2021-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -29567,9 +25198,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-07" - }, + "fieldset_info": { "id": "2021-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -29580,9 +25209,7 @@ "id": "2021-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29618,33 +25245,25 @@ "id": "2021-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2021-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -29662,18 +25281,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-08" - }, + "fieldset_info": { "id": "2021-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -29690,10 +25305,7 @@ "id": "2021-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29729,37 +25341,25 @@ "id": "2021-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29777,9 +25377,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-10" - }, + "fieldset_info": { "id": "2021-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -29790,10 +25388,7 @@ "id": "2021-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29829,37 +25424,25 @@ "id": "2021-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29877,9 +25460,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-11" - }, + "fieldset_info": { "id": "2021-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -29890,10 +25471,7 @@ "id": "2021-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29929,37 +25507,25 @@ "id": "2021-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29977,9 +25543,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-12" - }, + "fieldset_info": { "id": "2021-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -29991,10 +25555,7 @@ "id": "2021-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30030,37 +25591,25 @@ "id": "2021-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30078,9 +25627,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-13" - }, + "fieldset_info": { "id": "2021-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -30091,10 +25638,7 @@ "id": "2021-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30130,37 +25674,25 @@ "id": "2021-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30178,9 +25710,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-14" - }, + "fieldset_info": { "id": "2021-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -30198,10 +25728,7 @@ "id": "2021-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30237,37 +25764,25 @@ "id": "2021-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30285,9 +25800,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-15" - }, + "fieldset_info": { "id": "2021-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -30298,10 +25811,7 @@ "id": "2021-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30337,37 +25847,25 @@ "id": "2021-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30385,9 +25883,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-16" - }, + "fieldset_info": { "id": "2021-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -30398,10 +25894,7 @@ "id": "2021-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30437,37 +25930,25 @@ "id": "2021-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30485,9 +25966,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-17" - }, + "fieldset_info": { "id": "2021-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -30499,10 +25978,7 @@ "id": "2021-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30538,37 +26014,25 @@ "id": "2021-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30586,9 +26050,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-18" - }, + "fieldset_info": { "id": "2021-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -30599,10 +26061,7 @@ "id": "2021-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30638,37 +26097,25 @@ "id": "2021-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30686,18 +26133,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-19" - }, + "fieldset_info": { "id": "2021-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -30720,14 +26163,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -30749,18 +26186,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -30800,9 +26231,7 @@ "id": "2021-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30841,9 +26270,7 @@ "id": "2021-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-d-01-05", @@ -30852,14 +26279,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30867,9 +26288,7 @@ "id": "2021-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30893,14 +26312,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30908,9 +26321,7 @@ "id": "2021-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30955,17 +26366,13 @@ "id": "2021-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31008,14 +26415,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -31055,14 +26456,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31071,9 +26466,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-04", @@ -31083,18 +26476,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31106,18 +26490,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31129,18 +26504,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31148,9 +26514,7 @@ "id": "2021-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31171,9 +26535,7 @@ "id": "2021-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -31182,25 +26544,19 @@ "id": "2021-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -31233,15 +26589,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -31301,41 +26651,31 @@ "id": "2021-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31372,14 +26712,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31390,14 +26724,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31408,14 +26736,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31434,18 +26756,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31453,9 +26766,7 @@ "id": "2021-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31476,17 +26787,13 @@ "id": "2021-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -31495,17 +26802,13 @@ "id": "2021-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31516,17 +26819,13 @@ "id": "2021-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2021-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31537,17 +26836,13 @@ "id": "2021-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31558,10 +26853,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -31576,14 +26868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31617,14 +26903,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31632,9 +26912,7 @@ "id": "2021-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31655,17 +26933,13 @@ "id": "2021-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2021-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31699,14 +26973,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31718,9 +26986,7 @@ "id": "2021-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31758,49 +27024,37 @@ "id": "2021-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2021-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2021-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2021-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2021-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2021-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -31818,9 +27072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-02" - }, + "fieldset_info": { "id": "2021-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -31831,9 +27083,7 @@ "id": "2021-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31871,49 +27121,37 @@ "id": "2021-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2021-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2021-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2021-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2021-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2021-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -31931,9 +27169,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-03" - }, + "fieldset_info": { "id": "2021-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -31950,9 +27186,7 @@ "id": "2021-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31990,49 +27224,37 @@ "id": "2021-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2021-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2021-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2021-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2021-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -32050,9 +27272,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-04" - }, + "fieldset_info": { "id": "2021-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -32069,9 +27289,7 @@ "id": "2021-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32109,49 +27327,37 @@ "id": "2021-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2021-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2021-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2021-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2021-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2021-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -32169,9 +27375,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-05" - }, + "fieldset_info": { "id": "2021-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -32184,9 +27388,7 @@ "id": "2021-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -32201,14 +27403,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32219,18 +27415,14 @@ "id": "2021-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -32264,9 +27456,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -32292,17 +27482,13 @@ "id": "2021-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32329,14 +27515,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32347,14 +27527,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -32386,9 +27560,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02", @@ -32401,18 +27573,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32424,17 +27590,13 @@ "id": "2021-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32469,18 +27631,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32492,9 +27645,7 @@ "id": "2021-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32521,18 +27672,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32540,9 +27685,7 @@ "id": "2021-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32571,14 +27714,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32590,9 +27727,7 @@ "id": "2021-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32615,9 +27750,7 @@ "id": "2021-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -32689,10 +27822,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -32700,9 +27830,7 @@ "id": "2021-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32740,14 +27868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -32781,14 +27903,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -32835,9 +27951,7 @@ "id": "2021-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32856,9 +27970,7 @@ "id": "2021-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32983,9 +28095,7 @@ "id": "2021-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33116,9 +28226,7 @@ "id": "2021-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33159,9 +28267,7 @@ "id": "2021-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -33182,9 +28288,7 @@ "id": "2021-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -33251,18 +28355,14 @@ "id": "2021-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33306,9 +28406,7 @@ "id": "2021-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33349,9 +28447,7 @@ "id": "2021-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -33372,9 +28468,7 @@ "id": "2021-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -33441,18 +28535,14 @@ "id": "2021-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33496,9 +28586,7 @@ "id": "2021-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33539,9 +28627,7 @@ "id": "2021-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -33562,9 +28648,7 @@ "id": "2021-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -33631,18 +28715,14 @@ "id": "2021-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -33660,9 +28740,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2021-04-a-01-01-02-02", @@ -33708,9 +28786,7 @@ "id": "2021-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33751,9 +28827,7 @@ "id": "2021-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -33774,9 +28848,7 @@ "id": "2021-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -33843,18 +28915,14 @@ "id": "2021-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33898,9 +28966,7 @@ "id": "2021-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33941,9 +29007,7 @@ "id": "2021-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -33964,9 +29028,7 @@ "id": "2021-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -34033,18 +29095,14 @@ "id": "2021-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34088,9 +29146,7 @@ "id": "2021-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34131,9 +29187,7 @@ "id": "2021-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -34154,9 +29208,7 @@ "id": "2021-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -34223,18 +29275,14 @@ "id": "2021-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34278,205 +29326,193 @@ "id": "2021-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-03", + "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { + "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": "53395" } + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", "answer": { - "entry": null + "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": "66741" } + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-04-a-01-01-02-02-04-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": ["2019-10-01", "2021-09-01"], + "labels": ["Start", "End"] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": "goal_survey_data", + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { + "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { + "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-11", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": "No." } + }, + { + "id": "2021-04-a-01-01-02-02-04-12", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + }, + { + "id": "2021-04-a-01-01-02-02-05", + "type": "repeatable", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", + "type": "text_multiline", + "label": "Briefly describe your goal for this objective.", + "answer": { + "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " + } + }, + { + "id": "2021-04-a-01-01-02-02-05-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": "goal_new", + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", - "values": { - "interactive": [ - null, - "goal_continuing", - "goal_new" - ], - "noninteractive": [ - "goal_continuing", - "goal_new" - ] - } - } - } - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the numerator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-03", - "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-04", - "type": "integer", - "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the denominator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-05", - "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-06", - "type": "integer", - "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } - } - ] - }, - { - "type": "fieldset", - "questions": [], - "fieldset_info": { - "actions": ["percentage"], - "targets": [ - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-04-a-01-01-02-02-04-07", - "type": "daterange", - "label": "What is the date range of your data?", - "answer": { - "entry": ["2019-10-01", "2021-09-01"], - "labels": ["Start", "End"] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-08", - "type": "radio", - "label": "Which data source did you use?", - "answer": { - "entry": "goal_survey_data", - "options": [ - { - "label": "Eligibility or enrollment data", - "value": "goal_enrollment_data" - }, - { - "label": "Survey data", - "value": "goal_survey_data" - }, - { - "label": "Another data source", - "value": "goal_other_data" - } - ] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-09", - "type": "text_multiline", - "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-10", - "type": "text_multiline", - "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-11", - "type": "text_multiline", - "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-12", - "hint": "Optional", - "type": "file_upload", - "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } - } - ] - }, - { - "id": "2021-04-a-01-01-02-02-05", - "type": "repeatable", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-01", - "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", - "type": "text_multiline", - "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " - } - }, - { - "id": "2021-04-a-01-01-02-02-05-02", - "type": "radio", - "label": "What type of goal is it?", - "answer": { - "entry": "goal_new", - "options": [ - { - "label": "New goal", - "value": "goal_new" - }, - { - "label": "Continuing goal", - "value": "goal_continuing" - }, - { - "label": "Discontinued goal", - "value": "goal_discontinued" - } - ], - "default_entry": "goal_new" - }, - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-02-a", - "type": "text_multiline", - "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", - "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", "values": { "interactive": [ null, @@ -34511,9 +29547,7 @@ "id": "2021-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -34534,9 +29568,7 @@ "id": "2021-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -34587,9 +29619,7 @@ "id": "2021-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2021-04-a-01-01-02-02-05-10", @@ -34603,18 +29633,14 @@ "id": "2021-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -34680,9 +29706,7 @@ "id": "2021-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34723,9 +29747,7 @@ "id": "2021-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -34746,9 +29768,7 @@ "id": "2021-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -34799,9 +29819,7 @@ "id": "2021-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2021-04-a-01-01-03-02-01-10", @@ -34815,18 +29833,14 @@ "id": "2021-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34870,9 +29884,7 @@ "id": "2021-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34913,9 +29925,7 @@ "id": "2021-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -34936,9 +29946,7 @@ "id": "2021-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -35005,18 +30013,14 @@ "id": "2021-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35060,9 +30064,7 @@ "id": "2021-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35103,9 +30105,7 @@ "id": "2021-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -35126,9 +30126,7 @@ "id": "2021-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -35195,18 +30193,14 @@ "id": "2021-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35223,9 +30217,7 @@ "id": "2021-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02", @@ -35239,9 +30231,7 @@ "id": "2021-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-02", @@ -35270,9 +30260,7 @@ "id": "2021-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35304,17 +30292,13 @@ "id": "2021-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35326,17 +30310,13 @@ "id": "2021-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35387,34 +30367,26 @@ "id": "2021-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35431,9 +30403,7 @@ "id": "2021-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02", @@ -35447,9 +30417,7 @@ "id": "2021-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-02", @@ -35478,9 +30446,7 @@ "id": "2021-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35512,17 +30478,13 @@ "id": "2021-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35534,17 +30496,13 @@ "id": "2021-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35595,34 +30553,26 @@ "id": "2021-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35639,9 +30589,7 @@ "id": "2021-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02", @@ -35655,9 +30603,7 @@ "id": "2021-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-02", @@ -35686,9 +30632,7 @@ "id": "2021-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35720,17 +30664,13 @@ "id": "2021-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35743,17 +30683,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35804,34 +30740,26 @@ "id": "2021-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35861,9 +30789,7 @@ "id": "2021-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-02-03", @@ -35878,9 +30804,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35935,34 +30859,26 @@ "id": "2021-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-01" - }, + "fieldset_info": { "id": "2021-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -35976,34 +30892,26 @@ "id": "2021-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2021-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-02" - }, + "fieldset_info": { "id": "2021-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -36017,34 +30925,26 @@ "id": "2021-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-03" - }, + "fieldset_info": { "id": "2021-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -36058,34 +30958,26 @@ "id": "2021-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2021-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-04" - }, + "fieldset_info": { "id": "2021-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -36096,9 +30988,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -36119,9 +31009,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -36142,9 +31030,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -36188,9 +31074,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -36221,18 +31105,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36257,34 +31133,26 @@ "id": "2021-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2021-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-01" - }, + "fieldset_info": { "id": "2021-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -36298,34 +31166,26 @@ "id": "2021-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2021-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-02" - }, + "fieldset_info": { "id": "2021-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -36339,34 +31199,26 @@ "id": "2021-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-03" - }, + "fieldset_info": { "id": "2021-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -36380,34 +31232,26 @@ "id": "2021-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-04" - }, + "fieldset_info": { "id": "2021-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -36421,34 +31265,26 @@ "id": "2021-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2021-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-05" - }, + "fieldset_info": { "id": "2021-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -36462,34 +31298,26 @@ "id": "2021-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2021-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-06" - }, + "fieldset_info": { "id": "2021-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -36503,34 +31331,26 @@ "id": "2021-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2021-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-07" - }, + "fieldset_info": { "id": "2021-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -36541,9 +31361,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -36564,9 +31382,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -36587,9 +31403,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -36610,9 +31424,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -36633,9 +31445,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -36656,9 +31466,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -36679,9 +31487,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -36702,9 +31508,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -36743,9 +31547,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -36782,18 +31584,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36806,9 +31600,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -36865,48 +31657,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -36925,9 +31699,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -36946,9 +31718,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -36965,9 +31735,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -36983,9 +31751,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -37015,9 +31781,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -37047,9 +31811,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -37067,18 +31829,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37119,10 +31873,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -37130,9 +31881,7 @@ "id": "2021-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37156,14 +31905,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37171,9 +31914,7 @@ "id": "2021-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37209,34 +31950,26 @@ "id": "2021-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-01" - }, + "fieldset_info": { "id": "2021-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -37251,34 +31984,26 @@ "id": "2021-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2021-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-02" - }, + "fieldset_info": { "id": "2021-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -37287,9 +32012,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37310,9 +32033,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37334,18 +32055,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37369,34 +32082,26 @@ "id": "2021-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2021-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-01" - }, + "fieldset_info": { "id": "2021-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -37411,34 +32116,26 @@ "id": "2021-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2021-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-02" - }, + "fieldset_info": { "id": "2021-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -37447,9 +32144,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37470,9 +32165,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37494,18 +32187,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37528,9 +32213,7 @@ "id": "2021-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37607,9 +32290,7 @@ "id": "2021-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37696,25 +32377,19 @@ "id": "2020-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2020-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2020-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-00-a-01-07", @@ -37729,9 +32404,7 @@ "id": "2020-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -37780,14 +32453,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37795,9 +32462,7 @@ "id": "2020-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37821,14 +32486,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37842,14 +32501,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -37886,9 +32539,7 @@ "id": "2020-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37928,14 +32579,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37973,9 +32618,7 @@ "id": "2020-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37996,9 +32639,7 @@ "id": "2020-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2020-01-a-01-05", @@ -38008,18 +32649,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38027,9 +32662,7 @@ "id": "2020-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38052,14 +32685,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38067,9 +32694,7 @@ "id": "2020-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38093,14 +32718,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38114,14 +32733,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -38163,9 +32776,7 @@ "id": "2020-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38205,14 +32816,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38255,9 +32860,7 @@ "id": "2020-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38290,18 +32893,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38309,9 +32906,7 @@ "id": "2020-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38332,18 +32927,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38357,18 +32943,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38383,18 +32960,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38409,18 +32977,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38434,18 +32993,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38460,23 +33010,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-03-07", @@ -38486,23 +33025,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-03-08", @@ -38512,23 +33040,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-03-09", @@ -38538,18 +33055,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38563,18 +33071,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38589,18 +33088,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38615,23 +33105,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-03-13", @@ -38640,18 +33119,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38665,18 +33135,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38690,18 +33151,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38715,23 +33167,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -38751,18 +33192,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -38821,18 +33253,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38846,18 +33269,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38872,18 +33286,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38898,18 +33303,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38923,18 +33319,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38949,23 +33336,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-04-07", @@ -38975,23 +33351,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-04-08", @@ -39001,23 +33366,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-04-09", @@ -39027,23 +33381,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2020-01-a-04-10", @@ -39052,18 +33395,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39077,18 +33411,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39103,18 +33428,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39129,23 +33445,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-04-14", @@ -39154,18 +33459,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39180,18 +33476,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39206,18 +33493,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39231,18 +33509,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39256,18 +33525,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39281,23 +33541,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -39317,14 +33566,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -39452,9 +33695,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -39481,9 +33722,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -39510,9 +33749,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -39539,9 +33776,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -39568,9 +33803,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -39598,21 +33831,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -39633,9 +33858,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -39655,14 +33878,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39670,9 +33887,7 @@ "id": "2020-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39696,14 +33911,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39714,9 +33923,7 @@ "id": "2020-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-b", @@ -39731,49 +33938,37 @@ "id": "2020-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -39796,17 +33991,13 @@ "id": "2020-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39846,14 +34037,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39888,14 +34073,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39903,9 +34082,7 @@ "id": "2020-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39935,17 +34112,13 @@ "id": "2020-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39968,18 +34141,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -39987,9 +34151,7 @@ "id": "2020-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40013,18 +34175,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40032,9 +34185,7 @@ "id": "2020-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40055,9 +34206,7 @@ "id": "2020-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -40069,18 +34218,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40091,9 +34231,7 @@ "id": "2020-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40114,9 +34252,7 @@ "id": "2020-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40135,9 +34271,7 @@ "id": "2020-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40156,9 +34290,7 @@ "id": "2020-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40188,17 +34320,13 @@ "id": "2020-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2020-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -40223,18 +34351,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40245,17 +34364,13 @@ "id": "2020-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40281,14 +34396,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -40299,14 +34408,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -40317,9 +34420,7 @@ "id": "2020-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-01-03-b", @@ -40374,9 +34475,7 @@ "id": "2020-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -40390,35 +34489,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2020-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2020-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2020-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -40426,9 +34517,7 @@ "id": "2020-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-03-c-02-05", @@ -40446,9 +34535,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-01')].answer.entry" @@ -40463,9 +34550,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-02')].answer.entry" @@ -40480,9 +34565,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-03')].answer.entry" @@ -40497,9 +34580,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-04')].answer.entry" @@ -40515,15 +34596,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40540,34 +34615,26 @@ "id": "2020-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2020-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2020-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2020-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40588,26 +34655,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2020-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2020-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -40615,9 +34676,7 @@ "id": "2020-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40679,15 +34738,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40769,15 +34822,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40794,34 +34841,26 @@ "id": "2020-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2020-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2020-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2020-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40842,26 +34881,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2020-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2020-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -40869,9 +34902,7 @@ "id": "2020-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40933,15 +34964,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41023,15 +35048,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41076,14 +35095,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -41100,9 +35113,7 @@ "id": "2020-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41138,33 +35149,25 @@ "id": "2020-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2020-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2020-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2020-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -41182,9 +35185,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-03" - }, + "fieldset_info": { "id": "2020-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -41201,9 +35202,7 @@ "id": "2020-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41239,33 +35238,25 @@ "id": "2020-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2020-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2020-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2020-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -41283,9 +35274,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-04" - }, + "fieldset_info": { "id": "2020-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -41296,9 +35285,7 @@ "id": "2020-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41334,33 +35321,25 @@ "id": "2020-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41378,9 +35357,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-05" - }, + "fieldset_info": { "id": "2020-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -41391,9 +35368,7 @@ "id": "2020-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41429,33 +35404,25 @@ "id": "2020-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41473,9 +35440,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-06" - }, + "fieldset_info": { "id": "2020-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -41487,9 +35452,7 @@ "id": "2020-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41525,33 +35488,25 @@ "id": "2020-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2020-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2020-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2020-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -41569,9 +35524,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-07" - }, + "fieldset_info": { "id": "2020-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -41582,9 +35535,7 @@ "id": "2020-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41620,33 +35571,25 @@ "id": "2020-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2020-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -41664,18 +35607,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-08" - }, + "fieldset_info": { "id": "2020-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -41692,10 +35631,7 @@ "id": "2020-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41731,37 +35667,25 @@ "id": "2020-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41779,9 +35703,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-10" - }, + "fieldset_info": { "id": "2020-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -41792,10 +35714,7 @@ "id": "2020-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41831,37 +35750,25 @@ "id": "2020-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41879,9 +35786,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-11" - }, + "fieldset_info": { "id": "2020-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -41892,10 +35797,7 @@ "id": "2020-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41931,37 +35833,25 @@ "id": "2020-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41979,9 +35869,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-12" - }, + "fieldset_info": { "id": "2020-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -41993,10 +35881,7 @@ "id": "2020-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42032,37 +35917,25 @@ "id": "2020-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42080,9 +35953,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-13" - }, + "fieldset_info": { "id": "2020-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -42093,10 +35964,7 @@ "id": "2020-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42132,37 +36000,25 @@ "id": "2020-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42180,9 +36036,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-14" - }, + "fieldset_info": { "id": "2020-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -42200,10 +36054,7 @@ "id": "2020-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42239,37 +36090,25 @@ "id": "2020-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42287,9 +36126,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-15" - }, + "fieldset_info": { "id": "2020-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -42300,10 +36137,7 @@ "id": "2020-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42339,37 +36173,25 @@ "id": "2020-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42387,9 +36209,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-16" - }, + "fieldset_info": { "id": "2020-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -42400,10 +36220,7 @@ "id": "2020-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42439,37 +36256,25 @@ "id": "2020-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42487,9 +36292,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-17" - }, + "fieldset_info": { "id": "2020-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -42501,10 +36304,7 @@ "id": "2020-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42540,37 +36340,25 @@ "id": "2020-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42588,9 +36376,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-18" - }, + "fieldset_info": { "id": "2020-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -42601,10 +36387,7 @@ "id": "2020-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42640,37 +36423,25 @@ "id": "2020-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42688,18 +36459,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-19" - }, + "fieldset_info": { "id": "2020-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -42741,14 +36508,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -42765,9 +36526,7 @@ "id": "2020-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42803,33 +36562,25 @@ "id": "2020-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2020-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2020-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2020-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -42847,9 +36598,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-03" - }, + "fieldset_info": { "id": "2020-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -42866,9 +36615,7 @@ "id": "2020-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42904,33 +36651,25 @@ "id": "2020-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2020-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2020-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2020-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -42948,9 +36687,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-04" - }, + "fieldset_info": { "id": "2020-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -42961,9 +36698,7 @@ "id": "2020-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42999,33 +36734,25 @@ "id": "2020-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -43043,9 +36770,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-05" - }, + "fieldset_info": { "id": "2020-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -43056,9 +36781,7 @@ "id": "2020-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43094,33 +36817,25 @@ "id": "2020-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -43138,9 +36853,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-06" - }, + "fieldset_info": { "id": "2020-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -43152,9 +36865,7 @@ "id": "2020-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43190,33 +36901,25 @@ "id": "2020-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2020-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2020-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2020-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -43234,9 +36937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-07" - }, + "fieldset_info": { "id": "2020-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -43247,9 +36948,7 @@ "id": "2020-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43285,33 +36984,25 @@ "id": "2020-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2020-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -43329,18 +37020,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-08" - }, + "fieldset_info": { "id": "2020-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -43357,10 +37044,7 @@ "id": "2020-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43396,37 +37080,25 @@ "id": "2020-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43444,9 +37116,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-10" - }, + "fieldset_info": { "id": "2020-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -43457,10 +37127,7 @@ "id": "2020-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43496,37 +37163,25 @@ "id": "2020-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43544,9 +37199,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-11" - }, + "fieldset_info": { "id": "2020-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -43557,10 +37210,7 @@ "id": "2020-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43596,37 +37246,25 @@ "id": "2020-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43644,9 +37282,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-12" - }, + "fieldset_info": { "id": "2020-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -43658,10 +37294,7 @@ "id": "2020-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43697,37 +37330,25 @@ "id": "2020-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43745,9 +37366,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-13" - }, + "fieldset_info": { "id": "2020-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -43758,10 +37377,7 @@ "id": "2020-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43797,37 +37413,25 @@ "id": "2020-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43845,9 +37449,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-14" - }, + "fieldset_info": { "id": "2020-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -43865,10 +37467,7 @@ "id": "2020-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43904,37 +37503,25 @@ "id": "2020-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43952,9 +37539,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-15" - }, + "fieldset_info": { "id": "2020-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -43965,10 +37550,7 @@ "id": "2020-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44004,37 +37586,25 @@ "id": "2020-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44052,9 +37622,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-16" - }, + "fieldset_info": { "id": "2020-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -44065,10 +37633,7 @@ "id": "2020-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44104,37 +37669,25 @@ "id": "2020-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44152,9 +37705,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-17" - }, + "fieldset_info": { "id": "2020-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -44166,10 +37717,7 @@ "id": "2020-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44205,37 +37753,25 @@ "id": "2020-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44253,9 +37789,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-18" - }, + "fieldset_info": { "id": "2020-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -44266,10 +37800,7 @@ "id": "2020-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44305,37 +37836,25 @@ "id": "2020-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44353,18 +37872,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-19" - }, + "fieldset_info": { "id": "2020-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -44387,14 +37902,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44416,18 +37925,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -44467,9 +37970,7 @@ "id": "2020-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44508,9 +38009,7 @@ "id": "2020-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-d-01-05", @@ -44519,14 +38018,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44534,9 +38027,7 @@ "id": "2020-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44560,14 +38051,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44575,9 +38060,7 @@ "id": "2020-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44622,17 +38105,13 @@ "id": "2020-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -44675,14 +38154,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -44722,14 +38195,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44738,9 +38205,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-04", @@ -44750,18 +38215,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44773,18 +38229,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44796,18 +38243,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -44815,9 +38253,7 @@ "id": "2020-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44838,9 +38274,7 @@ "id": "2020-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -44849,25 +38283,19 @@ "id": "2020-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -44900,15 +38328,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -44968,41 +38390,31 @@ "id": "2020-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45039,14 +38451,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45057,14 +38463,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45075,14 +38475,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45101,18 +38495,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -45120,9 +38505,7 @@ "id": "2020-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45143,17 +38526,13 @@ "id": "2020-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -45162,17 +38541,13 @@ "id": "2020-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45183,17 +38558,13 @@ "id": "2020-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2020-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45204,17 +38575,13 @@ "id": "2020-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45225,10 +38592,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -45243,14 +38607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45284,14 +38642,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45299,9 +38651,7 @@ "id": "2020-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45322,17 +38672,13 @@ "id": "2020-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2020-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45366,14 +38712,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45385,9 +38725,7 @@ "id": "2020-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45425,49 +38763,37 @@ "id": "2020-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2020-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2020-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2020-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2020-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2020-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -45485,9 +38811,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-02" - }, + "fieldset_info": { "id": "2020-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -45498,9 +38822,7 @@ "id": "2020-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45538,49 +38860,37 @@ "id": "2020-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2020-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2020-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2020-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2020-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2020-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -45598,9 +38908,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-03" - }, + "fieldset_info": { "id": "2020-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -45617,9 +38925,7 @@ "id": "2020-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45657,49 +38963,37 @@ "id": "2020-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2020-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2020-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2020-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2020-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -45717,9 +39011,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-04" - }, + "fieldset_info": { "id": "2020-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -45736,9 +39028,7 @@ "id": "2020-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45776,49 +39066,37 @@ "id": "2020-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2020-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2020-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2020-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2020-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2020-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -45836,9 +39114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-05" - }, + "fieldset_info": { "id": "2020-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -45851,9 +39127,7 @@ "id": "2020-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -45868,14 +39142,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45886,18 +39154,14 @@ "id": "2020-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -45931,9 +39195,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -45959,17 +39221,13 @@ "id": "2020-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45996,14 +39254,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -46014,14 +39266,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -46053,9 +39299,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02", @@ -46068,18 +39312,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46091,17 +39329,13 @@ "id": "2020-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46136,18 +39370,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46159,9 +39384,7 @@ "id": "2020-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46188,18 +39411,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46207,9 +39424,7 @@ "id": "2020-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46238,14 +39453,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46257,9 +39466,7 @@ "id": "2020-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46282,9 +39489,7 @@ "id": "2020-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -46356,10 +39561,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -46367,9 +39569,7 @@ "id": "2020-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46407,14 +39607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -46448,14 +39642,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -46502,9 +39690,7 @@ "id": "2020-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46523,9 +39709,7 @@ "id": "2020-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46650,9 +39834,7 @@ "id": "2020-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46783,9 +39965,7 @@ "id": "2020-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46826,9 +40006,7 @@ "id": "2020-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -46849,9 +40027,7 @@ "id": "2020-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -46918,18 +40094,14 @@ "id": "2020-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -46973,9 +40145,7 @@ "id": "2020-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47016,9 +40186,7 @@ "id": "2020-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -47039,9 +40207,7 @@ "id": "2020-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -47108,18 +40274,14 @@ "id": "2020-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47163,9 +40325,7 @@ "id": "2020-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47206,9 +40366,7 @@ "id": "2020-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -47229,9 +40387,7 @@ "id": "2020-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -47298,18 +40454,14 @@ "id": "2020-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -47327,9 +40479,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2020-04-a-01-01-02-02", @@ -47375,9 +40525,7 @@ "id": "2020-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47418,9 +40566,7 @@ "id": "2020-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -47441,9 +40587,7 @@ "id": "2020-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -47510,18 +40654,14 @@ "id": "2020-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47565,9 +40705,7 @@ "id": "2020-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47608,9 +40746,7 @@ "id": "2020-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -47631,9 +40767,7 @@ "id": "2020-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -47700,18 +40834,14 @@ "id": "2020-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47755,9 +40885,7 @@ "id": "2020-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47798,9 +40926,7 @@ "id": "2020-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -47821,9 +40947,7 @@ "id": "2020-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -47890,18 +41014,14 @@ "id": "2020-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47945,9 +41065,7 @@ "id": "2020-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47988,9 +41106,7 @@ "id": "2020-04-a-01-01-02-02-04-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } + "answer": { "entry": "53395" } } ] }, @@ -48011,9 +41127,7 @@ "id": "2020-04-a-01-01-02-02-04-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } + "answer": { "entry": "66741" } } ] }, @@ -48080,18 +41194,14 @@ "id": "2020-04-a-01-01-02-02-04-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-04-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48135,9 +41245,7 @@ "id": "2020-04-a-01-01-02-02-05-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48178,9 +41286,7 @@ "id": "2020-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -48201,9 +41307,7 @@ "id": "2020-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -48254,9 +41358,7 @@ "id": "2020-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2020-04-a-01-01-02-02-05-10", @@ -48270,18 +41372,14 @@ "id": "2020-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48347,9 +41445,7 @@ "id": "2020-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48390,9 +41486,7 @@ "id": "2020-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -48413,9 +41507,7 @@ "id": "2020-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -48466,9 +41558,7 @@ "id": "2020-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2020-04-a-01-01-03-02-01-10", @@ -48482,18 +41572,14 @@ "id": "2020-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48537,9 +41623,7 @@ "id": "2020-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48580,9 +41664,7 @@ "id": "2020-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -48603,9 +41685,7 @@ "id": "2020-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -48672,18 +41752,14 @@ "id": "2020-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48727,9 +41803,7 @@ "id": "2020-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48770,9 +41844,7 @@ "id": "2020-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -48793,9 +41865,7 @@ "id": "2020-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -48862,18 +41932,14 @@ "id": "2020-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48890,9 +41956,7 @@ "id": "2020-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02", @@ -48906,9 +41970,7 @@ "id": "2020-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-02", @@ -48937,9 +41999,7 @@ "id": "2020-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48971,17 +42031,13 @@ "id": "2020-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48993,17 +42049,13 @@ "id": "2020-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49054,34 +42106,26 @@ "id": "2020-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49098,9 +42142,7 @@ "id": "2020-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02", @@ -49114,9 +42156,7 @@ "id": "2020-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-02", @@ -49145,9 +42185,7 @@ "id": "2020-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49179,17 +42217,13 @@ "id": "2020-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49201,17 +42235,13 @@ "id": "2020-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49262,34 +42292,26 @@ "id": "2020-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49306,9 +42328,7 @@ "id": "2020-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02", @@ -49322,9 +42342,7 @@ "id": "2020-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-02", @@ -49353,9 +42371,7 @@ "id": "2020-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49387,17 +42403,13 @@ "id": "2020-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49410,17 +42422,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49471,34 +42479,26 @@ "id": "2020-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49528,9 +42528,7 @@ "id": "2020-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-02-03", @@ -49545,9 +42543,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49602,34 +42598,26 @@ "id": "2020-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-01" - }, + "fieldset_info": { "id": "2020-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -49643,34 +42631,26 @@ "id": "2020-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2020-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-02" - }, + "fieldset_info": { "id": "2020-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -49684,34 +42664,26 @@ "id": "2020-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-03" - }, + "fieldset_info": { "id": "2020-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -49725,34 +42697,26 @@ "id": "2020-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2020-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-04" - }, + "fieldset_info": { "id": "2020-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -49763,9 +42727,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -49786,9 +42748,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -49809,9 +42769,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -49855,9 +42813,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -49888,18 +42844,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -49924,34 +42872,26 @@ "id": "2020-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2020-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-01" - }, + "fieldset_info": { "id": "2020-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -49965,34 +42905,26 @@ "id": "2020-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2020-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-02" - }, + "fieldset_info": { "id": "2020-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -50006,34 +42938,26 @@ "id": "2020-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-03" - }, + "fieldset_info": { "id": "2020-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -50047,34 +42971,26 @@ "id": "2020-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-04" - }, + "fieldset_info": { "id": "2020-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -50088,34 +43004,26 @@ "id": "2020-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2020-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-05" - }, + "fieldset_info": { "id": "2020-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -50129,34 +43037,26 @@ "id": "2020-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2020-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-06" - }, + "fieldset_info": { "id": "2020-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -50170,34 +43070,26 @@ "id": "2020-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2020-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-07" - }, + "fieldset_info": { "id": "2020-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -50208,9 +43100,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -50231,9 +43121,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -50254,9 +43142,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -50277,9 +43163,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -50300,9 +43184,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -50323,9 +43205,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -50346,9 +43226,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -50369,9 +43247,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -50410,9 +43286,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -50449,18 +43323,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50473,9 +43339,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -50532,48 +43396,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50592,9 +43438,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50613,9 +43457,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50632,9 +43474,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -50650,9 +43490,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50682,9 +43520,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50714,9 +43550,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50734,18 +43568,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50786,10 +43612,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -50797,9 +43620,7 @@ "id": "2020-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50823,14 +43644,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -50838,9 +43653,7 @@ "id": "2020-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50876,34 +43689,26 @@ "id": "2020-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-01" - }, + "fieldset_info": { "id": "2020-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -50918,34 +43723,26 @@ "id": "2020-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2020-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-02" - }, + "fieldset_info": { "id": "2020-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -50954,9 +43751,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -50977,9 +43772,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51001,18 +43794,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51036,34 +43821,26 @@ "id": "2020-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2020-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-01" - }, + "fieldset_info": { "id": "2020-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -51078,34 +43855,26 @@ "id": "2020-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2020-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-02" - }, + "fieldset_info": { "id": "2020-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -51114,9 +43883,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -51137,9 +43904,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51161,18 +43926,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51195,9 +43952,7 @@ "id": "2020-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -51274,9 +44029,7 @@ "id": "2020-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 2054cc157..99a40a1ab 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -4,7 +4,7 @@ import PropTypes from "prop-types"; import Question from "./Question"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question }) => { +const DataGrid = ({ question, printView }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); const lastYearFormData = useSelector((state) => state.lastYearFormData); @@ -139,6 +139,7 @@ const DataGrid = ({ question }) => { hideNumber={question.type !== "fieldset"} question={question.question} prevYear={question.prevYear} + printView={printView} /> ); @@ -149,6 +150,7 @@ const DataGrid = ({ question }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, + printView: PropTypes.bool, }; export default DataGrid; diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index fb59e1fbd..14d2c9c68 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -47,7 +47,7 @@ const getPrevYearValue = (question, lastYearFormData) => { return prevYearValue; }; -const Integer = ({ onChange, question, prevYear, ...props }) => { +const Integer = ({ onChange, question, prevYear, printView, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); const lastYearFormData = useSelector((state) => state.lastYearFormData); @@ -67,11 +67,23 @@ const Integer = ({ onChange, question, prevYear, ...props }) => { } }; + const isLessThanElevenMask = (value) => { + return ( + printView && + question.mask === "lessThanEleven" && + value <= 10 && + value > 0 + ); + }; + const renderAnswer = () => { if (answer === null) { - return getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; + const value = + getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; + if (isLessThanElevenMask(value)) return "<11"; + return value; } else { - // may attempt to rerender string on page load, so both answer || isInteger + if (isLessThanElevenMask(answer)) return "<11"; return answer || Number.isInteger(answer) ? answer : ""; } }; @@ -93,6 +105,7 @@ Integer.propTypes = { onChange: PropTypes.func.isRequired, question: PropTypes.object.isRequired, prevYear: PropTypes.object, + printView: PropTypes.bool, }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index f120eaf80..54f8672ab 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -47,6 +47,7 @@ const buildInteger = (intProps) => { ); }; + describe("", () => { it("should render correctly", () => { const props = { question: { id: "2023-00-a-01-01", answer: 1 } }; @@ -62,7 +63,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -78,7 +79,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -94,7 +95,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: "hope" }, }, }; @@ -107,6 +108,52 @@ describe("", () => { expect(screen.getByRole("alert")).toBeInTheDocument(); }); + it("should show <11 if passed >0 and <=10 with printView and lessThanEleven", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "5" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("<11")).toBeInTheDocument(); + expect(screen.queryByDisplayValue("5")).not.toBeInTheDocument(); + }); + + it("should show original answer if passed >=11 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "12" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("12")).toBeInTheDocument(); + }); + + it("should show original answer if passed 0 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "0" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("0")).toBeInTheDocument(); + }); + it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { const props = { question: { diff --git a/services/ui-src/src/components/fields/Objective.jsx b/services/ui-src/src/components/fields/Objective.jsx index a7470e65e..abf0796e7 100644 --- a/services/ui-src/src/components/fields/Objective.jsx +++ b/services/ui-src/src/components/fields/Objective.jsx @@ -4,14 +4,13 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Objective = ({ headerRef, objective, objectiveNumber }) => { +const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { const first = objective.questions[0].answer.readonly === true; const name = first ? objective.questions[0].answer.default_entry : objective.questions[0].answer.entry; const children = first ? objective.questions.slice(1) : objective.questions; - return ( <>
@@ -27,7 +26,7 @@ const Objective = ({ headerRef, objective, objectiveNumber }) => { {children.map((q) => (
- +
))}
@@ -38,6 +37,7 @@ Objective.propTypes = { headerRef: PropTypes.func.isRequired, objective: PropTypes.object.isRequired, objectiveNumber: PropTypes.number.isRequired, + printView: PropTypes.bool, }; export { Objective }; diff --git a/services/ui-src/src/components/fields/Objectives.jsx b/services/ui-src/src/components/fields/Objectives.jsx index 4953ed21f..f80167133 100644 --- a/services/ui-src/src/components/fields/Objectives.jsx +++ b/services/ui-src/src/components/fields/Objectives.jsx @@ -16,9 +16,9 @@ const Objectives = ({ disabled, question, removeObjectiveFrom, + printView, }) => { const ref = useRef(); - const add = () => { addObjectiveTo(question.id); @@ -47,7 +47,12 @@ const Objectives = ({ > {question.questions.map((q, i) => ( - + ))} @@ -92,6 +97,7 @@ Objectives.propTypes = { disabled: PropTypes.bool.isRequired, question: PropTypes.object.isRequired, removeObjectiveFrom: PropTypes.func.isRequired, + printView: PropTypes.bool, }; const mapDispatchToProps = { diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index db62d228a..88716bebc 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -57,7 +57,14 @@ Container.propTypes = { children: PropTypes.node.isRequired, }; -const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { +const Question = ({ + hideNumber, + question, + prevYear, + tableTitle, + printView, + ...props +}) => { let Component = Text; if (questionTypes.has(question.type)) { Component = questionTypes.get(question.type); @@ -144,6 +151,7 @@ const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { false } prevYear={prevYear} + printView={printView} /> {/* If there are subquestions, wrap them so they are indented with the @@ -153,7 +161,12 @@ const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { {shouldRenderChildren && (
{question.questions.map((q) => ( - + ))}
)} @@ -167,6 +180,7 @@ Question.propTypes = { question: PropTypes.object.isRequired, prevYear: PropTypes.object, tableTitle: PropTypes.string, + printView: PropTypes.bool, }; Question.defaultProps = { hideNumber: false, diff --git a/services/ui-src/src/components/fields/Repeatable.jsx b/services/ui-src/src/components/fields/Repeatable.jsx index f32413bf4..644f34a36 100644 --- a/services/ui-src/src/components/fields/Repeatable.jsx +++ b/services/ui-src/src/components/fields/Repeatable.jsx @@ -4,7 +4,7 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Repeatable = ({ headerRef, number, question, type }) => { +const Repeatable = ({ headerRef, number, question, type, printView }) => { const children = question.questions ? question.questions : []; const title = type ? `${type} ${number}` : `${number}`; @@ -20,7 +20,7 @@ const Repeatable = ({ headerRef, number, question, type }) => {
{children.map((q) => ( - + ))} @@ -31,6 +31,7 @@ Repeatable.propTypes = { number: PropTypes.number.isRequired, question: PropTypes.object.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatable.defaultProps = { diff --git a/services/ui-src/src/components/fields/Repeatables.jsx b/services/ui-src/src/components/fields/Repeatables.jsx index 14a13a72e..dc66bf27b 100644 --- a/services/ui-src/src/components/fields/Repeatables.jsx +++ b/services/ui-src/src/components/fields/Repeatables.jsx @@ -17,6 +17,7 @@ const Repeatables = ({ question, removeRepeatableFrom, type, + printView, }) => { const ref = useRef(); @@ -62,6 +63,7 @@ const Repeatables = ({ number={i + 1} question={q} type={question.typeLabel ? question.typeLabel : type} + printView={printView} /> ))} @@ -107,6 +109,7 @@ Repeatables.propTypes = { question: PropTypes.object.isRequired, removeRepeatableFrom: PropTypes.func.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatables.defaultProps = { type: null, diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index 0e5a8b9a5..d2d5e8022 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -9,7 +9,7 @@ import { selectFragment } from "../../store/formData"; import { selectQuestionsForPart } from "../../store/selectors"; import { shouldDisplay } from "../../util/shouldDisplay"; -const Part = ({ partId, partNumber, nestedSubsectionTitle }) => { +const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { const [, section] = partId.split("-"); const [ @@ -67,6 +67,7 @@ const Part = ({ partId, partNumber, nestedSubsectionTitle }) => { question={question} tableTitle={title} data-testid="part-question" + printView={printView} /> ))} diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index 88800ac85..b204e1b25 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -8,7 +8,7 @@ import FormNavigation from "./FormNavigation"; import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; -const Section = ({ subsectionId, sectionId }) => { +const Section = ({ subsectionId, sectionId, printView }) => { const formData = useSelector((state) => state.formData); const title = selectSectionTitle(formData, sectionId); @@ -17,7 +17,11 @@ const Section = ({ subsectionId, sectionId }) => {

{title}

- +
@@ -30,6 +34,7 @@ const Section = ({ subsectionId, sectionId }) => { Section.propTypes = { subsectionId: PropTypes.string.isRequired, sectionId: PropTypes.number.isRequired, + printView: PropTypes.bool, }; export default Section; diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 67433a5b5..6417beca6 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -8,7 +8,7 @@ import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; //types import PropTypes from "prop-types"; -const Subsection = ({ subsectionId }) => { +const Subsection = ({ subsectionId, printView }) => { const formData = useSelector((state) => state.formData); const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); @@ -31,6 +31,7 @@ const Subsection = ({ subsectionId }) => { partId={partId} partNumber={partIds.length > 1 ? index + 1 : null} nestedSubsectionTitle={!!title} + printView={printView} /> ))}
@@ -38,6 +39,7 @@ const Subsection = ({ subsectionId }) => { }; Subsection.propTypes = { subsectionId: PropTypes.string.isRequired, + printView: PropTypes.bool, }; Subsection.defaultProps = { text: null, diff --git a/services/ui-src/src/components/sections/Print.jsx b/services/ui-src/src/components/sections/Print.jsx index e313f5f9b..f7bc26f35 100644 --- a/services/ui-src/src/components/sections/Print.jsx +++ b/services/ui-src/src/components/sections/Print.jsx @@ -140,6 +140,7 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } else { @@ -164,6 +165,7 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } From 08055777dd2d432347480cc122d1004eed68fb75 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:48:58 -0400 Subject: [PATCH 07/24] BUGFIG: Remove parseInt() for previous year value to allow non-numbers to display as empty (#139767) --- services/ui-src/src/components/fields/Integer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index 14d2c9c68..2841c2a3d 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -41,7 +41,7 @@ const getPrevYearValue = (question, lastYearFormData) => { // The first will always be correct if (matchingQuestion[0]) { - prevYearValue = parseInt(matchingQuestion[0].questions[0].answer?.entry); + prevYearValue = matchingQuestion[0].questions[0].answer?.entry; } } return prevYearValue; From 80c6ccd87e01c89d88dbb53f2ce57142fe847ec5 Mon Sep 17 00:00:00 2001 From: Nick Summers Date: Thu, 19 Sep 2024 09:44:06 -0400 Subject: [PATCH 08/24] Bugfix: Section 3c Part 5 Question 2 (#139768) Co-authored-by: Garrett Rabian --- services/ui-src/src/components/fields/Integer.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index 2841c2a3d..ecd344142 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -31,16 +31,16 @@ const getPrevYearValue = (question, lastYearFormData) => { // Get questions from last years JSON const questions = - lastYearFormData[3].contents.section.subsections[2].parts[partIndex] + lastYearFormData?.[3]?.contents.section.subsections[2].parts[partIndex] .questions; // Filter down to this question - const matchingQuestion = questions.filter( + const matchingQuestion = questions?.filter( (question) => fieldsetId === question?.fieldset_info?.id ); // The first will always be correct - if (matchingQuestion[0]) { + if (matchingQuestion?.[0]) { prevYearValue = matchingQuestion[0].questions[0].answer?.entry; } } From ff74b23426383eae108597510c9b28334d7ea569 Mon Sep 17 00:00:00 2001 From: Britt Date: Thu, 19 Sep 2024 11:18:48 -0600 Subject: [PATCH 09/24] fix admin print section bug (#139766) --- .../src/components/layout/FormActions.jsx | 25 +++++-- .../components/layout/FormActions.test.jsx | 70 +++++++++++++++---- 2 files changed, 75 insertions(+), 20 deletions(-) diff --git a/services/ui-src/src/components/layout/FormActions.jsx b/services/ui-src/src/components/layout/FormActions.jsx index 8013054bd..f63403fd0 100644 --- a/services/ui-src/src/components/layout/FormActions.jsx +++ b/services/ui-src/src/components/layout/FormActions.jsx @@ -23,14 +23,27 @@ const FormActions = () => { const printDialogeRef = useRef(null); // Get section IDs and subsection IDs for printing single section - let searchParams = document.location.pathname - .toString() - .replace("/sections/", "") - .replace(formYear + "/", ""); + let searchParams = ""; + let sectionId = ""; - const sectionId = formYear + "-" + searchParams.substring(0, 2); - let subsectionId = sectionId + "-"; + if (currentUser.role === AppRoles.CMS_ADMIN) { + const stateId = window.location.href.split("/")[5]; + searchParams = document.location.pathname + .toString() + .replace(`views/sections/${stateId}/`, "") + .replace(formYear + "/", ""); + + sectionId = formYear + "-" + searchParams.substring(1, 3); + } else { + searchParams = document.location.pathname + .toString() + .replace("/sections/", "") + .replace(formYear + "/", ""); + sectionId = formYear + "-" + searchParams.substring(0, 2); + } + + let subsectionId = sectionId + "-"; if (sectionId.slice(-2) === "03") { subsectionId += searchParams.slice(-1); } else { diff --git a/services/ui-src/src/components/layout/FormActions.test.jsx b/services/ui-src/src/components/layout/FormActions.test.jsx index 77967b362..fdf31f5db 100644 --- a/services/ui-src/src/components/layout/FormActions.test.jsx +++ b/services/ui-src/src/components/layout/FormActions.test.jsx @@ -9,12 +9,14 @@ import { stateUserWithReportInProgress, } from "../../store/fakeStoreExamples"; import { MemoryRouter } from "react-router"; +const firstLocation = "/sections/2021/00"; +const adminFirstLocation = "/views/sections/AL/2021/00"; const mockStore = configureMockStore(); const store = mockStore(stateUserWithReportInProgress); const formActions = ( - + @@ -22,36 +24,76 @@ const formActions = ( const adminStore = mockStore(adminUserWithReportInProgress); const adminFormActions = ( - + ); + describe("Fill Form Component", () => { - it("should render correctly", () => { + afterEach(() => { + jest.clearAllMocks(); + }); + + test("should render correctly", () => { expect(shallow(formActions).exists()).toBe(true); }); - it("should add hrefs given a section and subsection", () => { + test("should add hrefs given a section and subsection", () => { render(formActions); + window.history.pushState({}, "Title", "/sections/00"); + const printShowButton = screen.getByTestId("print-show"); + fireEvent.click(printShowButton); + const printFormButton = screen.getByTestId("print-form"); + const printPageButton = screen.getByTestId("print-page"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); + }); + + test("should add hrefs given a section and subsection for admin user", () => { + const setLocation = (path = "/") => { + delete window.location; + window.location = new URL("https://www.example.com" + path); + }; + + setLocation(adminFirstLocation); + render(adminFormActions); + window.history.pushState({}, "Title", "/00/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should build the component when looking at section 3 subsections", () => { - window.history.pushState({}, "Title", "/sections/03"); + test("should build the component when looking at section 3 subsections", () => { render(adminFormActions); - window.history.pushState({}, "Title", "/sections/03"); + window.history.pushState({}, "Title", "/03/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-03&subsectionId=2021-03-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should display print section or page on click", () => { + test("should display print section or page on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -60,7 +102,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toHaveTextContent("This Section"); expect(printFormButton).toHaveTextContent("Entire Form"); }); - it("should clear on click", () => { + test("should clear on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -72,7 +114,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toBeNull(); expect(printFormButton).toBeNull(); }); - it("should not clear on internal click, then clear on outside click", () => { + test("should not clear on internal click, then clear on outside click", () => { const map = {}; document.addEventListener = jest.fn((event, cb) => { From eadb715ba20ace88292f4da3174de825e6ec2ca7 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Fri, 20 Sep 2024 13:24:34 -0400 Subject: [PATCH 10/24] update macfc security hub github action (#139770) --- .github/workflows/scan_security-hub-jira-integration.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/scan_security-hub-jira-integration.yml b/.github/workflows/scan_security-hub-jira-integration.yml index c891ab340..2428a1458 100644 --- a/.github/workflows/scan_security-hub-jira-integration.yml +++ b/.github/workflows/scan_security-hub-jira-integration.yml @@ -21,13 +21,12 @@ jobs: aws-region: ${{ secrets.AWS_DEFAULT_REGION }} role-to-assume: ${{ secrets.PRODUCTION_SYNC_OIDC_ROLE }} - name: Sync Security Hub and Jira - uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v1.0.5 + uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v2.0.9 with: jira-username: "mdct_github_service_account" jira-token: ${{ secrets.JIRA_ENT_USER_TOKEN }} - jira-host: jiraent.cms.gov jira-project-key: CMDCT jira-ignore-statuses: Done, Closed, Canceled jira-custom-fields: '{ "customfield_10100": "CMDCT-2280", "customfield_26700" : [{"id": "40101", "value": "CARTS"}] }' aws-severities: CRITICAL, HIGH, MEDIUM - assign-jira-ticket-to: "MWTW" + jira-assignee: "MWTW" From 679cc367020cf65264bc0fd1514d91cf48e909dc Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Fri, 20 Sep 2024 13:25:00 -0400 Subject: [PATCH 11/24] Upgrade vite version for snyk (#139772) --- services/ui-src/package.json | 2 +- services/ui-src/yarn.lock | 519 ++++++++++++++++++----------------- 2 files changed, 263 insertions(+), 258 deletions(-) diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 5fb8787bb..39edf88ae 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -36,7 +36,7 @@ "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0", "sass": "^1.77.1", - "vite": "^5.2.11", + "vite": "^5.4.6", "vite-tsconfig-paths": "^4.3.2" }, "scripts": { diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index 38b7929fb..232dd1a4b 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -3124,120 +3124,120 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -3748,85 +3748,85 @@ "@babel/runtime" "^7.23.2" immutable "^4.3.4" -"@rollup/rollup-android-arm-eabi@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" - integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== - -"@rollup/rollup-android-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" - integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== - -"@rollup/rollup-darwin-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" - integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== - -"@rollup/rollup-darwin-x64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" - integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== - -"@rollup/rollup-linux-arm-gnueabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" - integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== - -"@rollup/rollup-linux-arm-musleabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" - integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== - -"@rollup/rollup-linux-arm64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" - integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== - -"@rollup/rollup-linux-arm64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" - integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" - integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== - -"@rollup/rollup-linux-riscv64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" - integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== - -"@rollup/rollup-linux-s390x-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" - integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== - -"@rollup/rollup-linux-x64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" - integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== - -"@rollup/rollup-linux-x64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" - integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== - -"@rollup/rollup-win32-arm64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" - integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== - -"@rollup/rollup-win32-ia32-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" - integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== - -"@rollup/rollup-win32-x64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" - integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== +"@rollup/rollup-android-arm-eabi@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.2.tgz#4e0c4c462692ecb7ae2b008f25af4cced05ac4f9" + integrity sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw== + +"@rollup/rollup-android-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.2.tgz#d97ed02a950061adc2056d6d2d6df8f05d877ae9" + integrity sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ== + +"@rollup/rollup-darwin-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.2.tgz#06dec35316de9fe433d66c849ecc056e221ba422" + integrity sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg== + +"@rollup/rollup-darwin-x64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.2.tgz#22ee27a0ccfdc045c2a37f6980351329516ce119" + integrity sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q== + +"@rollup/rollup-linux-arm-gnueabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.2.tgz#d86df2d8c600ebdd7251110a3357c53e0a583ace" + integrity sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg== + +"@rollup/rollup-linux-arm-musleabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.2.tgz#a8b7b6a805356c8bd0409e4c5f56664d80a50aaa" + integrity sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ== + +"@rollup/rollup-linux-arm64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.2.tgz#766064021d2bfc42f13f4653f8870a9b8bbdc31d" + integrity sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A== + +"@rollup/rollup-linux-arm64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.2.tgz#490f49236102b97738d9406eaf5cd8d9dad35c15" + integrity sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.2.tgz#03a67f1476dd80f115ce35bc9b0d03c50c16679d" + integrity sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg== + +"@rollup/rollup-linux-riscv64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.2.tgz#d86e9b7b5b242652cd691c46d1939130c35cb68d" + integrity sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg== + +"@rollup/rollup-linux-s390x-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.2.tgz#c8fca373bec6df8550b31b3dbb56e2b241bc8718" + integrity sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA== + +"@rollup/rollup-linux-x64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.2.tgz#be182ef761c9b0147496e647ace44fd1b912344f" + integrity sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ== + +"@rollup/rollup-linux-x64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.2.tgz#c280202d5b54d04f1e2b810359fe73c4973e8b72" + integrity sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g== + +"@rollup/rollup-win32-arm64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.2.tgz#8ae561401b92acb8ca7a842ffadececb22a2247e" + integrity sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA== + +"@rollup/rollup-win32-ia32-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.2.tgz#c3a8b081595026eab9fccfe581624cb31af0d6f8" + integrity sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw== + +"@rollup/rollup-win32-x64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.2.tgz#c770006ccc780b2de7b2151fc7f37b49121a21c1" + integrity sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA== "@sheerun/mutationobserver-shim@^0.3.2": version "0.3.3" @@ -6271,34 +6271,34 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.20.1: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" escalade@^3.1.1: version "3.1.1" @@ -9237,6 +9237,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -9274,14 +9279,14 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= -postcss@^8.4.38: - version "8.4.38" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== +postcss@^8.4.43: + version "8.4.47" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" + integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== dependencies: nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.2.0" + picocolors "^1.1.0" + source-map-js "^1.2.1" prelude-ls@~1.1.2: version "1.1.2" @@ -9943,29 +9948,29 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^4.13.0: - version "4.17.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" - integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== +rollup@^4.20.0: + version "4.22.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.2.tgz#d762fa52c6ddb1307c1d6e8b463ba79432ffbb6b" + integrity sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.17.2" - "@rollup/rollup-android-arm64" "4.17.2" - "@rollup/rollup-darwin-arm64" "4.17.2" - "@rollup/rollup-darwin-x64" "4.17.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" - "@rollup/rollup-linux-arm-musleabihf" "4.17.2" - "@rollup/rollup-linux-arm64-gnu" "4.17.2" - "@rollup/rollup-linux-arm64-musl" "4.17.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" - "@rollup/rollup-linux-riscv64-gnu" "4.17.2" - "@rollup/rollup-linux-s390x-gnu" "4.17.2" - "@rollup/rollup-linux-x64-gnu" "4.17.2" - "@rollup/rollup-linux-x64-musl" "4.17.2" - "@rollup/rollup-win32-arm64-msvc" "4.17.2" - "@rollup/rollup-win32-ia32-msvc" "4.17.2" - "@rollup/rollup-win32-x64-msvc" "4.17.2" + "@rollup/rollup-android-arm-eabi" "4.22.2" + "@rollup/rollup-android-arm64" "4.22.2" + "@rollup/rollup-darwin-arm64" "4.22.2" + "@rollup/rollup-darwin-x64" "4.22.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.22.2" + "@rollup/rollup-linux-arm-musleabihf" "4.22.2" + "@rollup/rollup-linux-arm64-gnu" "4.22.2" + "@rollup/rollup-linux-arm64-musl" "4.22.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.22.2" + "@rollup/rollup-linux-riscv64-gnu" "4.22.2" + "@rollup/rollup-linux-s390x-gnu" "4.22.2" + "@rollup/rollup-linux-x64-gnu" "4.22.2" + "@rollup/rollup-linux-x64-musl" "4.22.2" + "@rollup/rollup-win32-arm64-msvc" "4.22.2" + "@rollup/rollup-win32-ia32-msvc" "4.22.2" + "@rollup/rollup-win32-x64-msvc" "4.22.2" fsevents "~2.3.2" rst-selector-parser@^2.2.3: @@ -10217,10 +10222,10 @@ snapdragon@^0.8.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-js@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" - integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" @@ -10950,14 +10955,14 @@ vite-tsconfig-paths@^4.3.2: globrex "^0.1.2" tsconfck "^3.0.3" -vite@^5.2.11: - version "5.2.11" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd" - integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== +vite@^5.4.6: + version "5.4.6" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" + integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== dependencies: - esbuild "^0.20.1" - postcss "^8.4.38" - rollup "^4.13.0" + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" optionalDependencies: fsevents "~2.3.3" From 9d2ff7553c739142c74b5399a02d9476653d03ae Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:57:49 -0400 Subject: [PATCH 12/24] e2e bug: add wait after submitting (#139773) --- tests/cypress/tests/integration/submitAndUncertify.spec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/cypress/tests/integration/submitAndUncertify.spec.js b/tests/cypress/tests/integration/submitAndUncertify.spec.js index b21567c32..23f06347d 100644 --- a/tests/cypress/tests/integration/submitAndUncertify.spec.js +++ b/tests/cypress/tests/integration/submitAndUncertify.spec.js @@ -21,6 +21,7 @@ describe("CARTS Submit and Uncertify Integration Tests", () => { cy.get(certifySubmitButton).click(); cy.get("button").contains("Confirm Certify and Submit").click(); + cy.wait(3000); cy.get("button").contains("Return Home").click(); // log in as CMS Admin (user who can uncertify) From 56ef3e3baabc2be823099e742848f065897c2079 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:49:44 -0400 Subject: [PATCH 13/24] Wrap synthesize value calls in useEffect (#139774) --- .../components/fields/SynthesizedTable.jsx | 37 +++++++++++-------- .../components/fields/SynthesizedValue.jsx | 25 ++++++++----- 2 files changed, 36 insertions(+), 26 deletions(-) diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index 4f408b5bd..89a370394 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useEffect, useState } from "react"; import { useSelector, shallowEqual } from "react-redux"; //utils import synthesizeValue from "../../util/synthesize"; @@ -6,6 +6,7 @@ import synthesizeValue from "../../util/synthesize"; import PropTypes from "prop-types"; const SynthesizedTable = ({ question, tableTitle }) => { + const [rows, setRows] = useState([]); const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = useSelector( (state) => [ @@ -18,22 +19,26 @@ const SynthesizedTable = ({ question, tableTitle }) => { shallowEqual ); - const rows = question.fieldset_info.rows.map((row) => - row.map((cell) => { - const value = synthesizeValue( - cell, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ); + useEffect(() => { + const rows = question.fieldset_info.rows.map((row) => + row.map((cell) => { + const value = synthesizeValue( + cell, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ); - return typeof value.contents === "number" && Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }) - ); + return typeof value.contents === "number" && + Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }) + ); + setRows(rows); + }, [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData]); return (
diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index dba9a6d73..95d23457e 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useEffect, useState } from "react"; import { useSelector, shallowEqual } from "react-redux"; //components import Question from "./Question"; @@ -8,6 +8,7 @@ import synthesizeValue from "../../util/synthesize"; import PropTypes from "prop-types"; const SynthesizedValue = ({ question, ...props }) => { + const [displayValue, setDisplayValue] = useState(); const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = useSelector( (state) => [ @@ -20,18 +21,22 @@ const SynthesizedValue = ({ question, ...props }) => { shallowEqual ); - const value = synthesizeValue( - question.fieldset_info, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ).contents; + useEffect(() => { + setDisplayValue( + synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents + ); + }, [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData]); return (
- Computed: {value} + Computed: {displayValue} {question.questions && question.questions.map((q) => ( From f4cbb136c7c44b7b3616863145008f0148c558bb Mon Sep 17 00:00:00 2001 From: Nick Summers Date: Tue, 24 Sep 2024 13:43:57 -0400 Subject: [PATCH 14/24] Revert "Wrap synthesize value calls in useEffect" (#139776) --- .../components/fields/SynthesizedTable.jsx | 37 ++++++++----------- .../components/fields/SynthesizedValue.jsx | 25 +++++-------- 2 files changed, 26 insertions(+), 36 deletions(-) diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index 89a370394..4f408b5bd 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from "react"; +import React from "react"; import { useSelector, shallowEqual } from "react-redux"; //utils import synthesizeValue from "../../util/synthesize"; @@ -6,7 +6,6 @@ import synthesizeValue from "../../util/synthesize"; import PropTypes from "prop-types"; const SynthesizedTable = ({ question, tableTitle }) => { - const [rows, setRows] = useState([]); const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = useSelector( (state) => [ @@ -19,26 +18,22 @@ const SynthesizedTable = ({ question, tableTitle }) => { shallowEqual ); - useEffect(() => { - const rows = question.fieldset_info.rows.map((row) => - row.map((cell) => { - const value = synthesizeValue( - cell, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ); + const rows = question.fieldset_info.rows.map((row) => + row.map((cell) => { + const value = synthesizeValue( + cell, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ); - return typeof value.contents === "number" && - Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }) - ); - setRows(rows); - }, [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData]); + return typeof value.contents === "number" && Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }) + ); return (
diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index 95d23457e..dba9a6d73 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from "react"; +import React from "react"; import { useSelector, shallowEqual } from "react-redux"; //components import Question from "./Question"; @@ -8,7 +8,6 @@ import synthesizeValue from "../../util/synthesize"; import PropTypes from "prop-types"; const SynthesizedValue = ({ question, ...props }) => { - const [displayValue, setDisplayValue] = useState(); const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = useSelector( (state) => [ @@ -21,22 +20,18 @@ const SynthesizedValue = ({ question, ...props }) => { shallowEqual ); - useEffect(() => { - setDisplayValue( - synthesizeValue( - question.fieldset_info, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ).contents - ); - }, [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData]); + const value = synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents; return (
- Computed: {displayValue} + Computed: {value} {question.questions && question.questions.map((q) => ( From 598cf7bddb0d81b1cffd3d14947450b8532261a5 Mon Sep 17 00:00:00 2001 From: Nick Summers Date: Tue, 24 Sep 2024 14:26:16 -0400 Subject: [PATCH 15/24] Rollback to Arch Diagram (#139777) --- .github/workflows/destroy.yml | 16 +- .../scan_security-hub-jira-integration.yml | 5 +- .images/architecture.svg | 2 +- .../libs/validation/backend-section.schema.ts | 3 - .../data/seed-local/seed-section.json | 14633 ++++++++++++---- services/ui-src/package.json | 2 +- .../ui-src/src/components/fields/DataGrid.jsx | 19 +- .../ui-src/src/components/fields/Integer.jsx | 86 +- .../src/components/fields/Integer.test.jsx | 105 +- .../ui-src/src/components/fields/Money.jsx | 2 +- .../src/components/fields/Objective.jsx | 6 +- .../src/components/fields/Objectives.jsx | 10 +- .../ui-src/src/components/fields/Question.jsx | 20 +- .../src/components/fields/Repeatable.jsx | 5 +- .../src/components/fields/Repeatables.jsx | 3 - .../src/components/layout/FormActions.jsx | 25 +- .../components/layout/FormActions.test.jsx | 70 +- .../ui-src/src/components/layout/Part.jsx | 3 +- .../ui-src/src/components/layout/Section.jsx | 9 +- .../src/components/layout/Subsection.jsx | 4 +- .../ui-src/src/components/sections/Print.jsx | 2 - services/ui-src/src/util/synthesize.js | 61 +- services/ui-src/src/util/synthesize.test.js | 25 +- services/ui-src/yarn.lock | 519 +- .../integration/submitAndUncertify.spec.js | 1 - 25 files changed, 11307 insertions(+), 4329 deletions(-) diff --git a/.github/workflows/destroy.yml b/.github/workflows/destroy.yml index 0a96661ec..e1033651b 100644 --- a/.github/workflows/destroy.yml +++ b/.github/workflows/destroy.yml @@ -65,18 +65,4 @@ jobs: inputs: '{ "topics": "mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.config,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.offsets,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.status"}' ref: refs/heads/master # Otherwise workflow-dispatch tries to operate off of our default name - name: Destroy - run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false - - # Notify the integrations channel when a destroy action fails - notify_on_destroy_failure: - runs-on: ubuntu-latest - needs: - - destroy - if: ${{ failure() }} - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}." - MSG_MINIMAL: true - SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} \ No newline at end of file + run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false \ No newline at end of file diff --git a/.github/workflows/scan_security-hub-jira-integration.yml b/.github/workflows/scan_security-hub-jira-integration.yml index 2428a1458..c891ab340 100644 --- a/.github/workflows/scan_security-hub-jira-integration.yml +++ b/.github/workflows/scan_security-hub-jira-integration.yml @@ -21,12 +21,13 @@ jobs: aws-region: ${{ secrets.AWS_DEFAULT_REGION }} role-to-assume: ${{ secrets.PRODUCTION_SYNC_OIDC_ROLE }} - name: Sync Security Hub and Jira - uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v2.0.9 + uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v1.0.5 with: jira-username: "mdct_github_service_account" jira-token: ${{ secrets.JIRA_ENT_USER_TOKEN }} + jira-host: jiraent.cms.gov jira-project-key: CMDCT jira-ignore-statuses: Done, Closed, Canceled jira-custom-fields: '{ "customfield_10100": "CMDCT-2280", "customfield_26700" : [{"id": "40101", "value": "CARTS"}] }' aws-severities: CRITICAL, HIGH, MEDIUM - jira-assignee: "MWTW" + assign-jira-ticket-to: "MWTW" diff --git a/.images/architecture.svg b/.images/architecture.svg index a222bc1dd..d7d40c838 100644 --- a/.images/architecture.svg +++ b/.images/architecture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/services/app-api/libs/validation/backend-section.schema.ts b/services/app-api/libs/validation/backend-section.schema.ts index 9ae88e986..3383d025c 100644 --- a/services/app-api/libs/validation/backend-section.schema.ts +++ b/services/app-api/libs/validation/backend-section.schema.ts @@ -359,9 +359,6 @@ export const sectionSchema = { hint: { type: "string", }, - mask: { - type: "string", - }, questions: { type: "array", items: { diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index c0a87b848..faa2eab30 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -75,32 +75,42 @@ "id": "2023-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-06", "type": "email", "label": "Email:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-07", "hint": "Include city, state, and zip code.", "type": "mailing_address", "label": "Full mailing address:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -149,8 +159,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -158,7 +174,9 @@ "id": "2023-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -182,8 +200,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -197,8 +221,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -235,7 +265,9 @@ "id": "2023-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -275,8 +307,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -314,7 +352,9 @@ "id": "2023-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -335,7 +375,9 @@ "id": "2023-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-01-05", @@ -345,12 +387,18 @@ "answer": { "entry": null, "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { "label": "Fee-for-Service", "value": "ffs" } + { + "label": "Fee-for-Service", + "value": "ffs" + } ] } }, @@ -358,7 +406,9 @@ "id": "2023-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -381,8 +431,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -390,7 +446,9 @@ "id": "2023-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -414,8 +472,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -429,8 +493,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -467,7 +537,9 @@ "id": "2023-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -507,8 +579,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -546,7 +624,9 @@ "id": "2023-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -567,7 +647,9 @@ "id": "2023-01-a-02-04", "type": "text_multiline", "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-02-05", @@ -577,12 +659,18 @@ "answer": { "entry": null, "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { "label": "Fee-for-Service", "value": "ffs" } + { + "label": "Fee-for-Service", + "value": "ffs" + } ] } }, @@ -590,7 +678,9 @@ "id": "2023-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -611,8 +701,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -626,8 +722,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -642,8 +744,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -658,8 +766,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -673,8 +787,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -689,11 +809,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2023-01-a-03-07", @@ -703,11 +831,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2023-01-a-03-08", @@ -717,11 +853,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2023-01-a-03-09", @@ -731,8 +875,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -746,8 +896,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -762,8 +918,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -778,11 +940,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2023-01-a-03-13", @@ -791,8 +961,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -806,8 +982,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -821,8 +1003,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -836,11 +1024,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -849,7 +1045,9 @@ "id": "2023-01-a-03-17", "type": "text_multiline", "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-03-18", @@ -858,8 +1056,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -918,8 +1122,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -933,8 +1143,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -949,8 +1165,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -965,8 +1187,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -980,8 +1208,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -996,11 +1230,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2023-01-a-04-07", @@ -1010,11 +1252,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2023-01-a-04-08", @@ -1024,11 +1274,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2023-01-a-04-09", @@ -1038,11 +1296,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Crowd-out policies" } + "context_data": { + "bullet_text": "Crowd-out policies" + } }, { "id": "2023-01-a-04-10", @@ -1051,8 +1317,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1066,8 +1338,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1082,8 +1360,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1098,11 +1382,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2023-01-a-04-14", @@ -1111,8 +1403,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1127,8 +1425,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1143,8 +1447,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1158,8 +1468,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1173,8 +1489,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1188,11 +1510,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -1201,7 +1531,9 @@ "id": "2023-01-a-04-20", "type": "text_multiline", "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-04-21", @@ -1210,8 +1542,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -1295,7 +1633,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Medicaid Expansion CHIP" }, + { + "contents": "Medicaid Expansion CHIP" + }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1318,7 +1658,9 @@ } ], [ - { "contents": "Separate CHIP" }, + { + "contents": "Separate CHIP" + }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1342,14 +1684,18 @@ ] ], "headers": [ - { "contents": "Program" }, + { + "contents": "Program" + }, { "contents": "Number of children enrolled in FFY 2022" }, { "contents": "Number of children enrolled in FFY 2023" }, - { "contents": "Percent change" } + { + "contents": "Percent change" + } ] }, "fieldset_type": "synthesized_table" @@ -1358,7 +1704,9 @@ "id": "2023-02-a-01-01", "type": "text_multiline", "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1404,7 +1752,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -1431,7 +1781,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -1458,7 +1810,9 @@ } ], [ - { "contents": "2020" }, + { + "contents": "2020" + }, { "lookupAcs": { "ffy": "2020", @@ -1485,7 +1839,9 @@ } ], [ - { "contents": "2021" }, + { + "contents": "2021" + }, { "lookupAcs": { "ffy": "2021", @@ -1512,7 +1868,9 @@ } ], [ - { "contents": "2022" }, + { + "contents": "2022" + }, { "lookupAcs": { "ffy": "2022", @@ -1540,13 +1898,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "fieldset_type": "synthesized_table" @@ -1590,7 +1956,9 @@ "id": "2023-02-a-02-01", "type": "text_multiline", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1626,8 +1994,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1635,7 +2009,9 @@ "id": "2023-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1659,8 +2035,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1671,7 +2053,9 @@ "id": "2023-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-b", @@ -1686,37 +2070,49 @@ "id": "2023-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -1739,13 +2135,17 @@ "id": "2023-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -1785,8 +2185,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1794,7 +2200,9 @@ "id": "2023-03-a-01-01-a", "type": "text_multiline", "label": "What are you doing differently?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1819,8 +2227,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1828,7 +2242,9 @@ "id": "2023-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1850,19 +2266,25 @@ "hint": "For example: TV, school outreach, or word of mouth.", "type": "text_multiline", "label": "What methods have been most effective in reaching low-income, uninsured children?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -1885,9 +2307,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -1895,7 +2326,9 @@ "id": "2023-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1919,9 +2352,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -1929,7 +2371,9 @@ "id": "2023-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1950,7 +2394,9 @@ "id": "2023-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -1962,9 +2408,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -1975,7 +2430,9 @@ "id": "2023-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -1996,7 +2453,9 @@ "id": "2023-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2015,7 +2474,9 @@ "id": "2023-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2034,7 +2495,9 @@ "id": "2023-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2064,13 +2527,17 @@ "id": "2023-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -2094,9 +2561,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -2107,13 +2583,17 @@ "id": "2023-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -2139,8 +2619,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -2151,8 +2637,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -2163,13 +2655,17 @@ "id": "2023-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-03-b", "type": "text", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -2192,25 +2688,33 @@ "id": "2023-03-c-01-04", "type": "text_multiline", "label": "What else have you done to simplify the eligibility renewal process for families?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-05", "type": "text_multiline", "label": "Which retention strategies have you found to be most effective?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-06", "type": "text_multiline", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -2224,47 +2728,54 @@ "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2023? This number should be equal to the total of reported numbers for questions 2-4 below.", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "questions": [ { "id": "2023-03-c-02-03-a", "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } - ], - "mask": "lessThanEleven" + ] }, { "id": "2023-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-02-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This table is auto-populated with the data you entered above.", @@ -2274,7 +2785,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-01')].answer.entry" @@ -2289,7 +2802,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-02')].answer.entry" @@ -2304,7 +2819,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-03')].answer.entry" @@ -2319,7 +2836,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-04')].answer.entry" @@ -2335,9 +2854,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2354,29 +2879,34 @@ "id": "2023-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2397,32 +2927,36 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } - ], - "mask": "lessThanEleven" + ] }, { "id": "2023-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -2484,9 +3018,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2568,9 +3108,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2587,29 +3133,34 @@ "id": "2023-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2630,32 +3181,36 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } - ], - "mask": "lessThanEleven" + ] }, { "id": "2023-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -2717,9 +3272,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2801,9 +3362,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2848,8 +3415,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -2866,7 +3439,9 @@ "id": "2023-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2878,8 +3453,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -2903,29 +3477,33 @@ "id": "2023-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -2943,7 +3521,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-03" }, + "fieldset_info": { + "id": "2023-03-c-05-03" + }, "fieldset_type": "marked" }, { @@ -2960,7 +3540,9 @@ "id": "2023-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2972,8 +3554,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -2997,29 +3578,33 @@ "id": "2023-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3037,7 +3622,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-04" }, + "fieldset_info": { + "id": "2023-03-c-05-04" + }, "fieldset_type": "marked" }, { @@ -3048,7 +3635,9 @@ "id": "2023-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3060,8 +3649,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3085,29 +3673,33 @@ "id": "2023-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3125,7 +3717,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-05" }, + "fieldset_info": { + "id": "2023-03-c-05-05" + }, "fieldset_type": "marked" }, { @@ -3136,7 +3730,9 @@ "id": "2023-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3148,8 +3744,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3173,29 +3768,33 @@ "id": "2023-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3213,7 +3812,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-06" }, + "fieldset_info": { + "id": "2023-03-c-05-06" + }, "fieldset_type": "marked" }, { @@ -3225,7 +3826,9 @@ "id": "2023-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3237,8 +3840,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3262,29 +3864,33 @@ "id": "2023-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3302,7 +3908,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-07" }, + "fieldset_info": { + "id": "2023-03-c-05-07" + }, "fieldset_type": "marked" }, { @@ -3313,7 +3921,9 @@ "id": "2023-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3325,8 +3935,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3350,29 +3959,33 @@ "id": "2023-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3390,14 +4003,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-08" }, + "fieldset_info": { + "id": "2023-03-c-05-08" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This year, please report data about your cohort for this section.", @@ -3414,7 +4031,9 @@ "id": "2023-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3426,8 +4045,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3451,29 +4069,33 @@ "id": "2023-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3491,7 +4113,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-10" }, + "fieldset_info": { + "id": "2023-03-c-05-10" + }, "fieldset_type": "marked" }, { @@ -3502,7 +4126,9 @@ "id": "2023-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3514,8 +4140,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3539,29 +4164,33 @@ "id": "2023-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3579,7 +4208,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-11" }, + "fieldset_info": { + "id": "2023-03-c-05-11" + }, "fieldset_type": "marked" }, { @@ -3590,7 +4221,9 @@ "id": "2023-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3602,8 +4235,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3627,29 +4259,33 @@ "id": "2023-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3667,7 +4303,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-12" }, + "fieldset_info": { + "id": "2023-03-c-05-12" + }, "fieldset_type": "marked" }, { @@ -3679,7 +4317,9 @@ "id": "2023-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3691,8 +4331,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3716,29 +4355,33 @@ "id": "2023-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3756,7 +4399,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-13" }, + "fieldset_info": { + "id": "2023-03-c-05-13" + }, "fieldset_type": "marked" }, { @@ -3767,7 +4412,9 @@ "id": "2023-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3779,8 +4426,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3804,29 +4450,33 @@ "id": "2023-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3844,7 +4494,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-14" }, + "fieldset_info": { + "id": "2023-03-c-05-14" + }, "fieldset_type": "marked" }, { @@ -3862,7 +4514,9 @@ "id": "2023-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3874,8 +4528,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3899,29 +4552,33 @@ "id": "2023-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3939,7 +4596,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-15" }, + "fieldset_info": { + "id": "2023-03-c-05-15" + }, "fieldset_type": "marked" }, { @@ -3950,7 +4609,9 @@ "id": "2023-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3962,8 +4623,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3987,29 +4647,33 @@ "id": "2023-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4027,7 +4691,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-16" }, + "fieldset_info": { + "id": "2023-03-c-05-16" + }, "fieldset_type": "marked" }, { @@ -4038,7 +4704,9 @@ "id": "2023-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4050,8 +4718,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4075,29 +4742,33 @@ "id": "2023-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4115,7 +4786,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-17" }, + "fieldset_info": { + "id": "2023-03-c-05-17" + }, "fieldset_type": "marked" }, { @@ -4127,7 +4800,9 @@ "id": "2023-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4139,8 +4814,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4164,29 +4838,33 @@ "id": "2023-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4204,7 +4882,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-18" }, + "fieldset_info": { + "id": "2023-03-c-05-18" + }, "fieldset_type": "marked" }, { @@ -4215,7 +4895,9 @@ "id": "2023-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4227,8 +4909,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4252,29 +4933,33 @@ "id": "2023-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4292,14 +4977,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-19" }, + "fieldset_info": { + "id": "2023-03-c-05-19" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -4341,8 +5030,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -4359,7 +5054,9 @@ "id": "2023-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4371,8 +5068,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4396,29 +5092,33 @@ "id": "2023-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4436,7 +5136,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-03" }, + "fieldset_info": { + "id": "2023-03-c-06-03" + }, "fieldset_type": "marked" }, { @@ -4453,7 +5155,9 @@ "id": "2023-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4465,8 +5169,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4490,29 +5193,33 @@ "id": "2023-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4530,7 +5237,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-04" }, + "fieldset_info": { + "id": "2023-03-c-06-04" + }, "fieldset_type": "marked" }, { @@ -4541,7 +5250,9 @@ "id": "2023-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4553,8 +5264,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4578,29 +5288,33 @@ "id": "2023-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4618,7 +5332,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-05" }, + "fieldset_info": { + "id": "2023-03-c-06-05" + }, "fieldset_type": "marked" }, { @@ -4629,7 +5345,9 @@ "id": "2023-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4641,8 +5359,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4666,29 +5383,33 @@ "id": "2023-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4706,7 +5427,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-06" }, + "fieldset_info": { + "id": "2023-03-c-06-06" + }, "fieldset_type": "marked" }, { @@ -4718,7 +5441,9 @@ "id": "2023-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4730,8 +5455,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4755,29 +5479,33 @@ "id": "2023-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4795,7 +5523,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-07" }, + "fieldset_info": { + "id": "2023-03-c-06-07" + }, "fieldset_type": "marked" }, { @@ -4806,7 +5536,9 @@ "id": "2023-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4818,8 +5550,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4843,29 +5574,33 @@ "id": "2023-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4883,14 +5618,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-08" }, + "fieldset_info": { + "id": "2023-03-c-06-08" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This year, please report data about your cohort for this section.", @@ -4907,7 +5646,9 @@ "id": "2023-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4919,8 +5660,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4944,29 +5684,33 @@ "id": "2023-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4984,7 +5728,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-10" }, + "fieldset_info": { + "id": "2023-03-c-06-10" + }, "fieldset_type": "marked" }, { @@ -4995,7 +5741,9 @@ "id": "2023-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5007,8 +5755,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5032,29 +5779,33 @@ "id": "2023-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5072,7 +5823,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-11" }, + "fieldset_info": { + "id": "2023-03-c-06-11" + }, "fieldset_type": "marked" }, { @@ -5083,7 +5836,9 @@ "id": "2023-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5095,8 +5850,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5120,29 +5874,33 @@ "id": "2023-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5160,7 +5918,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-12" }, + "fieldset_info": { + "id": "2023-03-c-06-12" + }, "fieldset_type": "marked" }, { @@ -5172,7 +5932,9 @@ "id": "2023-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5184,8 +5946,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5209,29 +5970,33 @@ "id": "2023-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5249,7 +6014,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-13" }, + "fieldset_info": { + "id": "2023-03-c-06-13" + }, "fieldset_type": "marked" }, { @@ -5260,7 +6027,9 @@ "id": "2023-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5272,8 +6041,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5297,29 +6065,33 @@ "id": "2023-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5337,7 +6109,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-14" }, + "fieldset_info": { + "id": "2023-03-c-06-14" + }, "fieldset_type": "marked" }, { @@ -5355,7 +6129,9 @@ "id": "2023-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5367,8 +6143,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5392,29 +6167,33 @@ "id": "2023-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5432,7 +6211,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-15" }, + "fieldset_info": { + "id": "2023-03-c-06-15" + }, "fieldset_type": "marked" }, { @@ -5443,7 +6224,9 @@ "id": "2023-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5455,8 +6238,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5480,29 +6262,33 @@ "id": "2023-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5520,7 +6306,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-16" }, + "fieldset_info": { + "id": "2023-03-c-06-16" + }, "fieldset_type": "marked" }, { @@ -5531,7 +6319,9 @@ "id": "2023-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5543,8 +6333,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5568,29 +6357,33 @@ "id": "2023-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5608,7 +6401,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-17" }, + "fieldset_info": { + "id": "2023-03-c-06-17" + }, "fieldset_type": "marked" }, { @@ -5620,7 +6415,9 @@ "id": "2023-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5632,8 +6429,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5657,29 +6453,33 @@ "id": "2023-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5697,7 +6497,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-18" }, + "fieldset_info": { + "id": "2023-03-c-06-18" + }, "fieldset_type": "marked" }, { @@ -5708,7 +6510,9 @@ "id": "2023-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5720,8 +6524,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5745,29 +6548,33 @@ "id": "2023-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5785,14 +6592,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-19" }, + "fieldset_info": { + "id": "2023-03-c-06-19" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -5815,8 +6626,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -5838,12 +6655,18 @@ "label": "Health plans", "value": "health_plans" }, - { "label": "States", "value": "states" }, + { + "label": "States", + "value": "states" + }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { "label": "Other ", "value": "other" } + { + "label": "Other ", + "value": "other" + } ] }, "questions": [ @@ -5851,7 +6674,9 @@ "id": "2023-03-d-01-02-a", "type": "text_multiline", "label": "What information or tools do you provide families with so they can track cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5881,7 +6706,9 @@ "id": "2023-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5912,13 +6739,17 @@ "id": "2023-03-d-01-03", "type": "text_multiline", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-d-01-05", @@ -5927,8 +6758,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -5936,7 +6773,9 @@ "id": "2023-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5960,8 +6799,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -5969,7 +6814,9 @@ "id": "2023-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5990,7 +6837,9 @@ "id": "2023-03-d-01-07", "type": "text_multiline", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6012,13 +6861,17 @@ "id": "2023-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -6061,8 +6914,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -6102,8 +6961,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6112,7 +6977,9 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-04", @@ -6122,8 +6989,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6135,9 +7008,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -6149,8 +7031,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -6158,7 +7046,9 @@ "id": "2023-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6179,7 +7069,9 @@ "id": "2023-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -6188,19 +7080,25 @@ "id": "2023-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-09", "type": "text", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-10", "type": "text", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -6233,9 +7131,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "fieldset_type": "synthesized_table" @@ -6295,31 +7199,41 @@ "id": "2023-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -6356,8 +7270,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6368,8 +7288,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6380,8 +7306,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6389,7 +7321,9 @@ "id": "2023-03-f-01-04", "type": "text_multiline", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-05", @@ -6398,9 +7332,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -6408,7 +7351,9 @@ "id": "2023-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the managed care plans have in place?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6429,15 +7374,17 @@ "id": "2023-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -6446,13 +7393,17 @@ "id": "2023-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -6463,13 +7414,17 @@ "id": "2023-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-11", "type": "integer", "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -6480,15 +7435,17 @@ "id": "2023-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -6499,7 +7456,10 @@ "answer": { "entry": null, "options": [ - { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "CHIP only", + "value": "separate_chip_only" + }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -6514,8 +7474,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -6523,7 +7489,9 @@ "id": "2023-03-f-01-15-a", "type": "text_multiline", "label": "How do you provide oversight of the contractors? ", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6547,8 +7515,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -6556,7 +7530,9 @@ "id": "2023-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6577,13 +7553,17 @@ "id": "2023-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -6617,8 +7597,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6630,7 +7616,9 @@ "id": "2023-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6642,8 +7630,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6669,43 +7656,49 @@ "id": "2023-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -6723,7 +7716,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-02" }, + "fieldset_info": { + "id": "2023-03-g-01-02" + }, "fieldset_type": "marked" }, { @@ -6734,7 +7729,9 @@ "id": "2023-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6746,8 +7743,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6773,43 +7769,49 @@ "id": "2023-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -6827,7 +7829,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-03" }, + "fieldset_info": { + "id": "2023-03-g-01-03" + }, "fieldset_type": "marked" }, { @@ -6844,7 +7848,9 @@ "id": "2023-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6856,8 +7862,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6883,43 +7888,49 @@ "id": "2023-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -6937,7 +7948,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-04" }, + "fieldset_info": { + "id": "2023-03-g-01-04" + }, "fieldset_type": "marked" }, { @@ -6955,7 +7968,9 @@ "id": "2023-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6967,8 +7982,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6994,43 +8008,49 @@ "id": "2023-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -7048,7 +8068,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-05" }, + "fieldset_info": { + "id": "2023-03-g-01-05" + }, "fieldset_type": "marked" }, { @@ -7061,8 +8083,9 @@ "id": "2023-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -7077,8 +8100,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -7089,14 +8118,18 @@ "id": "2023-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -7130,7 +8163,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table" @@ -7156,13 +8191,17 @@ "id": "2023-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -7189,8 +8228,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -7202,8 +8247,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -7233,7 +8284,9 @@ "id": "2023-03-h-02-01", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results. This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-h-02-02", @@ -7246,12 +8299,18 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid_exp_chip" }, - { "label": "Separate CHIP", "value": "separate_chip" }, + { + "label": "Separate CHIP", + "value": "separate_chip" + }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combo" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -7262,9 +8321,18 @@ "answer": { "entry": null, "options": [ - { "label": "CAHPS 5.1", "value": "CAHPS 5.1" }, - { "label": "CAHPS 5.1H", "value": "CAHPS 5.1H" }, - { "label": "Other", "value": "Other" } + { + "label": "CAHPS 5.1", + "value": "CAHPS 5.1" + }, + { + "label": "CAHPS 5.1H", + "value": "CAHPS 5.1H" + }, + { + "label": "Other", + "value": "Other" + } ] } }, @@ -7275,12 +8343,18 @@ "answer": { "entry": null, "options": [ - { "label": "None", "value": "None" }, + { + "label": "None", + "value": "None" + }, { "label": "Children with Chronic Conditions", "value": "Children with Chronic Conditions" }, - { "label": "Other", "value": "Other" } + { + "label": "Other", + "value": "Other" + } ] } }, @@ -7295,8 +8369,14 @@ "label": "NCQA HEDIS CAHPS 5.1H", "value": "NCQA HEDIS CAHPS 5.1H" }, - { "label": "HRQ CAHPS", "value": "HRQ CAHPS" }, - { "label": "Other", "value": "Other" } + { + "label": "HRQ CAHPS", + "value": "HRQ CAHPS" + }, + { + "label": "Other", + "value": "Other" + } ] } }, @@ -7304,7 +8384,9 @@ "id": "2023-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -7376,7 +8458,10 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -7384,7 +8469,9 @@ "id": "2023-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -7412,7 +8499,7 @@ "parts": [ { "id": "2023-03-i-01", - "title": " ", + "title": "\u00A0", "type": "part", "questions": [ { @@ -7423,8 +8510,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -7432,7 +8525,7 @@ }, { "id": "2023-03-i-02", - "title": " ", + "title": "\u00A0", "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", "type": "part", "questions": [ @@ -7450,7 +8543,9 @@ "id": "2023-03-i-02-01-01-01", "type": "text", "label": "What is the name of your HSI program?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-i-02-01-01-02", @@ -7459,8 +8554,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -7486,7 +8587,9 @@ "id": "2023-03-i-02-01-01-03", "type": "text_multiline", "label": "Which populations does the HSI program serve?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7505,7 +8608,9 @@ "id": "2023-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7518,14 +8623,15 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "id": "2023-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7538,8 +8644,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -7589,7 +8694,9 @@ "id": "2023-03-i-02-01-01-06", "type": "text_multiline", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7608,7 +8715,9 @@ "id": "2023-03-i-02-01-01-07", "type": "text_multiline", "label": "What outcomes have you found when measuring the impact?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7627,7 +8736,9 @@ "id": "2023-03-i-02-01-01-08", "type": "text_multiline", "label": "Is there anything else you'd like to add about this HSI program?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7646,7 +8757,9 @@ "id": "2023-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7746,7 +8859,9 @@ "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", "type": "text_multiline", "label": "Briefly describe your goal.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-02", @@ -7775,7 +8890,9 @@ "id": "2023-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7808,14 +8925,17 @@ "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -7828,14 +8948,17 @@ "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -7886,26 +9009,34 @@ "id": "2023-04-a-01-01-01-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -7923,7 +9054,9 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": "Increase access to care" } + "answer": { + "entry": "Increase access to care" + } }, { "id": "2023-04-a-01-01-02-02", @@ -7938,7 +9071,9 @@ "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-02", @@ -7967,7 +9102,9 @@ "id": "2023-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8000,14 +9137,17 @@ "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8020,14 +9160,17 @@ "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8078,26 +9221,34 @@ "id": "2023-04-a-01-01-02-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8132,7 +9283,9 @@ "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-02", @@ -8161,7 +9314,9 @@ "id": "2023-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8194,14 +9349,17 @@ "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8214,14 +9372,17 @@ "hint": "For example: The total number of rural children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8272,26 +9433,34 @@ "id": "2023-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8308,7 +9477,9 @@ "id": "2023-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02", @@ -8322,7 +9493,9 @@ "id": "2023-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-02", @@ -8351,7 +9524,9 @@ "id": "2023-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8384,14 +9559,17 @@ "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8404,14 +9582,17 @@ "hint": "For example: The total number of children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8462,26 +9643,34 @@ "id": "2023-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8498,7 +9687,9 @@ "id": "2023-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02", @@ -8512,7 +9703,9 @@ "id": "2023-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-02", @@ -8541,7 +9734,9 @@ "id": "2023-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8573,14 +9768,17 @@ "id": "2023-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8592,14 +9790,17 @@ "id": "2023-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8650,26 +9851,34 @@ "id": "2023-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8686,7 +9895,9 @@ "id": "2023-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02", @@ -8700,7 +9911,9 @@ "id": "2023-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-02", @@ -8729,7 +9942,9 @@ "id": "2023-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8761,14 +9976,17 @@ "id": "2023-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8781,14 +9999,17 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8839,26 +10060,34 @@ "id": "2023-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8880,26 +10109,34 @@ "id": "2023-04-a-02-01", "type": "text_multiline", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-02-03", "type": "text_multiline", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-02-04", "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8945,26 +10182,34 @@ "id": "2023-05-a-01-01-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-01-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-01-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-01" }, + "fieldset_info": { + "id": "2023-05-a-01-01" + }, "fieldset_type": "marked" }, { @@ -8978,26 +10223,34 @@ "id": "2023-05-a-01-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-02" }, + "fieldset_info": { + "id": "2023-05-a-01-02" + }, "fieldset_type": "marked" }, { @@ -9011,26 +10264,34 @@ "id": "2023-05-a-01-03-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-03-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-03-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-03" }, + "fieldset_info": { + "id": "2023-05-a-01-03" + }, "fieldset_type": "marked" }, { @@ -9044,26 +10305,34 @@ "id": "2023-05-a-01-04-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-04-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-04-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-04" }, + "fieldset_info": { + "id": "2023-05-a-01-04" + }, "fieldset_type": "marked" }, { @@ -9074,7 +10343,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -9095,7 +10366,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -9116,7 +10389,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -9160,7 +10435,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3>", @@ -9197,10 +10474,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -9224,26 +10509,34 @@ "id": "2023-05-a-02-01-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-01-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-01-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-01" }, + "fieldset_info": { + "id": "2023-05-a-02-01" + }, "fieldset_type": "marked" }, { @@ -9257,26 +10550,34 @@ "id": "2023-05-a-02-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-02" }, + "fieldset_info": { + "id": "2023-05-a-02-02" + }, "fieldset_type": "marked" }, { @@ -9290,26 +10591,34 @@ "id": "2023-05-a-02-03-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-03-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-03-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-03" }, + "fieldset_info": { + "id": "2023-05-a-02-03" + }, "fieldset_type": "marked" }, { @@ -9323,26 +10632,34 @@ "id": "2023-05-a-02-04-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-04-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-04-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-04" }, + "fieldset_info": { + "id": "2023-05-a-02-04" + }, "fieldset_type": "marked" }, { @@ -9356,26 +10673,34 @@ "id": "2023-05-a-02-05-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-05-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-05-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-05" }, + "fieldset_info": { + "id": "2023-05-a-02-05" + }, "fieldset_type": "marked" }, { @@ -9389,26 +10714,34 @@ "id": "2023-05-a-02-06-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-06-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-06-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-06" }, + "fieldset_info": { + "id": "2023-05-a-02-06" + }, "fieldset_type": "marked" }, { @@ -9422,26 +10755,34 @@ "id": "2023-05-a-02-07-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-07-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-07-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-07" }, + "fieldset_info": { + "id": "2023-05-a-02-07" + }, "fieldset_type": "marked" }, { @@ -9452,7 +10793,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -9473,7 +10816,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -9494,7 +10839,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -9515,7 +10862,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -9536,7 +10885,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -9557,7 +10908,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -9578,7 +10931,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -9599,7 +10954,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -9638,7 +10995,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -9675,10 +11034,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -9691,7 +11058,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -9748,30 +11117,48 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2023" }], + "targets": [ + { + "lookupFmapFy": "2023" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY23)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2024" }], + "targets": [ + { + "lookupFmapFy": "2024" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2025" }], + "targets": [ + { + "lookupFmapFy": "2025" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -9790,7 +11177,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -9809,7 +11198,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2025" }, + { + "lookupFmapFy": "2025" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -9826,7 +11217,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -9842,7 +11235,9 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -9872,7 +11267,9 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -9902,7 +11299,9 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2025" }, + { + "lookupFmapFy": "2025" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -9920,10 +11319,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -9960,7 +11367,10 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -9968,7 +11378,9 @@ "id": "2023-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9992,8 +11404,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -10001,7 +11419,9 @@ "id": "2023-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -10037,29 +11457,34 @@ "id": "2023-05-a-03-01-a", "type": "integer", "label": "2023", - "answer": { "entry": null }, - "comment": "This is the first real question so far in this part…", - "mask": "lessThanEleven" + "answer": { + "entry": null + }, + "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-01-b", "type": "integer", "label": "2024", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-05-a-03-01-c", "type": "integer", "label": "2025", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-03-01" }, + "fieldset_info": { + "id": "2023-05-a-03-01" + }, "fieldset_type": "marked" }, { @@ -10074,26 +11499,34 @@ "id": "2023-05-a-03-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-03-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-03-02" }, + "fieldset_info": { + "id": "2023-05-a-03-02" + }, "fieldset_type": "marked" }, { @@ -10102,7 +11535,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -10123,7 +11558,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -10145,10 +11582,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -10172,29 +11617,34 @@ "id": "2023-05-a-04-01-a", "type": "integer", "label": "2023", - "answer": { "entry": null }, - "comment": "This is the first real question so far in this part…", - "mask": "lessThanEleven" + "answer": { + "entry": null + }, + "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-01-b", "type": "integer", "label": "2024", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-05-a-04-01-c", "type": "integer", "label": "2025", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-04-01" }, + "fieldset_info": { + "id": "2023-05-a-04-01" + }, "fieldset_type": "marked" }, { @@ -10209,26 +11659,34 @@ "id": "2023-05-a-04-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-04-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-04-02" }, + "fieldset_info": { + "id": "2023-05-a-04-02" + }, "fieldset_type": "marked" }, { @@ -10237,7 +11695,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -10258,7 +11718,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -10280,10 +11742,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -10298,13 +11768,17 @@ "id": "2023-05-a-05-01", "type": "text_multiline", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -10341,37 +11815,49 @@ "id": "2023-06-a-01-01", "type": "text_multiline", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-02", "type": "text_multiline", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-03", "type": "text_multiline", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-04", "type": "text_multiline", "label": "What changes have you made to your CHIP program in FFY 2023 or plan to make in FFY 2024? Why have you decided to make these changes?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -10452,32 +11938,42 @@ "id": "2022-00-a-01-04", "label": "Contact name:", "type": "text", - "answer": { "entry": "Haley Gov" } + "answer": { + "entry": "Haley Gov" + } }, { "id": "2022-00-a-01-05", "label": "Job title:", "type": "text", - "answer": { "entry": "Lead" } + "answer": { + "entry": "Lead" + } }, { "id": "2022-00-a-01-06", "label": "Email:", "type": "email", - "answer": { "entry": "haley@cms.gov" } + "answer": { + "entry": "haley@cms.gov" + } }, { "id": "2022-00-a-01-07", "label": "Full mailing address:", "type": "mailing_address", - "answer": { "entry": "address here" }, + "answer": { + "entry": "address here" + }, "hint": "Include city, state, and zip code." }, { "id": "2022-00-a-01-08", "label": "Phone number:", "type": "phone_number", - "answer": { "entry": "8004659988" } + "answer": { + "entry": "8004659988" + } }, { "questions": [], @@ -10540,7 +12036,9 @@ "id": "2022-01-a-01-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { "entry": "25" } + "answer": { + "entry": "25" + } } ], "id": "2022-01-a-01-01", @@ -10548,8 +12046,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -10565,8 +12069,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10617,7 +12127,9 @@ "id": "2022-01-a-01-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -10641,8 +12153,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10696,7 +12214,9 @@ "id": "2022-01-a-01-03-b", "label": "What's the maximum premium a family would be charged each year?", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-01-a-01-03", @@ -10704,8 +12224,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10714,7 +12240,9 @@ "id": "2022-01-a-01-04", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { "entry": "no" } + "answer": { + "entry": "no" + } }, { "id": "2022-01-a-01-05", @@ -10722,12 +12250,18 @@ "type": "checkbox", "answer": { "options": [ - { "value": "mco", "label": "Managed Care" }, + { + "value": "mco", + "label": "Managed Care" + }, { "value": "pccm", "label": "Primary Care Case Management" }, - { "value": "ffs", "label": "Fee for Service" } + { + "value": "ffs", + "label": "Fee for Service" + } ], "entry": [null, "mco"] }, @@ -10737,7 +12271,9 @@ "id": "2022-01-a-01-06", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { "entry": "info here" } + "answer": { + "entry": "info here" + } } ], "context_data": { @@ -10772,7 +12308,9 @@ "id": "2022-01-a-02-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-01-a-02-01", @@ -10780,8 +12318,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -10797,8 +12341,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10849,7 +12399,9 @@ "id": "2022-01-a-02-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "context_data": { @@ -10873,8 +12425,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -10928,7 +12486,9 @@ "id": "2022-01-a-02-03-b", "label": "What's the maximum premium fee a family would be charged each year?", "type": "money", - "answer": { "entry": "6" } + "answer": { + "entry": "6" + } } ], "id": "2022-01-a-02-03", @@ -10936,8 +12496,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10946,7 +12512,9 @@ "id": "2022-01-a-02-04", "label": "Do your premiums differ for different CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { "entry": "no" } + "answer": { + "entry": "no" + } }, { "id": "2022-01-a-02-05", @@ -10954,12 +12522,18 @@ "type": "checkbox", "answer": { "options": [ - { "value": "mco", "label": "Managed Care" }, + { + "value": "mco", + "label": "Managed Care" + }, { "value": "pccm", "label": "Primary Care Case Management" }, - { "value": "ffs", "label": "Fee for Service" } + { + "value": "ffs", + "label": "Fee for Service" + } ], "entry": [null, "mco"] }, @@ -10969,7 +12543,9 @@ "id": "2022-01-a-02-06", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { "entry": "no" } + "answer": { + "entry": "no" + } } ], "context_data": { @@ -10991,9 +12567,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11007,9 +12592,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11023,9 +12617,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11040,9 +12643,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11057,53 +12669,95 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } }, { - "context_data": { "bullet_text": "Outreach efforts" }, + "context_data": { + "bullet_text": "Outreach efforts" + }, "id": "2022-01-a-03-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { "bullet_text": "Delivery system(s)" }, + "context_data": { + "bullet_text": "Delivery system(s)" + }, "id": "2022-01-a-03-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Medicaid Expansion CHIP populations." }, { - "context_data": { "bullet_text": "Cost sharing" }, + "context_data": { + "bullet_text": "Cost sharing" + }, "id": "2022-01-a-03-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11118,9 +12772,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11135,9 +12798,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11151,24 +12823,44 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { "bullet_text": "Premium assistance" }, + "context_data": { + "bullet_text": "Premium assistance" + }, "id": "2022-01-a-03-12", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11183,9 +12875,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11199,9 +12900,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11215,23 +12925,43 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } }, { - "context_data": { "bullet_text": "Other program areas" }, + "context_data": { + "bullet_text": "Other program areas" + }, "id": "2022-01-a-03-16", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "yes" } @@ -11243,7 +12973,9 @@ "id": "2022-01-a-03-17", "label": "Briefly describe why you made these changes to your Medicaid Expansion CHIP program.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-01-a-03-18", @@ -11251,9 +12983,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11315,9 +13056,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11331,9 +13081,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11347,9 +13106,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11364,9 +13132,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11381,68 +13158,121 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } }, { - "context_data": { "bullet_text": "Outreach efforts" }, + "context_data": { + "bullet_text": "Outreach efforts" + }, "id": "2022-01-a-04-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { "bullet_text": "Delivery system(s)" }, + "context_data": { + "bullet_text": "Delivery system(s)" + }, "id": "2022-01-a-04-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Separate CHIP populations." }, { - "context_data": { "bullet_text": "Cost sharing" }, + "context_data": { + "bullet_text": "Cost sharing" + }, "id": "2022-01-a-04-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, "hint": "For example: changing amounts, populations, or the collection process." }, { - "context_data": { "bullet_text": "Crowd-out policies" }, + "context_data": { + "bullet_text": "Crowd-out policies" + }, "id": "2022-01-a-04-09", "label": "Have you made any changes to substitution of coverage policies?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11457,9 +13287,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11473,9 +13312,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "yes" } @@ -11489,24 +13337,44 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { "bullet_text": "Premium assistance" }, + "context_data": { + "bullet_text": "Premium assistance" + }, "id": "2022-01-a-04-13", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11521,9 +13389,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11537,9 +13414,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "yes" }, @@ -11554,9 +13440,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11571,9 +13466,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11587,23 +13491,43 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } }, { - "context_data": { "bullet_text": "Other program areas" }, + "context_data": { + "bullet_text": "Other program areas" + }, "id": "2022-01-a-04-19", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11615,7 +13539,9 @@ "id": "2022-01-a-04-20", "label": "Briefly describe why you made these changes to your Separate CHIP program.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-01-a-04-21", @@ -11623,8 +13549,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -11707,7 +13639,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Medicaid Expansion CHIP" }, + { + "contents": "Medicaid Expansion CHIP" + }, { "lookupChipEnrollments": { "ffy": 2022, @@ -11730,7 +13664,9 @@ } ], [ - { "contents": "Separate CHIP" }, + { + "contents": "Separate CHIP" + }, { "lookupChipEnrollments": { "ffy": 2022, @@ -11754,14 +13690,18 @@ ] ], "headers": [ - { "contents": "Program" }, + { + "contents": "Program" + }, { "contents": "Number of children enrolled in FFY 2021" }, { "contents": "Number of children enrolled in FFY 2022" }, - { "contents": "Percent change" } + { + "contents": "Percent change" + } ] }, "fieldset_type": "synthesized_table", @@ -11799,7 +13739,9 @@ "id": "2022-02-a-01-01", "label": "If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "id": "2022-02-a-01", @@ -11816,7 +13758,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2013" }, + { + "contents": "2013" + }, { "lookupAcs": { "ffy": "2013", @@ -11843,7 +13787,9 @@ } ], [ - { "contents": "2014" }, + { + "contents": "2014" + }, { "lookupAcs": { "ffy": "2014", @@ -11870,7 +13816,9 @@ } ], [ - { "contents": "2015" }, + { + "contents": "2015" + }, { "lookupAcs": { "ffy": "2015", @@ -11897,7 +13845,9 @@ } ], [ - { "contents": "2016" }, + { + "contents": "2016" + }, { "lookupAcs": { "ffy": "2016", @@ -11924,7 +13874,9 @@ } ], [ - { "contents": "2017" }, + { + "contents": "2017" + }, { "lookupAcs": { "ffy": "2017", @@ -11951,7 +13903,9 @@ } ], [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -11978,7 +13932,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -12005,7 +13961,9 @@ } ], [ - { "contents": "2020" }, + { + "contents": "2020" + }, { "lookupAcs": { "ffy": "2020", @@ -12032,7 +13990,9 @@ } ], [ - { "contents": "2021" }, + { + "contents": "2021" + }, { "lookupAcs": { "ffy": "2021", @@ -12060,13 +14020,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "label": "", @@ -12088,7 +14056,9 @@ ] ], "headers": [ - { "contents": "Percent change between 2019 and 2021" } + { + "contents": "Percent change between 2019 and 2021" + } ] }, "fieldset_type": "synthesized_table", @@ -12126,7 +14096,9 @@ "id": "2022-02-a-02-01", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [ @@ -12147,7 +14119,9 @@ "id": "2022-02-a-02-02-a", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-02-a-02-02", @@ -12155,8 +14129,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12170,7 +14150,9 @@ "id": "2022-02-a-02-03-a", "label": "What is the alternate data source or methodology?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-b", @@ -12185,37 +14167,49 @@ "id": "2022-02-a-02-03-c", "label": "Define the population you’re measuring, including ages and federal poverty levels.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-d", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-e", "label": "Why did your state choose to adopt this alternate data source?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-f", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-g", "label": "What are the limitations of this alternate data source or methodology?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-h", "label": "How do you use this alternate data source in CHIP program planning?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12238,8 +14232,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12248,13 +14248,17 @@ "id": "2022-02-a-02-04", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-02-a-02-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-02-a-02", @@ -12308,7 +14312,9 @@ "id": "2022-03-a-01-01-a", "label": "What are you doing differently?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-a-01-01", @@ -12316,8 +14322,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12341,7 +14353,9 @@ "id": "2022-03-a-01-02-a", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-a-01-02", @@ -12349,8 +14363,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -12360,20 +14380,26 @@ "id": "2022-03-a-01-03", "label": "What methods have been most effective in reaching low-income, uninsured children?", "type": "text_multiline", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: TV, school outreach, or word of mouth." }, { "id": "2022-03-a-01-04", "label": "Is there anything else you’d like to add about your outreach efforts?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-a-01-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-a-01" @@ -12407,7 +14433,9 @@ "id": "2022-03-b-01-01-a", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-b-01-01", @@ -12415,9 +14443,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12441,7 +14478,9 @@ "id": "2022-03-b-01-02-a", "label": "Which database do you use?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-b-01-02", @@ -12449,9 +14488,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12460,7 +14508,9 @@ "id": "2022-03-b-01-03", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", "type": "percentage", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "type": "fieldset", @@ -12474,7 +14524,9 @@ "id": "2022-03-b-01-04-a", "label": "How long is the waiting period?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12508,7 +14560,9 @@ "id": "2022-03-b-01-04-b", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -12527,7 +14581,9 @@ "id": "2022-03-b-01-04-c", "label": "What exemptions apply to the waiting period?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -12546,7 +14602,9 @@ "id": "2022-03-b-01-04-d", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12561,9 +14619,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12574,13 +14641,17 @@ "id": "2022-03-b-01-05", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-b-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-b-01" @@ -12604,13 +14675,17 @@ "id": "2022-03-c-01-01-a", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", "type": "percentage", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-01-01-b", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", "type": "percentage", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12633,9 +14708,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12646,8 +14730,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12661,13 +14751,17 @@ "id": "2022-03-c-01-03-a", "label": "How many notices do you send to families before disenrolling a child from the program?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-01-03-b", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12690,8 +14784,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12700,25 +14800,33 @@ "id": "2022-03-c-01-04", "label": "What else have you done to simplify the eligibility renewal process for families?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-c-01-05", "label": "Which retention strategies have you found to be most effective?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-c-01-06", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-c-01-07", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "id": "2022-03-c-01", @@ -12731,14 +14839,18 @@ "id": "2022-03-c-02-01", "label": "How many applicants were denied CHIP coverage in FFY 2022?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "Don’t include applicants being considered for redetermination — these data will be collected in Part 3." }, { "id": "2022-03-c-02-02", "label": "How many applicants were denied CHIP coverage for procedural reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee." }, { @@ -12747,33 +14859,43 @@ "id": "2022-03-c-02-03-a", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-03-c-02-03", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available." }, { "id": "2022-03-c-02-04", "label": "How many applicants were denied CHIP coverage for other reasons?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-c-02-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-01')].answer.entry" @@ -12788,7 +14910,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-02')].answer.entry" @@ -12803,7 +14927,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-03')].answer.entry" @@ -12818,7 +14944,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-04')].answer.entry" @@ -12834,9 +14962,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "label": "Table: CHIP Eligibility Denials (Not Redetermination)", @@ -12855,19 +14989,25 @@ "id": "2022-03-c-03-01", "label": "How many children were eligible for redetermination in CHIP in FFY 2022?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2022-03-c-03-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2022-03-c-03-03", "label": "How many children were retained in CHIP after redetermination?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "questions": [ @@ -12889,34 +15029,44 @@ "id": "2022-03-c-03-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { "entry": "8" }, + "answer": { + "entry": "8" + }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-03-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { "entry": "8" }, + "answer": { + "entry": "8" + }, "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage." }, { "id": "2022-03-c-03-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } } ], "id": "2022-03-c-03-04", "label": "How many children were disenrolled in CHIP after the redetermination process?", "type": "integer", - "answer": { "entry": "8" }, + "answer": { + "entry": "8" + }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-03-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], @@ -12975,9 +15125,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "label": "Table: Redetermination in CHIP ", @@ -13059,9 +15215,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -13081,19 +15243,25 @@ "id": "2022-03-c-04-01", "label": "How many children were eligible for redetermination in Medicaid in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-c-04-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-c-04-03", "label": "How many children were retained in Medicaid after redetermination?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13115,34 +15283,44 @@ "id": "2022-03-c-04-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-04-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead." }, { "id": "2022-03-c-04-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-03-c-04-04", "label": "How many children were disenrolled in Medicaid after the redetermination process?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-04-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], @@ -13201,9 +15379,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "label": "Table: Redetermination in Medicaid ", @@ -13285,9 +15469,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -13333,8 +15523,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -13363,7 +15559,9 @@ "id": "2022-03-c-05-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13386,25 +15584,33 @@ "id": "2022-03-c-05-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13423,7 +15629,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-03" }, + "fieldset_info": { + "id": "2022-03-c-05-03" + }, "label": "How many children were newly enrolled in CHIP between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -13451,7 +15659,9 @@ "id": "2022-03-c-05-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13474,25 +15684,33 @@ "id": "2022-03-c-05-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13511,7 +15729,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-04" }, + "fieldset_info": { + "id": "2022-03-c-05-04" + }, "label": "How many children were continuously enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -13535,7 +15755,9 @@ "id": "2022-03-c-05-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13558,25 +15780,33 @@ "id": "2022-03-c-05-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13595,7 +15825,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-05" }, + "fieldset_info": { + "id": "2022-03-c-05-05" + }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -13618,7 +15850,9 @@ "id": "2022-03-c-05-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13641,25 +15875,33 @@ "id": "2022-03-c-05-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13678,7 +15920,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-06" }, + "fieldset_info": { + "id": "2022-03-c-05-06" + }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -13701,7 +15945,9 @@ "id": "2022-03-c-05-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13724,25 +15970,33 @@ "id": "2022-03-c-05-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13761,7 +16015,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-07" }, + "fieldset_info": { + "id": "2022-03-c-05-07" + }, "label": "How many children were no longer enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -13785,7 +16041,9 @@ "id": "2022-03-c-05-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13808,25 +16066,33 @@ "id": "2022-03-c-05-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13845,7 +16111,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-08" }, + "fieldset_info": { + "id": "2022-03-c-05-08" + }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -13854,7 +16122,9 @@ "id": "2022-03-c-05-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [], @@ -13880,7 +16150,10 @@ "id": "2022-03-c-05-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -13903,25 +16176,37 @@ "id": "2022-03-c-05-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -13940,7 +16225,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-10" }, + "fieldset_info": { + "id": "2022-03-c-05-10" + }, "label": "How many children were continuously enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -13964,7 +16251,10 @@ "id": "2022-03-c-05-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -13987,25 +16277,37 @@ "id": "2022-03-c-05-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14024,7 +16326,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-11" }, + "fieldset_info": { + "id": "2022-03-c-05-11" + }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14047,7 +16351,10 @@ "id": "2022-03-c-05-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14070,25 +16377,37 @@ "id": "2022-03-c-05-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14107,7 +16426,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-12" }, + "fieldset_info": { + "id": "2022-03-c-05-12" + }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -14130,7 +16451,10 @@ "id": "2022-03-c-05-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14153,25 +16477,37 @@ "id": "2022-03-c-05-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14190,7 +16526,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-13" }, + "fieldset_info": { + "id": "2022-03-c-05-13" + }, "label": "How many children were no longer enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14214,7 +16552,10 @@ "id": "2022-03-c-05-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14237,25 +16578,37 @@ "id": "2022-03-c-05-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14274,7 +16627,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-14" }, + "fieldset_info": { + "id": "2022-03-c-05-14" + }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14303,7 +16658,10 @@ "id": "2022-03-c-05-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14326,25 +16684,37 @@ "id": "2022-03-c-05-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14363,7 +16733,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-15" }, + "fieldset_info": { + "id": "2022-03-c-05-15" + }, "label": "How many children were continuously enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14387,7 +16759,10 @@ "id": "2022-03-c-05-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14410,25 +16785,37 @@ "id": "2022-03-c-05-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14447,7 +16834,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-16" }, + "fieldset_info": { + "id": "2022-03-c-05-16" + }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14470,7 +16859,10 @@ "id": "2022-03-c-05-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14493,25 +16885,37 @@ "id": "2022-03-c-05-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14530,7 +16934,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-17" }, + "fieldset_info": { + "id": "2022-03-c-05-17" + }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -14553,7 +16959,10 @@ "id": "2022-03-c-05-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14576,25 +16985,37 @@ "id": "2022-03-c-05-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14613,7 +17034,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-18" }, + "fieldset_info": { + "id": "2022-03-c-05-18" + }, "label": "How many children were no longer enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14637,7 +17060,10 @@ "id": "2022-03-c-05-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14660,25 +17086,37 @@ "id": "2022-03-c-05-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14697,7 +17135,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-19" }, + "fieldset_info": { + "id": "2022-03-c-05-19" + }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14706,7 +17146,9 @@ "id": "2022-03-c-05-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-03-c-05", @@ -14746,8 +17188,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -14776,7 +17224,9 @@ "id": "2022-03-c-06-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -14799,25 +17249,33 @@ "id": "2022-03-c-06-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -14836,7 +17294,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-03" }, + "fieldset_info": { + "id": "2022-03-c-06-03" + }, "label": "How many children were newly enrolled in Medicaid between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -14864,7 +17324,9 @@ "id": "2022-03-c-06-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -14887,25 +17349,33 @@ "id": "2022-03-c-06-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -14924,7 +17394,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-04" }, + "fieldset_info": { + "id": "2022-03-c-06-04" + }, "label": "How many children were continuously enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14948,7 +17420,9 @@ "id": "2022-03-c-06-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -14971,25 +17445,33 @@ "id": "2022-03-c-06-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15008,7 +17490,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-05" }, + "fieldset_info": { + "id": "2022-03-c-06-05" + }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15031,7 +17515,9 @@ "id": "2022-03-c-06-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -15054,25 +17540,33 @@ "id": "2022-03-c-06-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15091,7 +17585,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-06" }, + "fieldset_info": { + "id": "2022-03-c-06-06" + }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15114,7 +17610,9 @@ "id": "2022-03-c-06-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -15137,25 +17635,33 @@ "id": "2022-03-c-06-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15174,7 +17680,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-07" }, + "fieldset_info": { + "id": "2022-03-c-06-07" + }, "label": "How many children were no longer enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15198,7 +17706,9 @@ "id": "2022-03-c-06-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -15221,25 +17731,33 @@ "id": "2022-03-c-06-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15258,7 +17776,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-08" }, + "fieldset_info": { + "id": "2022-03-c-06-08" + }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15267,7 +17787,9 @@ "id": "2022-03-c-06-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], @@ -15293,7 +17815,10 @@ "id": "2022-03-c-06-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15316,25 +17841,37 @@ "id": "2022-03-c-06-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15353,7 +17890,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-10" }, + "fieldset_info": { + "id": "2022-03-c-06-10" + }, "label": "How many children were continuously enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15377,7 +17916,10 @@ "id": "2022-03-c-06-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15400,25 +17942,37 @@ "id": "2022-03-c-06-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15437,7 +17991,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-11" }, + "fieldset_info": { + "id": "2022-03-c-06-11" + }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15460,7 +18016,10 @@ "id": "2022-03-c-06-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15483,25 +18042,37 @@ "id": "2022-03-c-06-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15520,7 +18091,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-12" }, + "fieldset_info": { + "id": "2022-03-c-06-12" + }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15543,7 +18116,10 @@ "id": "2022-03-c-06-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15566,25 +18142,37 @@ "id": "2022-03-c-06-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15603,7 +18191,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-13" }, + "fieldset_info": { + "id": "2022-03-c-06-13" + }, "label": "How many children were no longer enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15627,7 +18217,10 @@ "id": "2022-03-c-06-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15650,25 +18243,37 @@ "id": "2022-03-c-06-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15687,7 +18292,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-14" }, + "fieldset_info": { + "id": "2022-03-c-06-14" + }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15716,7 +18323,10 @@ "id": "2022-03-c-06-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15739,25 +18349,37 @@ "id": "2022-03-c-06-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15776,7 +18398,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-15" }, + "fieldset_info": { + "id": "2022-03-c-06-15" + }, "label": "How many children were continuously enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15800,7 +18424,10 @@ "id": "2022-03-c-06-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15823,25 +18450,37 @@ "id": "2022-03-c-06-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15860,7 +18499,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-16" }, + "fieldset_info": { + "id": "2022-03-c-06-16" + }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15883,7 +18524,10 @@ "id": "2022-03-c-06-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15906,25 +18550,37 @@ "id": "2022-03-c-06-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15943,7 +18599,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-17" }, + "fieldset_info": { + "id": "2022-03-c-06-17" + }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15966,7 +18624,10 @@ "id": "2022-03-c-06-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15989,25 +18650,37 @@ "id": "2022-03-c-06-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -16026,7 +18699,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-18" }, + "fieldset_info": { + "id": "2022-03-c-06-18" + }, "label": "How many children were no longer enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16050,7 +18725,10 @@ "id": "2022-03-c-06-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -16073,25 +18751,37 @@ "id": "2022-03-c-06-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -16110,7 +18800,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-19" }, + "fieldset_info": { + "id": "2022-03-c-06-19" + }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16119,7 +18811,9 @@ "id": "2022-03-c-06-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "id": "2022-03-c-06", @@ -16143,8 +18837,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -16182,7 +18882,9 @@ "id": "2022-03-d-01-02-a", "label": "What information or tools do you provide families with so they can track cost sharing?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -16211,7 +18913,9 @@ "id": "2022-03-d-01-02-b", "label": "Who tracks cost sharing?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-d-01-02", @@ -16227,12 +18931,18 @@ "value": "health_plans", "label": "Health plans" }, - { "value": "states", "label": "States" }, + { + "value": "states", + "label": "States" + }, { "value": "third_party_administrator", "label": "Third party administrator" }, - { "value": "other", "label": "Other " } + { + "value": "other", + "label": "Other " + } ], "entry": "health_plans" } @@ -16241,13 +18951,17 @@ "id": "2022-03-d-01-03", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-d-01-04", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [ @@ -16268,7 +18982,9 @@ "id": "2022-03-d-01-05-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-d-01-05", @@ -16276,8 +18992,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16301,7 +19023,9 @@ "id": "2022-03-d-01-06-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-d-01-06", @@ -16309,8 +19033,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16335,19 +19065,25 @@ "id": "2022-03-d-01-07", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-d-01-08", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-d-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -16390,8 +19126,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16430,8 +19172,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -16440,7 +19188,9 @@ "id": "2022-03-e-02-03", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", "type": "text_multiline", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "This only applies to states operating an 1115 demo." }, { @@ -16449,8 +19199,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null }, @@ -16462,9 +19218,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": null }, @@ -16489,7 +19254,9 @@ "id": "2022-03-e-02-06-a", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-e-02-06", @@ -16497,8 +19264,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null }, @@ -16508,7 +19281,9 @@ "id": "2022-03-e-02-07", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2022?", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -16517,19 +19292,25 @@ "id": "2022-03-e-02-08", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-09", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-10", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -16559,9 +19340,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "label": "Child", @@ -16624,31 +19411,41 @@ "id": "2022-03-e-02-14", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-15", "label": "What challenges did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-16", "label": "What accomplishments did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -16684,8 +19481,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -16696,8 +19499,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16708,8 +19517,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16718,7 +19533,9 @@ "id": "2022-03-f-01-04", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [ @@ -16739,7 +19556,9 @@ "id": "2022-03-f-01-05-a", "label": "What safeguards and procedures do the Managed Care plans have in place?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-f-01-05", @@ -16747,9 +19566,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "na" } @@ -16758,13 +19586,17 @@ "id": "2022-03-f-01-06", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-07", "label": "How many cases have been found in favor of the beneficiary in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "type": "fieldset", @@ -16773,13 +19605,17 @@ "id": "2022-03-f-01-08", "label": "How many cases related to provider credentialing were investigated in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-09", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ] }, @@ -16790,13 +19626,17 @@ "id": "2022-03-f-01-10", "label": "How many cases related to provider billing were investigated in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-11", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ] }, @@ -16807,13 +19647,17 @@ "id": "2022-03-f-01-12", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-13", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ] }, @@ -16823,7 +19667,10 @@ "type": "radio", "answer": { "options": [ - { "value": "separate_chip_only", "label": "CHIP only" }, + { + "value": "separate_chip_only", + "label": "CHIP only" + }, { "value": "medicaid_separate_chip_combined", "label": "Medicaid and CHIP combined" @@ -16851,7 +19698,9 @@ "id": "2022-03-f-01-15-a", "label": "How do you provide oversight of the contractors? ", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-f-01-15", @@ -16859,8 +19708,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16884,7 +19739,9 @@ "id": "2022-03-f-01-16-a", "label": "What specifically are the contractors responsible for in terms of oversight?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-f-01-16", @@ -16892,8 +19749,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16902,13 +19765,17 @@ "id": "2022-03-f-01-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-f-01-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -16940,8 +19807,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -16965,7 +19838,9 @@ "id": "2022-03-g-01-02-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -16990,37 +19865,49 @@ "id": "2022-03-g-01-02-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17039,7 +19926,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-02" }, + "fieldset_info": { + "id": "2022-03-g-01-02" + }, "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17062,7 +19951,9 @@ "id": "2022-03-g-01-03-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -17087,37 +19978,49 @@ "id": "2022-03-g-01-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17136,7 +20039,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-03" }, + "fieldset_info": { + "id": "2022-03-g-01-03" + }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17165,7 +20070,9 @@ "id": "2022-03-g-01-04-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -17190,37 +20097,49 @@ "id": "2022-03-g-01-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17239,7 +20158,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-04" }, + "fieldset_info": { + "id": "2022-03-g-01-04" + }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one preventative dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17268,7 +20189,9 @@ "id": "2022-03-g-01-05-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -17293,37 +20216,49 @@ "id": "2022-03-g-01-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17342,7 +20277,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-05" }, + "fieldset_info": { + "id": "2022-03-g-01-05" + }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2022?", "fieldset_type": "marked", "type": "fieldset", @@ -17358,7 +20295,9 @@ "id": "2022-03-g-01-06", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [], @@ -17375,13 +20314,17 @@ "id": "2022-03-g-01-07-a", "label": "How many children were enrolled in supplemental dental coverage during FFY 2022?", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-07-b", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "type": "integer", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "This is the total number for all children between 0-18 years from question 1." }, { @@ -17415,7 +20358,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table", @@ -17442,8 +20387,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -17452,13 +20403,17 @@ "id": "2022-03-g-01-08", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-g-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17500,8 +20455,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -17512,8 +20473,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -17569,7 +20536,10 @@ "value": "Sample size was too small (fewer than 30)", "label": "Sample size was too small (fewer than 30)" }, - { "value": "other", "label": "Other" } + { + "value": "other", + "label": "Other" + } ], "entry": [ null, @@ -17582,7 +20552,9 @@ "id": "2022-03-h-02-02", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "context_data": { @@ -17621,8 +20593,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -17642,7 +20620,9 @@ "id": "2022-03-i-02-01-01-01", "label": "What is the name of your HSI program?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-i-02-01-01-02", @@ -17650,8 +20630,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -17691,7 +20677,9 @@ "id": "2022-03-i-02-01-01-03", "label": "Which populations does the HSI program serve?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17710,7 +20698,9 @@ "id": "2022-03-i-02-01-01-04", "label": "How many children do you estimate are being served by the HSI program?", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17729,7 +20719,9 @@ "id": "2022-03-i-02-01-01-05", "label": "How many children in the HSI program are below your state's FPL threshold? ", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [], @@ -17791,7 +20783,9 @@ "id": "2022-03-i-02-01-01-06", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17810,7 +20804,9 @@ "id": "2022-03-i-02-01-01-07", "label": "What outcomes have you found when measuring the impact?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17829,7 +20825,9 @@ "id": "2022-03-i-02-01-01-08", "label": "Is there anything else you'd like to add about this HSI program?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17848,7 +20846,9 @@ "id": "2022-03-i-02-01-01-09", "label": "Optional: Attach any additional documents.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-i-02-01-01" @@ -17933,7 +20933,9 @@ "id": "2022-04-a-01-01-01-02-01-01", "label": "Briefly describe your goal.", "type": "text_multiline", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program." }, { @@ -17962,7 +20964,9 @@ "id": "2022-04-a-01-01-01-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-01-02-01-02", @@ -17994,14 +20998,18 @@ "id": "2022-04-a-01-01-01-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the numerator you're measuring" @@ -18013,14 +21021,18 @@ "id": "2022-04-a-01-01-01-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the denominator you're measuring" @@ -18072,25 +21084,33 @@ "id": "2022-04-a-01-01-01-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-01-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-01-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-01-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18111,7 +21131,9 @@ "id": "2022-04-a-01-01-02-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": "Increase access to care" }, + "answer": { + "entry": "Increase access to care" + }, "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan." }, { @@ -18123,7 +21145,9 @@ "id": "2022-04-a-01-01-02-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: In an effort to increase access to care for underserved populations, our goal is to increase the number of children of Hispanic ethnicity who have visited a primary care physician by 5% annually over the next five years (ending in 2028)." }, { @@ -18152,7 +21176,9 @@ "id": "2022-04-a-01-01-02-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-02-02-01-02", @@ -18184,14 +21210,18 @@ "id": "2022-04-a-01-01-02-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the numerator you're measuring" @@ -18203,14 +21233,18 @@ "id": "2022-04-a-01-01-02-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The total number of children of Hispanic ethnicity enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the denominator you're measuring" @@ -18262,25 +21296,33 @@ "id": "2022-04-a-01-01-02-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-02-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-02-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-02-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18315,7 +21357,9 @@ "id": "2022-04-a-01-01-03-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state." }, { @@ -18344,7 +21388,9 @@ "id": "2022-04-a-01-01-03-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-03-02-01-02", @@ -18376,14 +21422,18 @@ "id": "2022-04-a-01-01-03-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year." }, { "id": "2022-04-a-01-01-03-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18395,14 +21445,18 @@ "id": "2022-04-a-01-01-03-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: The total number of rural children enrolled in CHIP." }, { "id": "2022-04-a-01-01-03-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -18454,25 +21508,33 @@ "id": "2022-04-a-01-01-03-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-03-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-03-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-03-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18493,7 +21555,9 @@ "id": "2022-04-a-01-01-04-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18504,7 +21568,9 @@ "id": "2022-04-a-01-01-04-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18532,7 +21598,9 @@ "id": "2022-04-a-01-01-04-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-04-02-01-02", @@ -18564,13 +21632,17 @@ "id": "2022-04-a-01-01-04-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18582,13 +21654,17 @@ "id": "2022-04-a-01-01-04-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -18640,25 +21716,33 @@ "id": "2022-04-a-01-01-04-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18679,7 +21763,9 @@ "id": "2022-04-a-01-01-05-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18690,7 +21776,9 @@ "id": "2022-04-a-01-01-05-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18718,7 +21806,9 @@ "id": "2022-04-a-01-01-05-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-05-02-01-02", @@ -18750,13 +21840,17 @@ "id": "2022-04-a-01-01-05-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18768,13 +21862,17 @@ "id": "2022-04-a-01-01-05-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -18826,25 +21924,33 @@ "id": "2022-04-a-01-01-05-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18865,7 +21971,9 @@ "id": "2022-04-a-01-01-06-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18876,7 +21984,9 @@ "id": "2022-04-a-01-01-06-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18904,7 +22014,9 @@ "id": "2022-04-a-01-01-06-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-06-02-01-02", @@ -18936,13 +22048,17 @@ "id": "2022-04-a-01-01-06-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18954,14 +22070,18 @@ "id": "2022-04-a-01-01-06-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: The total number of eligible children in the last federal fiscal year." }, { "id": "2022-04-a-01-01-06-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -19013,25 +22133,33 @@ "id": "2022-04-a-01-01-06-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -19060,25 +22188,33 @@ "id": "2022-04-a-02-01", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-02-02", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-02-03", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care equity, special health care needs, or other emerging health care needs.) What have you discovered through this research?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-02-04", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: studies, analyses, or any other documents that address your performance goals." } ], @@ -19130,25 +22266,33 @@ "id": "2022-05-a-01-01-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-01-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-01-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-01" }, + "fieldset_info": { + "id": "2022-05-a-01-01" + }, "label": "How much did you spend on Managed Care in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19163,25 +22307,33 @@ "id": "2022-05-a-01-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-02-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-02" }, + "fieldset_info": { + "id": "2022-05-a-01-02" + }, "label": "How much did you spend on Fee for Service in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19196,25 +22348,33 @@ "id": "2022-05-a-01-03-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-03-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-03-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-03" }, + "fieldset_info": { + "id": "2022-05-a-01-03" + }, "label": "How much did you spend on anything else related to benefit costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19229,25 +22389,33 @@ "id": "2022-05-a-01-04-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-04-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-04-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-04" }, + "fieldset_info": { + "id": "2022-05-a-01-04" + }, "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19257,7 +22425,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -19278,7 +22448,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -19299,7 +22471,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -19343,7 +22517,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["sum"], "targets": [ @@ -19374,10 +22550,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "label": "Table 1: Benefits Costs", @@ -19402,25 +22586,33 @@ "id": "2022-05-a-02-01-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-01-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-01-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-01" }, + "fieldset_info": { + "id": "2022-05-a-02-01" + }, "label": "How much did you spend on personnel in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -19436,25 +22628,33 @@ "id": "2022-05-a-02-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-02-b", "label": "2023", "type": "money", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } }, { "id": "2022-05-a-02-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-02" }, + "fieldset_info": { + "id": "2022-05-a-02-02" + }, "label": "How much did you spend on general administration in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19469,25 +22669,33 @@ "id": "2022-05-a-02-03-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-03-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-03-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-03" }, + "fieldset_info": { + "id": "2022-05-a-02-03" + }, "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19502,25 +22710,33 @@ "id": "2022-05-a-02-04-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-04-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-04-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-04" }, + "fieldset_info": { + "id": "2022-05-a-02-04" + }, "label": "How much did you spend on claims processing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19535,25 +22751,33 @@ "id": "2022-05-a-02-05-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-05-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-05-c", "label": "2024", "type": "money", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-05" }, + "fieldset_info": { + "id": "2022-05-a-02-05" + }, "label": "How much did you spend on outreach and marketing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19568,25 +22792,33 @@ "id": "2022-05-a-02-06-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-06-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-06-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-06" }, + "fieldset_info": { + "id": "2022-05-a-02-06" + }, "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19601,25 +22833,33 @@ "id": "2022-05-a-02-07-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-07-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-07-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-07" }, + "fieldset_info": { + "id": "2022-05-a-02-07" + }, "label": "How much did you spend on anything else related to administrative costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19629,7 +22869,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -19650,7 +22892,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -19671,7 +22915,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -19692,7 +22938,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -19713,7 +22961,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -19734,7 +22984,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -19755,7 +23007,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -19776,7 +23030,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -19815,7 +23071,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "formula": "(<0> + <1> + <2> - <3>) / 9", "$comment": "This should equal the total benefit cost calculated above, then divided by 9", @@ -19852,10 +23110,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "label": "Table 2: Administrative Costs", @@ -19868,7 +23134,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", "$comment": "Total benefit costs 2022 + total admin costs 2022", @@ -19925,31 +23193,49 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2022" }], + "targets": [ + { + "lookupFmapFy": "2022" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2023" }], + "targets": [ + { + "lookupFmapFy": "2023" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2024" }], + "targets": [ + { + "lookupFmapFy": "2024" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -19968,7 +23254,9 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -19987,7 +23275,9 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -20003,7 +23293,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", "$comment": "Total program costs - federal share", @@ -20020,7 +23312,9 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -20050,7 +23344,9 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -20080,7 +23376,9 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -20097,10 +23395,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "label": "Table 3: Federal and State Shares", @@ -20127,7 +23433,9 @@ "id": "2022-05-a-02-08-a", "label": "What other type of funding did you receive?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-05-a-02-08", @@ -20159,7 +23467,10 @@ "value": "tobacco settlement", "label": "Tobacco settlement" }, - { "value": "other", "label": "Other" } + { + "value": "other", + "label": "Other" + } ], "entry": [null, "state appropriations"] }, @@ -20184,7 +23495,9 @@ "id": "2022-05-a-02-09-a", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-05-a-02-09", @@ -20192,8 +23505,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -20215,25 +23534,33 @@ "id": "2022-05-a-03-01-a", "label": "2022", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-01-b", "label": "2023", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-01-c", "label": "2024", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-03-01" }, + "fieldset_info": { + "id": "2022-05-a-03-01" + }, "label": "How many children were eligible for managed care in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -20248,25 +23575,33 @@ "id": "2022-05-a-03-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-02-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-03-02" }, + "fieldset_info": { + "id": "2022-05-a-03-02" + }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -20277,7 +23612,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -20298,7 +23635,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -20320,10 +23659,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "fieldset_type": "synthesized_table", @@ -20347,25 +23694,33 @@ "id": "2022-05-a-04-01-a", "label": "2022", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-01-b", "label": "2023", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-01-c", "label": "2024", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-04-01" }, + "fieldset_info": { + "id": "2022-05-a-04-01" + }, "label": "How many children were eligible for fee for service in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -20380,25 +23735,33 @@ "id": "2022-05-a-04-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-02-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-04-02" }, + "fieldset_info": { + "id": "2022-05-a-04-02" + }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee for service in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -20409,7 +23772,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -20430,7 +23795,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -20452,10 +23819,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "fieldset_type": "synthesized_table", @@ -20474,13 +23849,17 @@ "id": "2022-05-a-05-01", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-05-02", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-05-a-05" @@ -20519,37 +23898,49 @@ "id": "2022-06-a-01-01", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-02", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2022?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-03", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2022?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-04", "label": "What changes have you made to your CHIP program in FFY 2022 or plan to make in FFY 2023? Why have you decided to make these changes?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-05", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-06-a-01" @@ -20638,19 +24029,25 @@ "id": "2021-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { "entry": "Tester" } + "answer": { + "entry": "Tester" + } }, { "id": "2021-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { "entry": "Director" } + "answer": { + "entry": "Director" + } }, { "id": "2021-00-a-01-06", "type": "email", "label": "Email:", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2021-00-a-01-07", @@ -20665,7 +24062,9 @@ "id": "2021-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { "entry": "123-456-7890" } + "answer": { + "entry": "123-456-7890" + } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -20714,8 +24113,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20723,7 +24128,9 @@ "id": "2021-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20747,8 +24154,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20762,8 +24175,14 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -20800,7 +24219,9 @@ "id": "2021-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20840,8 +24261,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20879,7 +24306,9 @@ "id": "2021-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20900,7 +24329,9 @@ "id": "2021-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } }, { "id": "2021-01-a-01-05", @@ -20910,12 +24341,18 @@ "answer": { "entry": [null, "pccm"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -20923,7 +24360,9 @@ "id": "2021-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -20946,8 +24385,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20955,7 +24400,9 @@ "id": "2021-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20979,8 +24426,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20994,8 +24447,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -21037,7 +24496,9 @@ "id": "2021-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -21077,8 +24538,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -21121,7 +24588,9 @@ "id": "2021-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { "entry": "312" }, + "answer": { + "entry": "312" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -21154,12 +24623,18 @@ "answer": { "entry": [null, "ffs"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -21167,7 +24642,9 @@ "id": "2021-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -21188,9 +24665,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21204,9 +24690,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21221,9 +24716,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21238,9 +24742,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21254,9 +24767,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21271,12 +24793,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2021-01-a-03-07", @@ -21286,12 +24819,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2021-01-a-03-08", @@ -21301,12 +24845,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2021-01-a-03-09", @@ -21316,9 +24871,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21332,9 +24896,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21349,9 +24922,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21366,12 +24948,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2021-01-a-03-13", @@ -21380,9 +24973,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21396,9 +24998,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21412,9 +25023,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21428,12 +25048,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -21453,9 +25084,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] } } @@ -21514,9 +25154,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21530,9 +25179,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21547,9 +25205,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21564,9 +25231,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21580,9 +25256,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21597,12 +25282,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2021-01-a-04-07", @@ -21612,12 +25308,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2021-01-a-04-08", @@ -21627,12 +25334,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2021-01-a-04-09", @@ -21642,12 +25360,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Crowd-out policies" } + "context_data": { + "bullet_text": "Crowd-out policies" + } }, { "id": "2021-01-a-04-10", @@ -21656,9 +25385,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21672,9 +25410,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21689,9 +25436,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21706,12 +25462,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2021-01-a-04-14", @@ -21720,9 +25487,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21737,9 +25513,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21754,9 +25539,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21770,9 +25564,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21786,9 +25589,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21802,12 +25614,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -21827,8 +25650,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -21956,7 +25785,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2015" }, + { + "contents": "2015" + }, { "lookupAcs": { "ffy": "2015", @@ -21983,7 +25814,9 @@ } ], [ - { "contents": "2016" }, + { + "contents": "2016" + }, { "lookupAcs": { "ffy": "2016", @@ -22010,7 +25843,9 @@ } ], [ - { "contents": "2017" }, + { + "contents": "2017" + }, { "lookupAcs": { "ffy": "2017", @@ -22037,7 +25872,9 @@ } ], [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -22064,7 +25901,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -22092,13 +25931,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "fieldset_type": "synthesized_table" @@ -22119,7 +25966,9 @@ ] ], "headers": [ - { "contents": "Percent change between 2018 and 2019" } + { + "contents": "Percent change between 2018 and 2019" + } ] }, "fieldset_type": "synthesized_table" @@ -22139,8 +25988,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22148,7 +26003,9 @@ "id": "2021-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22172,8 +26029,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22184,7 +26047,9 @@ "id": "2021-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-b", @@ -22199,37 +26064,49 @@ "id": "2021-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -22252,13 +26129,17 @@ "id": "2021-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -22298,8 +26179,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22334,8 +26221,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22343,7 +26236,9 @@ "id": "2021-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22373,13 +26268,17 @@ "id": "2021-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -22402,9 +26301,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22412,7 +26320,9 @@ "id": "2021-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22436,9 +26346,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22446,7 +26365,9 @@ "id": "2021-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { "entry": "BCBS of AL enrollment database" }, + "answer": { + "entry": "BCBS of AL enrollment database" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22467,7 +26388,9 @@ "id": "2021-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { "entry": "4.11" } + "answer": { + "entry": "4.11" + } }, { "type": "fieldset", @@ -22479,9 +26402,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22492,7 +26424,9 @@ "id": "2021-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -22513,7 +26447,9 @@ "id": "2021-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22532,7 +26468,9 @@ "id": "2021-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22551,7 +26489,9 @@ "id": "2021-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22581,13 +26521,17 @@ "id": "2021-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } }, { "id": "2021-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -22612,9 +26556,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22625,13 +26578,17 @@ "id": "2021-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -22657,8 +26614,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -22669,8 +26632,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22681,7 +26650,9 @@ "id": "2021-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-c-01-03-b", @@ -22736,7 +26707,9 @@ "id": "2021-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } } ] }, @@ -22750,27 +26723,35 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { "entry": "4283" } + "answer": { + "entry": "4283" + } }, { "id": "2021-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { "entry": "500" } + "answer": { + "entry": "500" + } }, { "id": "2021-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { "entry": "3484" }, + "answer": { + "entry": "3484" + }, "questions": [ { "id": "2021-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { "entry": "299" } + "answer": { + "entry": "299" + } } ] }, @@ -22778,7 +26759,9 @@ "id": "2021-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2021-03-c-02-05", @@ -22796,7 +26779,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-01')].answer.entry" @@ -22811,7 +26796,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-02')].answer.entry" @@ -22826,7 +26813,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-03')].answer.entry" @@ -22841,7 +26830,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-04')].answer.entry" @@ -22857,9 +26848,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -22876,26 +26873,34 @@ "id": "2021-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { "entry": "145390" } + "answer": { + "entry": "145390" + } }, { "id": "2021-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "131011" } + "answer": { + "entry": "131011" + } }, { "id": "2021-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { "entry": "113009" } + "answer": { + "entry": "113009" + } }, { "id": "2021-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { "entry": "17989" }, + "answer": { + "entry": "17989" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -22916,20 +26921,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "id": "2021-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "15242" } + "answer": { + "entry": "15242" + } }, { "id": "2021-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "854" } + "answer": { + "entry": "854" + } } ] }, @@ -22937,7 +26948,9 @@ "id": "2021-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -22999,9 +27012,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23083,9 +27102,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23102,26 +27127,34 @@ "id": "2021-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { "entry": "463373" } + "answer": { + "entry": "463373" + } }, { "id": "2021-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "438232" } + "answer": { + "entry": "438232" + } }, { "id": "2021-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { "entry": "413500" } + "answer": { + "entry": "413500" + } }, { "id": "2021-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { "entry": "24718" }, + "answer": { + "entry": "24718" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -23142,20 +27175,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "559" } + "answer": { + "entry": "559" + } }, { "id": "2021-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "23489" } + "answer": { + "entry": "23489" + } }, { "id": "2021-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "670" } + "answer": { + "entry": "670" + } } ] }, @@ -23163,7 +27202,9 @@ "id": "2021-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -23225,9 +27266,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23309,9 +27356,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23356,8 +27409,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -23374,7 +27433,9 @@ "id": "2021-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23410,25 +27471,33 @@ "id": "2021-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "919" } + "answer": { + "entry": "919" + } }, { "id": "2021-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "2265" } + "answer": { + "entry": "2265" + } }, { "id": "2021-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5710" } + "answer": { + "entry": "5710" + } }, { "id": "2021-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4958" } + "answer": { + "entry": "4958" + } } ], "context_data": { @@ -23446,7 +27515,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-03" }, + "fieldset_info": { + "id": "2021-03-c-05-03" + }, "fieldset_type": "marked" }, { @@ -23463,7 +27534,9 @@ "id": "2021-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23499,25 +27572,33 @@ "id": "2021-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "909" } + "answer": { + "entry": "909" + } }, { "id": "2021-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "22213" } + "answer": { + "entry": "22213" + } }, { "id": "2021-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5451" } + "answer": { + "entry": "5451" + } }, { "id": "2021-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4445" } + "answer": { + "entry": "4445" + } } ], "context_data": { @@ -23535,7 +27616,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-04" }, + "fieldset_info": { + "id": "2021-03-c-05-04" + }, "fieldset_type": "marked" }, { @@ -23546,7 +27629,9 @@ "id": "2021-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23582,25 +27667,33 @@ "id": "2021-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -23618,7 +27711,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-05" }, + "fieldset_info": { + "id": "2021-03-c-05-05" + }, "fieldset_type": "marked" }, { @@ -23629,7 +27724,9 @@ "id": "2021-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23665,25 +27762,33 @@ "id": "2021-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -23701,7 +27806,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-06" }, + "fieldset_info": { + "id": "2021-03-c-05-06" + }, "fieldset_type": "marked" }, { @@ -23713,7 +27820,9 @@ "id": "2021-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23749,25 +27858,33 @@ "id": "2021-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "10" } + "answer": { + "entry": "10" + } }, { "id": "2021-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "44" } + "answer": { + "entry": "44" + } }, { "id": "2021-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "257" } + "answer": { + "entry": "257" + } }, { "id": "2021-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "510" } + "answer": { + "entry": "510" + } } ], "context_data": { @@ -23785,7 +27902,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-07" }, + "fieldset_info": { + "id": "2021-03-c-05-07" + }, "fieldset_type": "marked" }, { @@ -23796,7 +27915,9 @@ "id": "2021-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23832,25 +27953,33 @@ "id": "2021-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "145" } + "answer": { + "entry": "145" + } }, { "id": "2021-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "447" } + "answer": { + "entry": "447" + } } ], "context_data": { @@ -23868,14 +27997,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-08" }, + "fieldset_info": { + "id": "2021-03-c-05-08" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -23892,7 +28025,10 @@ "id": "2021-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23928,25 +28064,37 @@ "id": "2021-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -23964,7 +28112,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-10" }, + "fieldset_info": { + "id": "2021-03-c-05-10" + }, "fieldset_type": "marked" }, { @@ -23975,90 +28125,110 @@ "id": "2021-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["yes", null], - "noninteractive": ["yes", null] - } - } - } - } - }, - { - "type": "fieldset", - "questions": [ - { - "type": "fieldset", - "label": "Total for all ages (0-16)", - "questions": [], - "fieldset_info": { - "actions": ["sum"], - "targets": [ - "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-03-c-05-11-b", - "type": "integer", - "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } - }, - { - "id": "2021-03-c-05-11-c", - "type": "integer", - "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } - }, - { - "id": "2021-03-c-05-11-d", - "type": "integer", - "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } - }, - { - "id": "2021-03-c-05-11-e", - "type": "integer", - "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } - } - ], - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["no"], - "noninteractive": ["no", null] - } - } - } + "answer": { + "entry": null, + "readonly": true + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + } + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { + "entry": null, + "readonly": true + } + }, + { + "id": "2021-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { + "entry": null, + "readonly": true + } + }, + { + "id": "2021-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { + "entry": null, + "readonly": true + } + }, + { + "id": "2021-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { + "entry": null, + "readonly": true + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { + "id": "2021-03-c-05-11" + }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2021-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { + "entry": null, + "readonly": true }, - "fieldset_type": "datagrid" - } - ], - "fieldset_info": { "id": "2021-03-c-05-11" }, - "fieldset_type": "marked" - }, - { - "type": "fieldset", - "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", - "questions": [ - { - "id": "2021-03-c-05-12-a", - "type": "integer", - "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24094,25 +28264,37 @@ "id": "2021-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24130,7 +28312,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-12" }, + "fieldset_info": { + "id": "2021-03-c-05-12" + }, "fieldset_type": "marked" }, { @@ -24142,7 +28326,10 @@ "id": "2021-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24178,25 +28365,37 @@ "id": "2021-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24214,7 +28413,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-13" }, + "fieldset_info": { + "id": "2021-03-c-05-13" + }, "fieldset_type": "marked" }, { @@ -24225,7 +28426,10 @@ "id": "2021-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24261,25 +28465,37 @@ "id": "2021-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24297,7 +28513,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-14" }, + "fieldset_info": { + "id": "2021-03-c-05-14" + }, "fieldset_type": "marked" }, { @@ -24315,7 +28533,10 @@ "id": "2021-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24351,25 +28572,37 @@ "id": "2021-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24387,7 +28620,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-15" }, + "fieldset_info": { + "id": "2021-03-c-05-15" + }, "fieldset_type": "marked" }, { @@ -24398,7 +28633,10 @@ "id": "2021-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24434,25 +28672,37 @@ "id": "2021-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24470,7 +28720,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-16" }, + "fieldset_info": { + "id": "2021-03-c-05-16" + }, "fieldset_type": "marked" }, { @@ -24481,7 +28733,10 @@ "id": "2021-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24517,25 +28772,37 @@ "id": "2021-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24553,7 +28820,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-17" }, + "fieldset_info": { + "id": "2021-03-c-05-17" + }, "fieldset_type": "marked" }, { @@ -24565,7 +28834,10 @@ "id": "2021-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24601,25 +28873,37 @@ "id": "2021-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24637,7 +28921,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-18" }, + "fieldset_info": { + "id": "2021-03-c-05-18" + }, "fieldset_type": "marked" }, { @@ -24648,7 +28934,10 @@ "id": "2021-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24684,25 +28973,37 @@ "id": "2021-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24720,14 +29021,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-19" }, + "fieldset_info": { + "id": "2021-03-c-05-19" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -24769,8 +29074,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -24787,7 +29098,9 @@ "id": "2021-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24823,25 +29136,33 @@ "id": "2021-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "127630" } + "answer": { + "entry": "127630" + } }, { "id": "2021-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "7311" } + "answer": { + "entry": "7311" + } }, { "id": "2021-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9418" } + "answer": { + "entry": "9418" + } }, { "id": "2021-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4527" } + "answer": { + "entry": "4527" + } } ], "context_data": { @@ -24859,7 +29180,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-03" }, + "fieldset_info": { + "id": "2021-03-c-06-03" + }, "fieldset_type": "marked" }, { @@ -24876,7 +29199,9 @@ "id": "2021-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24912,25 +29237,33 @@ "id": "2021-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12237" } + "answer": { + "entry": "12237" + } }, { "id": "2021-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "70464" } + "answer": { + "entry": "70464" + } }, { "id": "2021-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9159" } + "answer": { + "entry": "9159" + } }, { "id": "2021-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3821" } + "answer": { + "entry": "3821" + } } ], "context_data": { @@ -24948,7 +29281,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-04" }, + "fieldset_info": { + "id": "2021-03-c-06-04" + }, "fieldset_type": "marked" }, { @@ -24959,7 +29294,9 @@ "id": "2021-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24995,25 +29332,33 @@ "id": "2021-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2021-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2021-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2021-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } } ], "context_data": { @@ -25031,7 +29376,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-05" }, + "fieldset_info": { + "id": "2021-03-c-06-05" + }, "fieldset_type": "marked" }, { @@ -25042,7 +29389,9 @@ "id": "2021-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25078,25 +29427,33 @@ "id": "2021-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2021-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2021-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2021-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "88" } + "answer": { + "entry": "88" + } } ], "context_data": { @@ -25114,7 +29471,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-06" }, + "fieldset_info": { + "id": "2021-03-c-06-06" + }, "fieldset_type": "marked" }, { @@ -25126,7 +29485,9 @@ "id": "2021-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25162,25 +29523,33 @@ "id": "2021-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "439" } + "answer": { + "entry": "439" + } }, { "id": "2021-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "229" } + "answer": { + "entry": "229" + } }, { "id": "2021-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "236" } + "answer": { + "entry": "236" + } }, { "id": "2021-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "698" } + "answer": { + "entry": "698" + } } ], "context_data": { @@ -25198,7 +29567,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-07" }, + "fieldset_info": { + "id": "2021-03-c-06-07" + }, "fieldset_type": "marked" }, { @@ -25209,7 +29580,9 @@ "id": "2021-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25245,25 +29618,33 @@ "id": "2021-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2021-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2021-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "46" } + "answer": { + "entry": "46" + } }, { "id": "2021-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } } ], "context_data": { @@ -25281,14 +29662,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-08" }, + "fieldset_info": { + "id": "2021-03-c-06-08" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "No. yes added more " } + "answer": { + "entry": "No. yes added more " + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -25305,7 +29690,10 @@ "id": "2021-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25341,25 +29729,37 @@ "id": "2021-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25377,7 +29777,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-10" }, + "fieldset_info": { + "id": "2021-03-c-06-10" + }, "fieldset_type": "marked" }, { @@ -25388,7 +29790,10 @@ "id": "2021-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25424,25 +29829,37 @@ "id": "2021-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25460,7 +29877,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-11" }, + "fieldset_info": { + "id": "2021-03-c-06-11" + }, "fieldset_type": "marked" }, { @@ -25471,7 +29890,10 @@ "id": "2021-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25507,25 +29929,37 @@ "id": "2021-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25543,7 +29977,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-12" }, + "fieldset_info": { + "id": "2021-03-c-06-12" + }, "fieldset_type": "marked" }, { @@ -25555,7 +29991,10 @@ "id": "2021-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25591,25 +30030,37 @@ "id": "2021-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25627,7 +30078,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-13" }, + "fieldset_info": { + "id": "2021-03-c-06-13" + }, "fieldset_type": "marked" }, { @@ -25638,7 +30091,10 @@ "id": "2021-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25674,25 +30130,37 @@ "id": "2021-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25710,7 +30178,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-14" }, + "fieldset_info": { + "id": "2021-03-c-06-14" + }, "fieldset_type": "marked" }, { @@ -25728,7 +30198,10 @@ "id": "2021-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25764,25 +30237,37 @@ "id": "2021-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25800,7 +30285,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-15" }, + "fieldset_info": { + "id": "2021-03-c-06-15" + }, "fieldset_type": "marked" }, { @@ -25811,7 +30298,10 @@ "id": "2021-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25847,25 +30337,37 @@ "id": "2021-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25883,7 +30385,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-16" }, + "fieldset_info": { + "id": "2021-03-c-06-16" + }, "fieldset_type": "marked" }, { @@ -25894,7 +30398,10 @@ "id": "2021-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25930,25 +30437,37 @@ "id": "2021-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25966,7 +30485,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-17" }, + "fieldset_info": { + "id": "2021-03-c-06-17" + }, "fieldset_type": "marked" }, { @@ -25978,7 +30499,10 @@ "id": "2021-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26014,25 +30538,37 @@ "id": "2021-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -26050,7 +30586,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-18" }, + "fieldset_info": { + "id": "2021-03-c-06-18" + }, "fieldset_type": "marked" }, { @@ -26061,7 +30599,10 @@ "id": "2021-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26097,25 +30638,37 @@ "id": "2021-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -26133,14 +30686,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-19" }, + "fieldset_info": { + "id": "2021-03-c-06-19" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -26163,8 +30720,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26186,12 +30749,18 @@ "label": "Health plans", "value": "health_plans" }, - { "label": "States", "value": "states" }, + { + "label": "States", + "value": "states" + }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { "label": "Other ", "value": "other" } + { + "label": "Other ", + "value": "other" + } ] }, "questions": [ @@ -26231,7 +30800,9 @@ "id": "2021-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26270,7 +30841,9 @@ "id": "2021-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-d-01-05", @@ -26279,8 +30852,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26288,7 +30867,9 @@ "id": "2021-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26312,8 +30893,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26321,7 +30908,9 @@ "id": "2021-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26366,13 +30955,17 @@ "id": "2021-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -26415,8 +31008,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -26456,8 +31055,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26466,7 +31071,9 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-04", @@ -26476,9 +31083,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -26490,9 +31106,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -26504,9 +31129,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -26514,7 +31148,9 @@ "id": "2021-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26535,7 +31171,9 @@ "id": "2021-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -26544,19 +31182,25 @@ "id": "2021-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -26589,9 +31233,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "fieldset_type": "synthesized_table" @@ -26651,31 +31301,41 @@ "id": "2021-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -26712,8 +31372,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26724,8 +31390,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26736,8 +31408,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26756,9 +31434,18 @@ "answer": { "entry": "na", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -26766,7 +31453,9 @@ "id": "2021-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26787,13 +31476,17 @@ "id": "2021-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "type": "fieldset", @@ -26802,13 +31495,17 @@ "id": "2021-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -26819,13 +31516,17 @@ "id": "2021-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { "entry": "19" } + "answer": { + "entry": "19" + } }, { "id": "2021-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -26836,13 +31537,17 @@ "id": "2021-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2021-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -26853,7 +31558,10 @@ "answer": { "entry": "separate_chip_only", "options": [ - { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "CHIP only", + "value": "separate_chip_only" + }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -26868,8 +31576,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26903,8 +31617,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26912,7 +31632,9 @@ "id": "2021-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26933,13 +31655,17 @@ "id": "2021-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "Only Separate CHIP reported." } + "answer": { + "entry": "Only Separate CHIP reported." + } }, { "id": "2021-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -26973,8 +31699,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26986,7 +31718,9 @@ "id": "2021-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27024,37 +31758,49 @@ "id": "2021-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "1915" } + "answer": { + "entry": "1915" + } }, { "id": "2021-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "8659" } + "answer": { + "entry": "8659" + } }, { "id": "2021-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "15546" } + "answer": { + "entry": "15546" + } }, { "id": "2021-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "21088" } + "answer": { + "entry": "21088" + } }, { "id": "2021-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "26998" } + "answer": { + "entry": "26998" + } }, { "id": "2021-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "19934" } + "answer": { + "entry": "19934" + } } ], "context_data": { @@ -27072,7 +31818,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-02" }, + "fieldset_info": { + "id": "2021-03-g-01-02" + }, "fieldset_type": "marked" }, { @@ -27083,7 +31831,9 @@ "id": "2021-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27121,37 +31871,49 @@ "id": "2021-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "24" } + "answer": { + "entry": "24" + } }, { "id": "2021-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "2238" } + "answer": { + "entry": "2238" + } }, { "id": "2021-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8868" } + "answer": { + "entry": "8868" + } }, { "id": "2021-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "14543" } + "answer": { + "entry": "14543" + } }, { "id": "2021-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "17462" } + "answer": { + "entry": "17462" + } }, { "id": "2021-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "11415" } + "answer": { + "entry": "11415" + } } ], "context_data": { @@ -27169,7 +31931,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-03" }, + "fieldset_info": { + "id": "2021-03-g-01-03" + }, "fieldset_type": "marked" }, { @@ -27186,7 +31950,9 @@ "id": "2021-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27224,37 +31990,49 @@ "id": "2021-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2021-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "1997" } + "answer": { + "entry": "1997" + } }, { "id": "2021-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8504" } + "answer": { + "entry": "8504" + } }, { "id": "2021-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "13966" } + "answer": { + "entry": "13966" + } }, { "id": "2021-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "16828" } + "answer": { + "entry": "16828" + } }, { "id": "2021-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "10639" } + "answer": { + "entry": "10639" + } } ], "context_data": { @@ -27272,7 +32050,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-04" }, + "fieldset_info": { + "id": "2021-03-g-01-04" + }, "fieldset_type": "marked" }, { @@ -27289,7 +32069,9 @@ "id": "2021-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27327,37 +32109,49 @@ "id": "2021-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12" } + "answer": { + "entry": "12" + } }, { "id": "2021-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "117" } + "answer": { + "entry": "117" + } }, { "id": "2021-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "2133" } + "answer": { + "entry": "2133" + } }, { "id": "2021-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "5991" } + "answer": { + "entry": "5991" + } }, { "id": "2021-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "5931" } + "answer": { + "entry": "5931" + } }, { "id": "2021-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "4883" } + "answer": { + "entry": "4883" + } } ], "context_data": { @@ -27375,7 +32169,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-05" }, + "fieldset_info": { + "id": "2021-03-g-01-05" + }, "fieldset_type": "marked" }, { @@ -27388,7 +32184,9 @@ "id": "2021-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -27403,8 +32201,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -27415,14 +32219,18 @@ "id": "2021-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -27456,7 +32264,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table" @@ -27482,13 +32292,17 @@ "id": "2021-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27515,8 +32329,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -27527,8 +32347,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -27560,7 +32386,9 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-h-02-02", @@ -27573,12 +32401,18 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { "label": "Separate CHIP", "value": "separate chip" }, + { + "label": "Separate CHIP", + "value": "separate chip" + }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27590,13 +32424,17 @@ "id": "2021-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27631,9 +32469,18 @@ "answer": { "entry": "5.0H", "options": [ - { "label": "CAHPS 5.0", "value": "5.0" }, - { "label": "CAHPS 5.0H", "value": "5.0H" }, - { "label": "Other", "value": "other" } + { + "label": "CAHPS 5.0", + "value": "5.0" + }, + { + "label": "CAHPS 5.0H", + "value": "5.0H" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27645,7 +32492,9 @@ "id": "2021-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27672,12 +32521,18 @@ "answer": { "entry": [null, "chronic"], "options": [ - { "label": "None", "value": "none" }, + { + "label": "None", + "value": "none" + }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27685,7 +32540,9 @@ "id": "2021-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27714,8 +32571,14 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { "label": "HRQ CAHPS", "value": "hrq cahps" }, - { "label": "Other", "value": "other" } + { + "label": "HRQ CAHPS", + "value": "hrq cahps" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27727,7 +32590,9 @@ "id": "2021-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27750,7 +32615,9 @@ "id": "2021-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } } ], "context_data": { @@ -27822,7 +32689,10 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -27830,7 +32700,9 @@ "id": "2021-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27868,8 +32740,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -27903,8 +32781,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -27951,7 +32835,9 @@ "id": "2021-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27970,7 +32856,9 @@ "id": "2021-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28095,7 +32983,9 @@ "id": "2021-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28226,7 +33116,9 @@ "id": "2021-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28267,7 +33159,9 @@ "id": "2021-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "30669" } + "answer": { + "entry": "30669" + } } ] }, @@ -28288,7 +33182,9 @@ "id": "2021-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1127906" } + "answer": { + "entry": "1127906" + } } ] }, @@ -28355,14 +33251,18 @@ "id": "2021-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -28406,7 +33306,9 @@ "id": "2021-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28447,7 +33349,9 @@ "id": "2021-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "13922" } + "answer": { + "entry": "13922" + } } ] }, @@ -28468,7 +33372,9 @@ "id": "2021-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "359680" } + "answer": { + "entry": "359680" + } } ] }, @@ -28535,14 +33441,18 @@ "id": "2021-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -28586,7 +33496,9 @@ "id": "2021-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28627,7 +33539,9 @@ "id": "2021-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "16747" } + "answer": { + "entry": "16747" + } } ] }, @@ -28648,7 +33562,9 @@ "id": "2021-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "351278" } + "answer": { + "entry": "351278" + } } ] }, @@ -28715,14 +33631,18 @@ "id": "2021-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -28740,7 +33660,9 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": "Increase Access to Care" } + "answer": { + "entry": "Increase Access to Care" + } }, { "id": "2021-04-a-01-01-02-02", @@ -28786,7 +33708,9 @@ "id": "2021-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28827,7 +33751,9 @@ "id": "2021-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "78593" } + "answer": { + "entry": "78593" + } } ] }, @@ -28848,7 +33774,9 @@ "id": "2021-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "78908" } + "answer": { + "entry": "78908" + } } ] }, @@ -28915,14 +33843,18 @@ "id": "2021-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -28966,7 +33898,9 @@ "id": "2021-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29007,7 +33941,9 @@ "id": "2021-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "1329" } + "answer": { + "entry": "1329" + } } ] }, @@ -29028,7 +33964,9 @@ "id": "2021-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1338" } + "answer": { + "entry": "1338" + } } ] }, @@ -29095,14 +34033,18 @@ "id": "2021-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -29146,7 +34088,9 @@ "id": "2021-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29187,7 +34131,9 @@ "id": "2021-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "10464" } + "answer": { + "entry": "10464" + } } ] }, @@ -29208,7 +34154,9 @@ "id": "2021-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "10776" } + "answer": { + "entry": "10776" + } } ] }, @@ -29275,14 +34223,18 @@ "id": "2021-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -29326,193 +34278,205 @@ "id": "2021-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", - "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", - "values": { - "interactive": [ - null, - "goal_continuing", - "goal_new" - ], - "noninteractive": [ - "goal_continuing", - "goal_new" - ] - } - } - } - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the numerator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-03", - "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-04", - "type": "integer", - "label": "Numerator (total number)", - "answer": { "entry": "53395" } - } - ] - }, - { - "type": "fieldset", - "label": "Define the denominator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-05", - "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the denominator?", "answer": { - "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-06", - "type": "integer", - "label": "Denominator (total number)", - "answer": { "entry": "66741" } - } - ] - }, - { - "type": "fieldset", - "questions": [], - "fieldset_info": { - "actions": ["percentage"], - "targets": [ - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-04-a-01-01-02-02-04-07", - "type": "daterange", - "label": "What is the date range of your data?", - "answer": { - "entry": ["2019-10-01", "2021-09-01"], - "labels": ["Start", "End"] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-08", - "type": "radio", - "label": "Which data source did you use?", - "answer": { - "entry": "goal_survey_data", - "options": [ - { - "label": "Eligibility or enrollment data", - "value": "goal_enrollment_data" - }, - { - "label": "Survey data", - "value": "goal_survey_data" + "entry": null }, - { - "label": "Another data source", - "value": "goal_other_data" - } - ] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-09", - "type": "text_multiline", - "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-10", - "type": "text_multiline", - "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-11", - "type": "text_multiline", - "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } - }, - { - "id": "2021-04-a-01-01-02-02-04-12", - "hint": "Optional", - "type": "file_upload", - "label": "Do you have any supporting documentation?", - "answer": { "entry": null } - } - ] - }, - { - "id": "2021-04-a-01-01-02-02-05", - "type": "repeatable", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-01", - "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", - "type": "text_multiline", - "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " - } - }, - { - "id": "2021-04-a-01-01-02-02-05-02", - "type": "radio", - "label": "What type of goal is it?", - "answer": { - "entry": "goal_new", - "options": [ - { - "label": "New goal", - "value": "goal_new" - }, - { - "label": "Continuing goal", - "value": "goal_continuing" - }, - { - "label": "Discontinued goal", - "value": "goal_discontinued" - } - ], - "default_entry": "goal_new" - }, - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-02-a", - "type": "text_multiline", - "label": "Why was this goal discontinued?", - "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-03", + "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { + "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { + "entry": "53395" + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { + "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { + "entry": "66741" + } + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-04-a-01-01-02-02-04-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": ["2019-10-01", "2021-09-01"], + "labels": ["Start", "End"] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": "goal_survey_data", + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { + "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { + "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-11", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { + "entry": "No." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-12", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { + "entry": null + } + } + ] + }, + { + "id": "2021-04-a-01-01-02-02-05", + "type": "repeatable", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", + "type": "text_multiline", + "label": "Briefly describe your goal for this objective.", + "answer": { + "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " + } + }, + { + "id": "2021-04-a-01-01-02-02-05-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": "goal_new", + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", "values": { "interactive": [ null, @@ -29547,7 +34511,9 @@ "id": "2021-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "43656" } + "answer": { + "entry": "43656" + } } ] }, @@ -29568,7 +34534,9 @@ "id": "2021-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "46439" } + "answer": { + "entry": "46439" + } } ] }, @@ -29619,7 +34587,9 @@ "id": "2021-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal." } + "answer": { + "entry": "This is a new goal." + } }, { "id": "2021-04-a-01-01-02-02-05-10", @@ -29633,14 +34603,18 @@ "id": "2021-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -29706,7 +34680,9 @@ "id": "2021-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29747,7 +34723,9 @@ "id": "2021-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "367" } + "answer": { + "entry": "367" + } } ] }, @@ -29768,7 +34746,9 @@ "id": "2021-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "378" } + "answer": { + "entry": "378" + } } ] }, @@ -29819,7 +34799,9 @@ "id": "2021-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal" } + "answer": { + "entry": "This is a new goal" + } }, { "id": "2021-04-a-01-01-03-02-01-10", @@ -29833,14 +34815,18 @@ "id": "2021-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -29884,7 +34870,9 @@ "id": "2021-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29925,7 +34913,9 @@ "id": "2021-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "369" } + "answer": { + "entry": "369" + } } ] }, @@ -29946,7 +34936,9 @@ "id": "2021-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "401" } + "answer": { + "entry": "401" + } } ] }, @@ -30013,14 +35005,18 @@ "id": "2021-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30064,7 +35060,9 @@ "id": "2021-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30105,7 +35103,9 @@ "id": "2021-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "41565" } + "answer": { + "entry": "41565" + } } ] }, @@ -30126,7 +35126,9 @@ "id": "2021-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "54080" } + "answer": { + "entry": "54080" + } } ] }, @@ -30193,14 +35195,18 @@ "id": "2021-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30217,7 +35223,9 @@ "id": "2021-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02", @@ -30231,7 +35239,9 @@ "id": "2021-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-02", @@ -30260,7 +35270,9 @@ "id": "2021-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30292,13 +35304,17 @@ "id": "2021-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30310,13 +35326,17 @@ "id": "2021-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30367,26 +35387,34 @@ "id": "2021-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30403,7 +35431,9 @@ "id": "2021-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02", @@ -30417,7 +35447,9 @@ "id": "2021-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-02", @@ -30446,7 +35478,9 @@ "id": "2021-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30478,13 +35512,17 @@ "id": "2021-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30496,13 +35534,17 @@ "id": "2021-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30553,26 +35595,34 @@ "id": "2021-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30589,7 +35639,9 @@ "id": "2021-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02", @@ -30603,7 +35655,9 @@ "id": "2021-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-02", @@ -30632,7 +35686,9 @@ "id": "2021-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30664,13 +35720,17 @@ "id": "2021-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30683,13 +35743,17 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30740,26 +35804,34 @@ "id": "2021-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30789,7 +35861,9 @@ "id": "2021-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-02-03", @@ -30804,7 +35878,9 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30859,26 +35935,34 @@ "id": "2021-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-01" }, + "fieldset_info": { + "id": "2021-05-a-01-01" + }, "fieldset_type": "marked" }, { @@ -30892,26 +35976,34 @@ "id": "2021-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { "entry": "356487608" }, + "answer": { + "entry": "356487608" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { "entry": "411883043" } + "answer": { + "entry": "411883043" + } }, { "id": "2021-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { "entry": "443317001" } + "answer": { + "entry": "443317001" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-02" }, + "fieldset_info": { + "id": "2021-05-a-01-02" + }, "fieldset_type": "marked" }, { @@ -30925,26 +36017,34 @@ "id": "2021-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-03" }, + "fieldset_info": { + "id": "2021-05-a-01-03" + }, "fieldset_type": "marked" }, { @@ -30958,26 +36058,34 @@ "id": "2021-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { "entry": "6343194" }, + "answer": { + "entry": "6343194" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } }, { "id": "2021-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-04" }, + "fieldset_info": { + "id": "2021-05-a-01-04" + }, "fieldset_type": "marked" }, { @@ -30988,7 +36096,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -31009,7 +36119,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -31030,7 +36142,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -31074,7 +36188,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["sum"], "targets": [ @@ -31105,10 +36221,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -31133,26 +36257,34 @@ "id": "2021-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { "entry": "5005640" }, + "answer": { + "entry": "5005640" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { "entry": "5716281" } + "answer": { + "entry": "5716281" + } }, { "id": "2021-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { "entry": "6287909" } + "answer": { + "entry": "6287909" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-01" }, + "fieldset_info": { + "id": "2021-05-a-02-01" + }, "fieldset_type": "marked" }, { @@ -31166,26 +36298,34 @@ "id": "2021-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { "entry": "5839005" }, + "answer": { + "entry": "5839005" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { "entry": "6923267" } + "answer": { + "entry": "6923267" + } }, { "id": "2021-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { "entry": "7555964" } + "answer": { + "entry": "7555964" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-02" }, + "fieldset_info": { + "id": "2021-05-a-02-02" + }, "fieldset_type": "marked" }, { @@ -31199,26 +36339,34 @@ "id": "2021-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-03" }, + "fieldset_info": { + "id": "2021-05-a-02-03" + }, "fieldset_type": "marked" }, { @@ -31232,26 +36380,34 @@ "id": "2021-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-04" }, + "fieldset_info": { + "id": "2021-05-a-02-04" + }, "fieldset_type": "marked" }, { @@ -31265,26 +36421,34 @@ "id": "2021-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { "entry": "201056" }, + "answer": { + "entry": "201056" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } }, { "id": "2021-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-05" }, + "fieldset_info": { + "id": "2021-05-a-02-05" + }, "fieldset_type": "marked" }, { @@ -31298,26 +36462,34 @@ "id": "2021-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { "entry": "230094" }, + "answer": { + "entry": "230094" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } }, { "id": "2021-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-06" }, + "fieldset_info": { + "id": "2021-05-a-02-06" + }, "fieldset_type": "marked" }, { @@ -31331,26 +36503,34 @@ "id": "2021-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { "entry": "885410" }, + "answer": { + "entry": "885410" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { "entry": "1371907" } + "answer": { + "entry": "1371907" + } }, { "id": "2021-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { "entry": "1509098" } + "answer": { + "entry": "1509098" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-07" }, + "fieldset_info": { + "id": "2021-05-a-02-07" + }, "fieldset_type": "marked" }, { @@ -31361,7 +36541,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -31382,7 +36564,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -31403,7 +36587,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -31424,7 +36610,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -31445,7 +36633,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -31466,7 +36656,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -31487,7 +36679,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -31508,7 +36702,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -31547,7 +36743,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -31584,10 +36782,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -31600,7 +36806,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -31657,30 +36865,48 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2020" }], + "targets": [ + { + "lookupFmapFy": "2020" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2021" }], + "targets": [ + { + "lookupFmapFy": "2021" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2022" }], + "targets": [ + { + "lookupFmapFy": "2022" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -31699,7 +36925,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -31718,7 +36946,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -31735,7 +36965,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -31751,7 +36983,9 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -31781,7 +37015,9 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -31811,7 +37047,9 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -31829,10 +37067,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -31873,7 +37119,10 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -31881,7 +37130,9 @@ "id": "2021-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31905,8 +37156,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -31914,7 +37171,9 @@ "id": "2021-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31950,26 +37209,34 @@ "id": "2021-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "53253" }, + "answer": { + "entry": "53253" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2021-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-03-01" }, + "fieldset_info": { + "id": "2021-05-a-03-01" + }, "fieldset_type": "marked" }, { @@ -31984,26 +37251,34 @@ "id": "2021-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2021-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-03-02" }, + "fieldset_info": { + "id": "2021-05-a-03-02" + }, "fieldset_type": "marked" }, { @@ -32012,7 +37287,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -32033,7 +37310,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -32055,10 +37334,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -32082,26 +37369,34 @@ "id": "2021-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "174401" }, + "answer": { + "entry": "174401" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "80722" } + "answer": { + "entry": "80722" + } }, { "id": "2021-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { "entry": "84885" } + "answer": { + "entry": "84885" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-04-01" }, + "fieldset_info": { + "id": "2021-05-a-04-01" + }, "fieldset_type": "marked" }, { @@ -32116,26 +37411,34 @@ "id": "2021-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { "entry": "233" }, + "answer": { + "entry": "233" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } }, { "id": "2021-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { "entry": "252" } + "answer": { + "entry": "252" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-04-02" }, + "fieldset_info": { + "id": "2021-05-a-04-02" + }, "fieldset_type": "marked" }, { @@ -32144,7 +37447,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -32165,7 +37470,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -32187,10 +37494,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -32213,7 +37528,9 @@ "id": "2021-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -32290,7 +37607,9 @@ "id": "2021-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -32377,19 +37696,25 @@ "id": "2020-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { "entry": "Tester" } + "answer": { + "entry": "Tester" + } }, { "id": "2020-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { "entry": "Director" } + "answer": { + "entry": "Director" + } }, { "id": "2020-00-a-01-06", "type": "email", "label": "Email:", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2020-00-a-01-07", @@ -32404,7 +37729,9 @@ "id": "2020-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { "entry": "123-456-7890" } + "answer": { + "entry": "123-456-7890" + } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -32453,8 +37780,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32462,7 +37795,9 @@ "id": "2020-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32486,8 +37821,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32501,8 +37842,14 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -32539,7 +37886,9 @@ "id": "2020-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32579,8 +37928,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32618,7 +37973,9 @@ "id": "2020-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32639,7 +37996,9 @@ "id": "2020-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } }, { "id": "2020-01-a-01-05", @@ -32649,12 +38008,18 @@ "answer": { "entry": [null, "pccm"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -32662,7 +38027,9 @@ "id": "2020-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -32685,8 +38052,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32694,7 +38067,9 @@ "id": "2020-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32718,8 +38093,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32733,8 +38114,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -32776,7 +38163,9 @@ "id": "2020-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32816,8 +38205,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32860,7 +38255,9 @@ "id": "2020-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { "entry": "312" }, + "answer": { + "entry": "312" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32893,12 +38290,18 @@ "answer": { "entry": [null, "ffs"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -32906,7 +38309,9 @@ "id": "2020-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -32927,9 +38332,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32943,9 +38357,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32960,9 +38383,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32977,9 +38409,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32993,9 +38434,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33010,12 +38460,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2020-01-a-03-07", @@ -33025,12 +38486,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2020-01-a-03-08", @@ -33040,12 +38512,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2020-01-a-03-09", @@ -33055,9 +38538,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33071,9 +38563,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33088,9 +38589,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33105,12 +38615,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2020-01-a-03-13", @@ -33119,9 +38640,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33135,9 +38665,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33151,9 +38690,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33167,12 +38715,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -33192,9 +38751,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] } } @@ -33253,9 +38821,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33269,9 +38846,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33286,9 +38872,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33303,9 +38898,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33319,9 +38923,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33336,12 +38949,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2020-01-a-04-07", @@ -33351,12 +38975,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2020-01-a-04-08", @@ -33366,12 +39001,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2020-01-a-04-09", @@ -33381,12 +39027,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Crowd-out policies" } + "context_data": { + "bullet_text": "Crowd-out policies" + } }, { "id": "2020-01-a-04-10", @@ -33395,9 +39052,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33411,9 +39077,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33428,9 +39103,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33445,12 +39129,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2020-01-a-04-14", @@ -33459,9 +39154,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33476,9 +39180,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33493,9 +39206,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33509,9 +39231,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33525,9 +39256,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33541,12 +39281,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -33566,8 +39317,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -33695,7 +39452,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2015" }, + { + "contents": "2015" + }, { "lookupAcs": { "ffy": "2015", @@ -33722,7 +39481,9 @@ } ], [ - { "contents": "2016" }, + { + "contents": "2016" + }, { "lookupAcs": { "ffy": "2016", @@ -33749,7 +39510,9 @@ } ], [ - { "contents": "2017" }, + { + "contents": "2017" + }, { "lookupAcs": { "ffy": "2017", @@ -33776,7 +39539,9 @@ } ], [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -33803,7 +39568,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -33831,13 +39598,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "fieldset_type": "synthesized_table" @@ -33858,7 +39633,9 @@ ] ], "headers": [ - { "contents": "Percent change between 2018 and 2019" } + { + "contents": "Percent change between 2018 and 2019" + } ] }, "fieldset_type": "synthesized_table" @@ -33878,8 +39655,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -33887,7 +39670,9 @@ "id": "2020-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33911,8 +39696,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -33923,7 +39714,9 @@ "id": "2020-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-b", @@ -33938,37 +39731,49 @@ "id": "2020-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -33991,13 +39796,17 @@ "id": "2020-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -34037,8 +39846,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -34073,8 +39888,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -34082,7 +39903,9 @@ "id": "2020-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34112,13 +39935,17 @@ "id": "2020-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -34141,9 +39968,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34151,7 +39987,9 @@ "id": "2020-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34175,9 +40013,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34185,7 +40032,9 @@ "id": "2020-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { "entry": "BCBS of AL enrollment database" }, + "answer": { + "entry": "BCBS of AL enrollment database" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34206,7 +40055,9 @@ "id": "2020-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { "entry": "4.11" } + "answer": { + "entry": "4.11" + } }, { "type": "fieldset", @@ -34218,9 +40069,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34231,7 +40091,9 @@ "id": "2020-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -34252,7 +40114,9 @@ "id": "2020-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34271,7 +40135,9 @@ "id": "2020-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34290,7 +40156,9 @@ "id": "2020-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34320,13 +40188,17 @@ "id": "2020-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } }, { "id": "2020-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -34351,9 +40223,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34364,13 +40245,17 @@ "id": "2020-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -34396,8 +40281,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -34408,8 +40299,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -34420,7 +40317,9 @@ "id": "2020-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-c-01-03-b", @@ -34475,7 +40374,9 @@ "id": "2020-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } } ] }, @@ -34489,27 +40390,35 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { "entry": "4283" } + "answer": { + "entry": "4283" + } }, { "id": "2020-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { "entry": "500" } + "answer": { + "entry": "500" + } }, { "id": "2020-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { "entry": "3484" }, + "answer": { + "entry": "3484" + }, "questions": [ { "id": "2020-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { "entry": "299" } + "answer": { + "entry": "299" + } } ] }, @@ -34517,7 +40426,9 @@ "id": "2020-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2020-03-c-02-05", @@ -34535,7 +40446,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-01')].answer.entry" @@ -34550,7 +40463,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-02')].answer.entry" @@ -34565,7 +40480,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-03')].answer.entry" @@ -34580,7 +40497,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-04')].answer.entry" @@ -34596,9 +40515,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -34615,26 +40540,34 @@ "id": "2020-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { "entry": "145390" } + "answer": { + "entry": "145390" + } }, { "id": "2020-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "131011" } + "answer": { + "entry": "131011" + } }, { "id": "2020-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { "entry": "113009" } + "answer": { + "entry": "113009" + } }, { "id": "2020-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { "entry": "17989" }, + "answer": { + "entry": "17989" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -34655,20 +40588,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "id": "2020-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "15242" } + "answer": { + "entry": "15242" + } }, { "id": "2020-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "854" } + "answer": { + "entry": "854" + } } ] }, @@ -34676,7 +40615,9 @@ "id": "2020-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -34738,9 +40679,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -34822,9 +40769,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -34841,26 +40794,34 @@ "id": "2020-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { "entry": "463373" } + "answer": { + "entry": "463373" + } }, { "id": "2020-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "438232" } + "answer": { + "entry": "438232" + } }, { "id": "2020-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { "entry": "413500" } + "answer": { + "entry": "413500" + } }, { "id": "2020-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { "entry": "24718" }, + "answer": { + "entry": "24718" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -34881,20 +40842,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "559" } + "answer": { + "entry": "559" + } }, { "id": "2020-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "23489" } + "answer": { + "entry": "23489" + } }, { "id": "2020-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "670" } + "answer": { + "entry": "670" + } } ] }, @@ -34902,7 +40869,9 @@ "id": "2020-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -34964,9 +40933,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -35048,9 +41023,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -35095,8 +41076,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -35113,7 +41100,9 @@ "id": "2020-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35149,25 +41138,33 @@ "id": "2020-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "919" } + "answer": { + "entry": "919" + } }, { "id": "2020-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "2265" } + "answer": { + "entry": "2265" + } }, { "id": "2020-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5710" } + "answer": { + "entry": "5710" + } }, { "id": "2020-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4958" } + "answer": { + "entry": "4958" + } } ], "context_data": { @@ -35185,7 +41182,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-03" }, + "fieldset_info": { + "id": "2020-03-c-05-03" + }, "fieldset_type": "marked" }, { @@ -35202,7 +41201,9 @@ "id": "2020-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35238,25 +41239,33 @@ "id": "2020-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "909" } + "answer": { + "entry": "909" + } }, { "id": "2020-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "22213" } + "answer": { + "entry": "22213" + } }, { "id": "2020-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5451" } + "answer": { + "entry": "5451" + } }, { "id": "2020-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4445" } + "answer": { + "entry": "4445" + } } ], "context_data": { @@ -35274,7 +41283,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-04" }, + "fieldset_info": { + "id": "2020-03-c-05-04" + }, "fieldset_type": "marked" }, { @@ -35285,7 +41296,9 @@ "id": "2020-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35321,25 +41334,33 @@ "id": "2020-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -35357,7 +41378,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-05" }, + "fieldset_info": { + "id": "2020-03-c-05-05" + }, "fieldset_type": "marked" }, { @@ -35368,7 +41391,9 @@ "id": "2020-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35404,25 +41429,33 @@ "id": "2020-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -35440,7 +41473,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-06" }, + "fieldset_info": { + "id": "2020-03-c-05-06" + }, "fieldset_type": "marked" }, { @@ -35452,7 +41487,9 @@ "id": "2020-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35488,25 +41525,33 @@ "id": "2020-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "10" } + "answer": { + "entry": "10" + } }, { "id": "2020-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "44" } + "answer": { + "entry": "44" + } }, { "id": "2020-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "257" } + "answer": { + "entry": "257" + } }, { "id": "2020-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "510" } + "answer": { + "entry": "510" + } } ], "context_data": { @@ -35524,7 +41569,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-07" }, + "fieldset_info": { + "id": "2020-03-c-05-07" + }, "fieldset_type": "marked" }, { @@ -35535,7 +41582,9 @@ "id": "2020-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35571,25 +41620,33 @@ "id": "2020-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "145" } + "answer": { + "entry": "145" + } }, { "id": "2020-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "447" } + "answer": { + "entry": "447" + } } ], "context_data": { @@ -35607,14 +41664,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-08" }, + "fieldset_info": { + "id": "2020-03-c-05-08" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -35631,7 +41692,10 @@ "id": "2020-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35667,25 +41731,37 @@ "id": "2020-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35703,7 +41779,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-10" }, + "fieldset_info": { + "id": "2020-03-c-05-10" + }, "fieldset_type": "marked" }, { @@ -35714,7 +41792,10 @@ "id": "2020-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35750,25 +41831,37 @@ "id": "2020-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35786,7 +41879,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-11" }, + "fieldset_info": { + "id": "2020-03-c-05-11" + }, "fieldset_type": "marked" }, { @@ -35797,7 +41892,10 @@ "id": "2020-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35833,25 +41931,37 @@ "id": "2020-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35869,7 +41979,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-12" }, + "fieldset_info": { + "id": "2020-03-c-05-12" + }, "fieldset_type": "marked" }, { @@ -35881,7 +41993,10 @@ "id": "2020-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35917,25 +42032,37 @@ "id": "2020-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35953,7 +42080,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-13" }, + "fieldset_info": { + "id": "2020-03-c-05-13" + }, "fieldset_type": "marked" }, { @@ -35964,7 +42093,10 @@ "id": "2020-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36000,25 +42132,37 @@ "id": "2020-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36036,7 +42180,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-14" }, + "fieldset_info": { + "id": "2020-03-c-05-14" + }, "fieldset_type": "marked" }, { @@ -36054,7 +42200,10 @@ "id": "2020-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36090,25 +42239,37 @@ "id": "2020-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36126,7 +42287,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-15" }, + "fieldset_info": { + "id": "2020-03-c-05-15" + }, "fieldset_type": "marked" }, { @@ -36137,7 +42300,10 @@ "id": "2020-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36173,25 +42339,37 @@ "id": "2020-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36209,7 +42387,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-16" }, + "fieldset_info": { + "id": "2020-03-c-05-16" + }, "fieldset_type": "marked" }, { @@ -36220,7 +42400,10 @@ "id": "2020-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36256,25 +42439,37 @@ "id": "2020-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36292,7 +42487,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-17" }, + "fieldset_info": { + "id": "2020-03-c-05-17" + }, "fieldset_type": "marked" }, { @@ -36304,7 +42501,10 @@ "id": "2020-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36340,25 +42540,37 @@ "id": "2020-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36376,7 +42588,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-18" }, + "fieldset_info": { + "id": "2020-03-c-05-18" + }, "fieldset_type": "marked" }, { @@ -36387,7 +42601,10 @@ "id": "2020-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36423,25 +42640,37 @@ "id": "2020-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36459,14 +42688,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-19" }, + "fieldset_info": { + "id": "2020-03-c-05-19" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -36508,8 +42741,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -36526,7 +42765,9 @@ "id": "2020-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36562,25 +42803,33 @@ "id": "2020-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "127630" } + "answer": { + "entry": "127630" + } }, { "id": "2020-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "7311" } + "answer": { + "entry": "7311" + } }, { "id": "2020-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9418" } + "answer": { + "entry": "9418" + } }, { "id": "2020-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4527" } + "answer": { + "entry": "4527" + } } ], "context_data": { @@ -36598,7 +42847,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-03" }, + "fieldset_info": { + "id": "2020-03-c-06-03" + }, "fieldset_type": "marked" }, { @@ -36615,7 +42866,9 @@ "id": "2020-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36651,25 +42904,33 @@ "id": "2020-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12237" } + "answer": { + "entry": "12237" + } }, { "id": "2020-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "70464" } + "answer": { + "entry": "70464" + } }, { "id": "2020-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9159" } + "answer": { + "entry": "9159" + } }, { "id": "2020-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3821" } + "answer": { + "entry": "3821" + } } ], "context_data": { @@ -36687,7 +42948,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-04" }, + "fieldset_info": { + "id": "2020-03-c-06-04" + }, "fieldset_type": "marked" }, { @@ -36698,7 +42961,9 @@ "id": "2020-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36734,25 +42999,33 @@ "id": "2020-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2020-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2020-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2020-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } } ], "context_data": { @@ -36770,7 +43043,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-05" }, + "fieldset_info": { + "id": "2020-03-c-06-05" + }, "fieldset_type": "marked" }, { @@ -36781,7 +43056,9 @@ "id": "2020-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36817,25 +43094,33 @@ "id": "2020-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2020-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2020-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2020-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "88" } + "answer": { + "entry": "88" + } } ], "context_data": { @@ -36853,7 +43138,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-06" }, + "fieldset_info": { + "id": "2020-03-c-06-06" + }, "fieldset_type": "marked" }, { @@ -36865,7 +43152,9 @@ "id": "2020-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36901,25 +43190,33 @@ "id": "2020-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "439" } + "answer": { + "entry": "439" + } }, { "id": "2020-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "229" } + "answer": { + "entry": "229" + } }, { "id": "2020-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "236" } + "answer": { + "entry": "236" + } }, { "id": "2020-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "698" } + "answer": { + "entry": "698" + } } ], "context_data": { @@ -36937,7 +43234,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-07" }, + "fieldset_info": { + "id": "2020-03-c-06-07" + }, "fieldset_type": "marked" }, { @@ -36948,7 +43247,9 @@ "id": "2020-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36984,25 +43285,33 @@ "id": "2020-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2020-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2020-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "46" } + "answer": { + "entry": "46" + } }, { "id": "2020-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } } ], "context_data": { @@ -37020,14 +43329,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-08" }, + "fieldset_info": { + "id": "2020-03-c-06-08" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "No. yes added more " } + "answer": { + "entry": "No. yes added more " + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -37044,7 +43357,10 @@ "id": "2020-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37080,25 +43396,37 @@ "id": "2020-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37116,7 +43444,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-10" }, + "fieldset_info": { + "id": "2020-03-c-06-10" + }, "fieldset_type": "marked" }, { @@ -37127,7 +43457,10 @@ "id": "2020-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37163,25 +43496,37 @@ "id": "2020-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37199,7 +43544,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-11" }, + "fieldset_info": { + "id": "2020-03-c-06-11" + }, "fieldset_type": "marked" }, { @@ -37210,7 +43557,10 @@ "id": "2020-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37246,25 +43596,37 @@ "id": "2020-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37282,7 +43644,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-12" }, + "fieldset_info": { + "id": "2020-03-c-06-12" + }, "fieldset_type": "marked" }, { @@ -37294,7 +43658,10 @@ "id": "2020-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37330,25 +43697,37 @@ "id": "2020-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37366,7 +43745,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-13" }, + "fieldset_info": { + "id": "2020-03-c-06-13" + }, "fieldset_type": "marked" }, { @@ -37377,7 +43758,10 @@ "id": "2020-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37413,25 +43797,37 @@ "id": "2020-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37449,7 +43845,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-14" }, + "fieldset_info": { + "id": "2020-03-c-06-14" + }, "fieldset_type": "marked" }, { @@ -37467,7 +43865,10 @@ "id": "2020-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37503,25 +43904,37 @@ "id": "2020-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37539,7 +43952,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-15" }, + "fieldset_info": { + "id": "2020-03-c-06-15" + }, "fieldset_type": "marked" }, { @@ -37550,7 +43965,10 @@ "id": "2020-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37586,25 +44004,37 @@ "id": "2020-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37622,7 +44052,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-16" }, + "fieldset_info": { + "id": "2020-03-c-06-16" + }, "fieldset_type": "marked" }, { @@ -37633,7 +44065,10 @@ "id": "2020-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37669,25 +44104,37 @@ "id": "2020-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37705,7 +44152,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-17" }, + "fieldset_info": { + "id": "2020-03-c-06-17" + }, "fieldset_type": "marked" }, { @@ -37717,7 +44166,10 @@ "id": "2020-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37753,25 +44205,37 @@ "id": "2020-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37789,7 +44253,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-18" }, + "fieldset_info": { + "id": "2020-03-c-06-18" + }, "fieldset_type": "marked" }, { @@ -37800,7 +44266,10 @@ "id": "2020-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37836,25 +44305,37 @@ "id": "2020-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37872,14 +44353,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-19" }, + "fieldset_info": { + "id": "2020-03-c-06-19" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -37902,8 +44387,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -37925,12 +44416,18 @@ "label": "Health plans", "value": "health_plans" }, - { "label": "States", "value": "states" }, + { + "label": "States", + "value": "states" + }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { "label": "Other ", "value": "other" } + { + "label": "Other ", + "value": "other" + } ] }, "questions": [ @@ -37970,7 +44467,9 @@ "id": "2020-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38009,7 +44508,9 @@ "id": "2020-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-d-01-05", @@ -38018,8 +44519,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38027,7 +44534,9 @@ "id": "2020-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38051,8 +44560,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38060,7 +44575,9 @@ "id": "2020-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38105,13 +44622,17 @@ "id": "2020-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -38154,8 +44675,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -38195,8 +44722,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38205,7 +44738,9 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-04", @@ -38215,9 +44750,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -38229,9 +44773,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -38243,9 +44796,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -38253,7 +44815,9 @@ "id": "2020-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38274,7 +44838,9 @@ "id": "2020-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -38283,19 +44849,25 @@ "id": "2020-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -38328,9 +44900,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "fieldset_type": "synthesized_table" @@ -38390,31 +44968,41 @@ "id": "2020-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -38451,8 +45039,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38463,8 +45057,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38475,8 +45075,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38495,9 +45101,18 @@ "answer": { "entry": "na", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -38505,7 +45120,9 @@ "id": "2020-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38526,13 +45143,17 @@ "id": "2020-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "type": "fieldset", @@ -38541,13 +45162,17 @@ "id": "2020-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -38558,13 +45183,17 @@ "id": "2020-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { "entry": "19" } + "answer": { + "entry": "19" + } }, { "id": "2020-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -38575,13 +45204,17 @@ "id": "2020-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2020-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -38592,7 +45225,10 @@ "answer": { "entry": "separate_chip_only", "options": [ - { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "CHIP only", + "value": "separate_chip_only" + }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -38607,8 +45243,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38642,8 +45284,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38651,7 +45299,9 @@ "id": "2020-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38672,13 +45322,17 @@ "id": "2020-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "Only Separate CHIP reported." } + "answer": { + "entry": "Only Separate CHIP reported." + } }, { "id": "2020-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -38712,8 +45366,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38725,7 +45385,9 @@ "id": "2020-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38763,37 +45425,49 @@ "id": "2020-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "1915" } + "answer": { + "entry": "1915" + } }, { "id": "2020-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "8659" } + "answer": { + "entry": "8659" + } }, { "id": "2020-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "15546" } + "answer": { + "entry": "15546" + } }, { "id": "2020-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "21088" } + "answer": { + "entry": "21088" + } }, { "id": "2020-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "26998" } + "answer": { + "entry": "26998" + } }, { "id": "2020-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "19934" } + "answer": { + "entry": "19934" + } } ], "context_data": { @@ -38811,7 +45485,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-02" }, + "fieldset_info": { + "id": "2020-03-g-01-02" + }, "fieldset_type": "marked" }, { @@ -38822,7 +45498,9 @@ "id": "2020-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38860,37 +45538,49 @@ "id": "2020-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "24" } + "answer": { + "entry": "24" + } }, { "id": "2020-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "2238" } + "answer": { + "entry": "2238" + } }, { "id": "2020-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8868" } + "answer": { + "entry": "8868" + } }, { "id": "2020-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "14543" } + "answer": { + "entry": "14543" + } }, { "id": "2020-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "17462" } + "answer": { + "entry": "17462" + } }, { "id": "2020-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "11415" } + "answer": { + "entry": "11415" + } } ], "context_data": { @@ -38908,7 +45598,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-03" }, + "fieldset_info": { + "id": "2020-03-g-01-03" + }, "fieldset_type": "marked" }, { @@ -38925,7 +45617,9 @@ "id": "2020-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38963,37 +45657,49 @@ "id": "2020-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2020-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "1997" } + "answer": { + "entry": "1997" + } }, { "id": "2020-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8504" } + "answer": { + "entry": "8504" + } }, { "id": "2020-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "13966" } + "answer": { + "entry": "13966" + } }, { "id": "2020-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "16828" } + "answer": { + "entry": "16828" + } }, { "id": "2020-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "10639" } + "answer": { + "entry": "10639" + } } ], "context_data": { @@ -39011,7 +45717,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-04" }, + "fieldset_info": { + "id": "2020-03-g-01-04" + }, "fieldset_type": "marked" }, { @@ -39028,7 +45736,9 @@ "id": "2020-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39066,37 +45776,49 @@ "id": "2020-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12" } + "answer": { + "entry": "12" + } }, { "id": "2020-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "117" } + "answer": { + "entry": "117" + } }, { "id": "2020-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "2133" } + "answer": { + "entry": "2133" + } }, { "id": "2020-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "5991" } + "answer": { + "entry": "5991" + } }, { "id": "2020-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "5931" } + "answer": { + "entry": "5931" + } }, { "id": "2020-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "4883" } + "answer": { + "entry": "4883" + } } ], "context_data": { @@ -39114,7 +45836,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-05" }, + "fieldset_info": { + "id": "2020-03-g-01-05" + }, "fieldset_type": "marked" }, { @@ -39127,7 +45851,9 @@ "id": "2020-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -39142,8 +45868,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -39154,14 +45886,18 @@ "id": "2020-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -39195,7 +45931,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table" @@ -39221,13 +45959,17 @@ "id": "2020-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39254,8 +45996,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -39266,8 +46014,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -39299,7 +46053,9 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-h-02-02", @@ -39312,12 +46068,18 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { "label": "Separate CHIP", "value": "separate chip" }, + { + "label": "Separate CHIP", + "value": "separate chip" + }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39329,13 +46091,17 @@ "id": "2020-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39370,9 +46136,18 @@ "answer": { "entry": "5.0H", "options": [ - { "label": "CAHPS 5.0", "value": "5.0" }, - { "label": "CAHPS 5.0H", "value": "5.0H" }, - { "label": "Other", "value": "other" } + { + "label": "CAHPS 5.0", + "value": "5.0" + }, + { + "label": "CAHPS 5.0H", + "value": "5.0H" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39384,7 +46159,9 @@ "id": "2020-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39411,12 +46188,18 @@ "answer": { "entry": [null, "chronic"], "options": [ - { "label": "None", "value": "none" }, + { + "label": "None", + "value": "none" + }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39424,7 +46207,9 @@ "id": "2020-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39453,8 +46238,14 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { "label": "HRQ CAHPS", "value": "hrq cahps" }, - { "label": "Other", "value": "other" } + { + "label": "HRQ CAHPS", + "value": "hrq cahps" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39466,7 +46257,9 @@ "id": "2020-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39489,7 +46282,9 @@ "id": "2020-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } } ], "context_data": { @@ -39561,7 +46356,10 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -39569,7 +46367,9 @@ "id": "2020-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39607,8 +46407,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -39642,8 +46448,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -39690,7 +46502,9 @@ "id": "2020-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39709,7 +46523,9 @@ "id": "2020-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39834,7 +46650,9 @@ "id": "2020-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39965,7 +46783,9 @@ "id": "2020-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40006,7 +46826,9 @@ "id": "2020-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "30669" } + "answer": { + "entry": "30669" + } } ] }, @@ -40027,7 +46849,9 @@ "id": "2020-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1127906" } + "answer": { + "entry": "1127906" + } } ] }, @@ -40094,14 +46918,18 @@ "id": "2020-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40145,7 +46973,9 @@ "id": "2020-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40186,7 +47016,9 @@ "id": "2020-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "13922" } + "answer": { + "entry": "13922" + } } ] }, @@ -40207,7 +47039,9 @@ "id": "2020-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "359680" } + "answer": { + "entry": "359680" + } } ] }, @@ -40274,14 +47108,18 @@ "id": "2020-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40325,7 +47163,9 @@ "id": "2020-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40366,7 +47206,9 @@ "id": "2020-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "16747" } + "answer": { + "entry": "16747" + } } ] }, @@ -40387,7 +47229,9 @@ "id": "2020-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "351278" } + "answer": { + "entry": "351278" + } } ] }, @@ -40454,14 +47298,18 @@ "id": "2020-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -40479,7 +47327,9 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": "Increase Access to Care" } + "answer": { + "entry": "Increase Access to Care" + } }, { "id": "2020-04-a-01-01-02-02", @@ -40525,7 +47375,9 @@ "id": "2020-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40566,7 +47418,9 @@ "id": "2020-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "78593" } + "answer": { + "entry": "78593" + } } ] }, @@ -40587,7 +47441,9 @@ "id": "2020-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "78908" } + "answer": { + "entry": "78908" + } } ] }, @@ -40654,14 +47510,18 @@ "id": "2020-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40705,7 +47565,9 @@ "id": "2020-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40746,7 +47608,9 @@ "id": "2020-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "1329" } + "answer": { + "entry": "1329" + } } ] }, @@ -40767,7 +47631,9 @@ "id": "2020-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1338" } + "answer": { + "entry": "1338" + } } ] }, @@ -40834,14 +47700,18 @@ "id": "2020-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40885,7 +47755,9 @@ "id": "2020-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40926,7 +47798,9 @@ "id": "2020-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "10464" } + "answer": { + "entry": "10464" + } } ] }, @@ -40947,7 +47821,9 @@ "id": "2020-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "10776" } + "answer": { + "entry": "10776" + } } ] }, @@ -41014,14 +47890,18 @@ "id": "2020-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41065,7 +47945,9 @@ "id": "2020-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41106,7 +47988,9 @@ "id": "2020-04-a-01-01-02-02-04-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "53395" } + "answer": { + "entry": "53395" + } } ] }, @@ -41127,7 +48011,9 @@ "id": "2020-04-a-01-01-02-02-04-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "66741" } + "answer": { + "entry": "66741" + } } ] }, @@ -41194,14 +48080,18 @@ "id": "2020-04-a-01-01-02-02-04-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-04-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41245,7 +48135,9 @@ "id": "2020-04-a-01-01-02-02-05-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41286,7 +48178,9 @@ "id": "2020-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "43656" } + "answer": { + "entry": "43656" + } } ] }, @@ -41307,7 +48201,9 @@ "id": "2020-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "46439" } + "answer": { + "entry": "46439" + } } ] }, @@ -41358,7 +48254,9 @@ "id": "2020-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal." } + "answer": { + "entry": "This is a new goal." + } }, { "id": "2020-04-a-01-01-02-02-05-10", @@ -41372,14 +48270,18 @@ "id": "2020-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -41445,7 +48347,9 @@ "id": "2020-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41486,7 +48390,9 @@ "id": "2020-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "367" } + "answer": { + "entry": "367" + } } ] }, @@ -41507,7 +48413,9 @@ "id": "2020-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "378" } + "answer": { + "entry": "378" + } } ] }, @@ -41558,7 +48466,9 @@ "id": "2020-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal" } + "answer": { + "entry": "This is a new goal" + } }, { "id": "2020-04-a-01-01-03-02-01-10", @@ -41572,14 +48482,18 @@ "id": "2020-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41623,7 +48537,9 @@ "id": "2020-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41664,7 +48580,9 @@ "id": "2020-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "369" } + "answer": { + "entry": "369" + } } ] }, @@ -41685,7 +48603,9 @@ "id": "2020-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "401" } + "answer": { + "entry": "401" + } } ] }, @@ -41752,14 +48672,18 @@ "id": "2020-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41803,7 +48727,9 @@ "id": "2020-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41844,7 +48770,9 @@ "id": "2020-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "41565" } + "answer": { + "entry": "41565" + } } ] }, @@ -41865,7 +48793,9 @@ "id": "2020-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "54080" } + "answer": { + "entry": "54080" + } } ] }, @@ -41932,14 +48862,18 @@ "id": "2020-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -41956,7 +48890,9 @@ "id": "2020-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02", @@ -41970,7 +48906,9 @@ "id": "2020-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-02", @@ -41999,7 +48937,9 @@ "id": "2020-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42031,13 +48971,17 @@ "id": "2020-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42049,13 +48993,17 @@ "id": "2020-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42106,26 +49054,34 @@ "id": "2020-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42142,7 +49098,9 @@ "id": "2020-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02", @@ -42156,7 +49114,9 @@ "id": "2020-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-02", @@ -42185,7 +49145,9 @@ "id": "2020-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42217,13 +49179,17 @@ "id": "2020-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42235,13 +49201,17 @@ "id": "2020-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42292,26 +49262,34 @@ "id": "2020-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42328,7 +49306,9 @@ "id": "2020-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02", @@ -42342,7 +49322,9 @@ "id": "2020-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-02", @@ -42371,7 +49353,9 @@ "id": "2020-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42403,13 +49387,17 @@ "id": "2020-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42422,13 +49410,17 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42479,26 +49471,34 @@ "id": "2020-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42528,7 +49528,9 @@ "id": "2020-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-02-03", @@ -42543,7 +49545,9 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42598,26 +49602,34 @@ "id": "2020-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-01" }, + "fieldset_info": { + "id": "2020-05-a-01-01" + }, "fieldset_type": "marked" }, { @@ -42631,26 +49643,34 @@ "id": "2020-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { "entry": "356487608" }, + "answer": { + "entry": "356487608" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { "entry": "411883043" } + "answer": { + "entry": "411883043" + } }, { "id": "2020-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { "entry": "443317001" } + "answer": { + "entry": "443317001" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-02" }, + "fieldset_info": { + "id": "2020-05-a-01-02" + }, "fieldset_type": "marked" }, { @@ -42664,26 +49684,34 @@ "id": "2020-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-03" }, + "fieldset_info": { + "id": "2020-05-a-01-03" + }, "fieldset_type": "marked" }, { @@ -42697,26 +49725,34 @@ "id": "2020-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { "entry": "6343194" }, + "answer": { + "entry": "6343194" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } }, { "id": "2020-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-04" }, + "fieldset_info": { + "id": "2020-05-a-01-04" + }, "fieldset_type": "marked" }, { @@ -42727,7 +49763,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -42748,7 +49786,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -42769,7 +49809,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -42813,7 +49855,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["sum"], "targets": [ @@ -42844,10 +49888,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -42872,26 +49924,34 @@ "id": "2020-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { "entry": "5005640" }, + "answer": { + "entry": "5005640" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { "entry": "5716281" } + "answer": { + "entry": "5716281" + } }, { "id": "2020-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { "entry": "6287909" } + "answer": { + "entry": "6287909" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-01" }, + "fieldset_info": { + "id": "2020-05-a-02-01" + }, "fieldset_type": "marked" }, { @@ -42905,26 +49965,34 @@ "id": "2020-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { "entry": "5839005" }, + "answer": { + "entry": "5839005" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { "entry": "6923267" } + "answer": { + "entry": "6923267" + } }, { "id": "2020-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { "entry": "7555964" } + "answer": { + "entry": "7555964" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-02" }, + "fieldset_info": { + "id": "2020-05-a-02-02" + }, "fieldset_type": "marked" }, { @@ -42938,26 +50006,34 @@ "id": "2020-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-03" }, + "fieldset_info": { + "id": "2020-05-a-02-03" + }, "fieldset_type": "marked" }, { @@ -42971,26 +50047,34 @@ "id": "2020-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-04" }, + "fieldset_info": { + "id": "2020-05-a-02-04" + }, "fieldset_type": "marked" }, { @@ -43004,26 +50088,34 @@ "id": "2020-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { "entry": "201056" }, + "answer": { + "entry": "201056" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } }, { "id": "2020-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-05" }, + "fieldset_info": { + "id": "2020-05-a-02-05" + }, "fieldset_type": "marked" }, { @@ -43037,26 +50129,34 @@ "id": "2020-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { "entry": "230094" }, + "answer": { + "entry": "230094" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } }, { "id": "2020-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-06" }, + "fieldset_info": { + "id": "2020-05-a-02-06" + }, "fieldset_type": "marked" }, { @@ -43070,26 +50170,34 @@ "id": "2020-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { "entry": "885410" }, + "answer": { + "entry": "885410" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { "entry": "1371907" } + "answer": { + "entry": "1371907" + } }, { "id": "2020-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { "entry": "1509098" } + "answer": { + "entry": "1509098" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-07" }, + "fieldset_info": { + "id": "2020-05-a-02-07" + }, "fieldset_type": "marked" }, { @@ -43100,7 +50208,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -43121,7 +50231,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -43142,7 +50254,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -43163,7 +50277,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -43184,7 +50300,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -43205,7 +50323,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -43226,7 +50346,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -43247,7 +50369,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -43286,7 +50410,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -43323,10 +50449,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43339,7 +50473,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -43396,30 +50532,48 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2020" }], + "targets": [ + { + "lookupFmapFy": "2020" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2021" }], + "targets": [ + { + "lookupFmapFy": "2021" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2022" }], + "targets": [ + { + "lookupFmapFy": "2022" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -43438,7 +50592,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -43457,7 +50613,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -43474,7 +50632,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -43490,7 +50650,9 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -43520,7 +50682,9 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -43550,7 +50714,9 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -43568,10 +50734,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43612,7 +50786,10 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -43620,7 +50797,9 @@ "id": "2020-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43644,8 +50823,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -43653,7 +50838,9 @@ "id": "2020-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43689,26 +50876,34 @@ "id": "2020-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "53253" }, + "answer": { + "entry": "53253" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2020-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-03-01" }, + "fieldset_info": { + "id": "2020-05-a-03-01" + }, "fieldset_type": "marked" }, { @@ -43723,26 +50918,34 @@ "id": "2020-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2020-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-03-02" }, + "fieldset_info": { + "id": "2020-05-a-03-02" + }, "fieldset_type": "marked" }, { @@ -43751,7 +50954,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -43772,7 +50977,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -43794,10 +51001,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43821,26 +51036,34 @@ "id": "2020-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "174401" }, + "answer": { + "entry": "174401" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "80722" } + "answer": { + "entry": "80722" + } }, { "id": "2020-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { "entry": "84885" } + "answer": { + "entry": "84885" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-04-01" }, + "fieldset_info": { + "id": "2020-05-a-04-01" + }, "fieldset_type": "marked" }, { @@ -43855,26 +51078,34 @@ "id": "2020-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { "entry": "233" }, + "answer": { + "entry": "233" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } }, { "id": "2020-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { "entry": "252" } + "answer": { + "entry": "252" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-04-02" }, + "fieldset_info": { + "id": "2020-05-a-04-02" + }, "fieldset_type": "marked" }, { @@ -43883,7 +51114,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -43904,7 +51137,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -43926,10 +51161,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43952,7 +51195,9 @@ "id": "2020-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -44029,7 +51274,9 @@ "id": "2020-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 39edf88ae..5fb8787bb 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -36,7 +36,7 @@ "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0", "sass": "^1.77.1", - "vite": "^5.4.6", + "vite": "^5.2.11", "vite-tsconfig-paths": "^4.3.2" }, "scripts": { diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 99a40a1ab..4b913d5b1 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -1,13 +1,12 @@ import React, { useEffect, useState } from "react"; -import { useDispatch, useSelector } from "react-redux"; import PropTypes from "prop-types"; import Question from "./Question"; +import { connect, useDispatch } from "react-redux"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question, printView }) => { +const DataGrid = ({ question, lastYearFormData }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); - const lastYearFormData = useSelector((state) => state.lastYearFormData); const dispatch = useDispatch(); const rowStyle = @@ -139,7 +138,6 @@ const DataGrid = ({ question, printView }) => { hideNumber={question.type !== "fieldset"} question={question.question} prevYear={question.prevYear} - printView={printView} />
); @@ -150,7 +148,16 @@ const DataGrid = ({ question, printView }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, - printView: PropTypes.bool, + year: PropTypes.number.isRequired, + state: PropTypes.string.isRequired, + lastYearFormData: PropTypes.object.isRequired, }; -export default DataGrid; +const mapStateToProps = (state) => ({ + year: state.formData[0].contents.section.year, + state: state.formData[0].contents.section.state, + lastYearFormData: state.lastYearFormData, + lastYearTotals: state.lastYearTotals, +}); + +export default connect(mapStateToProps)(DataGrid); diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index ecd344142..fee83e44f 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -4,54 +4,12 @@ import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; -const getPrevYearValue = (question, lastYearFormData) => { - let prevYearValue; - - // Split and create array from id - const splitID = question.id.split("-"); - - // the subquestion id (a, b, c, etc) - const questionId = splitID[5]; - - // Custom handling for -03-c-05 and -03-c-06 - if ( - splitID[1] === "03" && - splitID[2] === "c" && - (splitID[3] === "05" || splitID[3] === "06") && - questionId === "a" && - parseInt(splitID[4]) > 2 && - parseInt(splitID[4]) < 10 - ) { - // Set year to last year - splitID[0] = parseInt(splitID[0]) - 1; - splitID.pop(); - - const fieldsetId = splitID.join("-"); - const partIndex = parseInt(splitID[3]) - 1; - - // Get questions from last years JSON - const questions = - lastYearFormData?.[3]?.contents.section.subsections[2].parts[partIndex] - .questions; - - // Filter down to this question - const matchingQuestion = questions?.filter( - (question) => fieldsetId === question?.fieldset_info?.id - ); - - // The first will always be correct - if (matchingQuestion?.[0]) { - prevYearValue = matchingQuestion[0].questions[0].answer?.entry; - } - } - return prevYearValue; -}; - -const Integer = ({ onChange, question, prevYear, printView, ...props }) => { +const Integer = ({ onChange, question, prevYear, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); - const lastYearFormData = useSelector((state) => state.lastYearFormData); - + const lastYearTotals = useSelector((state) => state.lastYearTotals); + const prevYearNumber = + lastYearTotals[question.id.substring(0, question.id.length - 2)]; const change = ({ target: { name, value } }) => { const stripped = value.replace(/[^0-9]+/g, ""); const parsed = parseFloat(stripped); @@ -67,26 +25,22 @@ const Integer = ({ onChange, question, prevYear, printView, ...props }) => { } }; - const isLessThanElevenMask = (value) => { + if (prevYearNumber && question.id.indexOf("-a") > -1) { return ( - printView && - question.mask === "lessThanEleven" && - value <= 10 && - value > 0 + ); - }; - - const renderAnswer = () => { - if (answer === null) { - const value = - getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; - if (isLessThanElevenMask(value)) return "<11"; - return value; - } else { - if (isLessThanElevenMask(answer)) return "<11"; - return answer || Number.isInteger(answer) ? answer : ""; - } - }; + } + const renderAnswer = (val) => (val || Number.isInteger(val) ? val : ""); // may attempt to rerender string on page load, so both val || isInteger return ( { name={question.id} numeric onChange={change} - value={renderAnswer()} + value={answer != null ? renderAnswer(answer) : prevYear && prevYear.value} {...props} /> ); @@ -105,7 +59,7 @@ Integer.propTypes = { onChange: PropTypes.func.isRequired, question: PropTypes.object.isRequired, prevYear: PropTypes.object, - printView: PropTypes.bool, }; +export { Integer }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index 54f8672ab..e9bb8095e 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -6,40 +6,7 @@ import Integer from "./Integer"; import { screen, render, fireEvent } from "@testing-library/react"; const mockStore = configureMockStore(); -const lastYearFormData = [ - {}, - {}, - {}, - { - contents: { - section: { - subsections: [ - {}, - {}, - { - parts: [ - {}, - {}, - {}, - {}, - { - questions: [ - { - fieldset_info: { - id: "2022-03-c-05-03", - }, - questions: [{ answer: { entry: 3000 } }], - }, - ], - }, - ], - }, - ], - }, - }, - }, -]; -const store = mockStore({ lastYearTotals: { 2022: [] }, lastYearFormData }); +const store = mockStore({ lastYearTotals: { 2022: [] } }); const buildInteger = (intProps) => { return ( @@ -47,7 +14,6 @@ const buildInteger = (intProps) => { ); }; - describe("", () => { it("should render correctly", () => { const props = { question: { id: "2023-00-a-01-01", answer: 1 } }; @@ -63,7 +29,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "Example Question", + label: "How many lightbulbs does it take to change a man?", answer: { entry: 123 }, }, }; @@ -79,7 +45,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "Example Question", + label: "How many lightbulbs does it take to change a man?", answer: { entry: 123 }, }, }; @@ -95,7 +61,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "Example Question", + label: "How many lightbulbs does it take to change a man?", answer: { entry: "hope" }, }, }; @@ -107,67 +73,4 @@ describe("", () => { expect(screen.queryByDisplayValue("raw text")).not.toBeInTheDocument(); expect(screen.getByRole("alert")).toBeInTheDocument(); }); - - it("should show <11 if passed >0 and <=10 with printView and lessThanEleven", () => { - const props = { - question: { - id: "2023-00-a-01-01", - label: "Example Question", - answer: { entry: "5" }, - mask: "lessThanEleven", - }, - printView: true, - }; - - render(buildInteger(props)); - expect(screen.getByDisplayValue("<11")).toBeInTheDocument(); - expect(screen.queryByDisplayValue("5")).not.toBeInTheDocument(); - }); - - it("should show original answer if passed >=11 with printView and lessThanEleven mask", () => { - const props = { - question: { - id: "2023-00-a-01-01", - label: "Example Question", - answer: { entry: "12" }, - mask: "lessThanEleven", - }, - printView: true, - }; - - render(buildInteger(props)); - expect(screen.getByDisplayValue("12")).toBeInTheDocument(); - }); - - it("should show original answer if passed 0 with printView and lessThanEleven mask", () => { - const props = { - question: { - id: "2023-00-a-01-01", - label: "Example Question", - answer: { entry: "0" }, - mask: "lessThanEleven", - }, - printView: true, - }; - - render(buildInteger(props)); - expect(screen.getByDisplayValue("0")).toBeInTheDocument(); - }); - - it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { - const props = { - question: { - id: "2023-03-c-05-03-a", - label: "How much?", - answer: { entry: null }, - }, - }; - - render(buildInteger(props)); - - expect(screen.getByDisplayValue("3000")).toBeInTheDocument(); - const input = screen.getByRole("textbox"); - fireEvent.change(input, { target: { value: 234 } }); - expect(screen.getByDisplayValue("234")).toBeInTheDocument(); - }); }); diff --git a/services/ui-src/src/components/fields/Money.jsx b/services/ui-src/src/components/fields/Money.jsx index dba1ac251..d7fcce141 100644 --- a/services/ui-src/src/components/fields/Money.jsx +++ b/services/ui-src/src/components/fields/Money.jsx @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import Integer from "./Integer"; +import { Integer } from "./Integer"; const Money = ({ ...props }) => { return ; diff --git a/services/ui-src/src/components/fields/Objective.jsx b/services/ui-src/src/components/fields/Objective.jsx index abf0796e7..a7470e65e 100644 --- a/services/ui-src/src/components/fields/Objective.jsx +++ b/services/ui-src/src/components/fields/Objective.jsx @@ -4,13 +4,14 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { +const Objective = ({ headerRef, objective, objectiveNumber }) => { const first = objective.questions[0].answer.readonly === true; const name = first ? objective.questions[0].answer.default_entry : objective.questions[0].answer.entry; const children = first ? objective.questions.slice(1) : objective.questions; + return ( <>
@@ -26,7 +27,7 @@ const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { {children.map((q) => (
- +
))}
@@ -37,7 +38,6 @@ Objective.propTypes = { headerRef: PropTypes.func.isRequired, objective: PropTypes.object.isRequired, objectiveNumber: PropTypes.number.isRequired, - printView: PropTypes.bool, }; export { Objective }; diff --git a/services/ui-src/src/components/fields/Objectives.jsx b/services/ui-src/src/components/fields/Objectives.jsx index f80167133..4953ed21f 100644 --- a/services/ui-src/src/components/fields/Objectives.jsx +++ b/services/ui-src/src/components/fields/Objectives.jsx @@ -16,9 +16,9 @@ const Objectives = ({ disabled, question, removeObjectiveFrom, - printView, }) => { const ref = useRef(); + const add = () => { addObjectiveTo(question.id); @@ -47,12 +47,7 @@ const Objectives = ({ > {question.questions.map((q, i) => ( - + ))} @@ -97,7 +92,6 @@ Objectives.propTypes = { disabled: PropTypes.bool.isRequired, question: PropTypes.object.isRequired, removeObjectiveFrom: PropTypes.func.isRequired, - printView: PropTypes.bool, }; const mapDispatchToProps = { diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 88716bebc..271024817 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -9,7 +9,7 @@ import { DateRange } from "./DateRange"; import { Email } from "./Email"; import { Fieldset } from "./Fieldset"; import UploadComponent from "../layout/UploadComponent"; -import Integer from "./Integer"; +import { Integer } from "./Integer"; import { MailingAddress } from "./MailingAddress"; import { Money } from "./Money"; import { Objectives } from "./Objectives"; @@ -57,14 +57,7 @@ Container.propTypes = { children: PropTypes.node.isRequired, }; -const Question = ({ - hideNumber, - question, - prevYear, - tableTitle, - printView, - ...props -}) => { +const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { let Component = Text; if (questionTypes.has(question.type)) { Component = questionTypes.get(question.type); @@ -151,7 +144,6 @@ const Question = ({ false } prevYear={prevYear} - printView={printView} /> {/* If there are subquestions, wrap them so they are indented with the @@ -161,12 +153,7 @@ const Question = ({ {shouldRenderChildren && (
{question.questions.map((q) => ( - + ))}
)} @@ -180,7 +167,6 @@ Question.propTypes = { question: PropTypes.object.isRequired, prevYear: PropTypes.object, tableTitle: PropTypes.string, - printView: PropTypes.bool, }; Question.defaultProps = { hideNumber: false, diff --git a/services/ui-src/src/components/fields/Repeatable.jsx b/services/ui-src/src/components/fields/Repeatable.jsx index 644f34a36..f32413bf4 100644 --- a/services/ui-src/src/components/fields/Repeatable.jsx +++ b/services/ui-src/src/components/fields/Repeatable.jsx @@ -4,7 +4,7 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Repeatable = ({ headerRef, number, question, type, printView }) => { +const Repeatable = ({ headerRef, number, question, type }) => { const children = question.questions ? question.questions : []; const title = type ? `${type} ${number}` : `${number}`; @@ -20,7 +20,7 @@ const Repeatable = ({ headerRef, number, question, type, printView }) => {
{children.map((q) => ( - + ))} @@ -31,7 +31,6 @@ Repeatable.propTypes = { number: PropTypes.number.isRequired, question: PropTypes.object.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), - printView: PropTypes.bool, }; Repeatable.defaultProps = { diff --git a/services/ui-src/src/components/fields/Repeatables.jsx b/services/ui-src/src/components/fields/Repeatables.jsx index dc66bf27b..14a13a72e 100644 --- a/services/ui-src/src/components/fields/Repeatables.jsx +++ b/services/ui-src/src/components/fields/Repeatables.jsx @@ -17,7 +17,6 @@ const Repeatables = ({ question, removeRepeatableFrom, type, - printView, }) => { const ref = useRef(); @@ -63,7 +62,6 @@ const Repeatables = ({ number={i + 1} question={q} type={question.typeLabel ? question.typeLabel : type} - printView={printView} /> ))} @@ -109,7 +107,6 @@ Repeatables.propTypes = { question: PropTypes.object.isRequired, removeRepeatableFrom: PropTypes.func.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), - printView: PropTypes.bool, }; Repeatables.defaultProps = { type: null, diff --git a/services/ui-src/src/components/layout/FormActions.jsx b/services/ui-src/src/components/layout/FormActions.jsx index f63403fd0..8013054bd 100644 --- a/services/ui-src/src/components/layout/FormActions.jsx +++ b/services/ui-src/src/components/layout/FormActions.jsx @@ -23,27 +23,14 @@ const FormActions = () => { const printDialogeRef = useRef(null); // Get section IDs and subsection IDs for printing single section - let searchParams = ""; - let sectionId = ""; - - if (currentUser.role === AppRoles.CMS_ADMIN) { - const stateId = window.location.href.split("/")[5]; - searchParams = document.location.pathname - .toString() - .replace(`views/sections/${stateId}/`, "") - .replace(formYear + "/", ""); - - sectionId = formYear + "-" + searchParams.substring(1, 3); - } else { - searchParams = document.location.pathname - .toString() - .replace("/sections/", "") - .replace(formYear + "/", ""); - - sectionId = formYear + "-" + searchParams.substring(0, 2); - } + let searchParams = document.location.pathname + .toString() + .replace("/sections/", "") + .replace(formYear + "/", ""); + const sectionId = formYear + "-" + searchParams.substring(0, 2); let subsectionId = sectionId + "-"; + if (sectionId.slice(-2) === "03") { subsectionId += searchParams.slice(-1); } else { diff --git a/services/ui-src/src/components/layout/FormActions.test.jsx b/services/ui-src/src/components/layout/FormActions.test.jsx index fdf31f5db..77967b362 100644 --- a/services/ui-src/src/components/layout/FormActions.test.jsx +++ b/services/ui-src/src/components/layout/FormActions.test.jsx @@ -9,14 +9,12 @@ import { stateUserWithReportInProgress, } from "../../store/fakeStoreExamples"; import { MemoryRouter } from "react-router"; -const firstLocation = "/sections/2021/00"; -const adminFirstLocation = "/views/sections/AL/2021/00"; const mockStore = configureMockStore(); const store = mockStore(stateUserWithReportInProgress); const formActions = ( - + @@ -24,76 +22,36 @@ const formActions = ( const adminStore = mockStore(adminUserWithReportInProgress); const adminFormActions = ( - + ); - describe("Fill Form Component", () => { - afterEach(() => { - jest.clearAllMocks(); - }); - - test("should render correctly", () => { + it("should render correctly", () => { expect(shallow(formActions).exists()).toBe(true); }); - test("should add hrefs given a section and subsection", () => { + it("should add hrefs given a section and subsection", () => { render(formActions); - window.history.pushState({}, "Title", "/sections/00"); - const printShowButton = screen.getByTestId("print-show"); - fireEvent.click(printShowButton); - const printFormButton = screen.getByTestId("print-form"); - const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" - ); - expect(printFormButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL" - ); - }); - - test("should add hrefs given a section and subsection for admin user", () => { - const setLocation = (path = "/") => { - delete window.location; - window.location = new URL("https://www.example.com" + path); - }; - - setLocation(adminFirstLocation); - render(adminFormActions); - window.history.pushState({}, "Title", "/00/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" - ); - expect(printFormButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL" - ); + expect(printPageButton).toHaveAttribute("href"); + expect(printFormButton).toHaveAttribute("href"); }); - test("should build the component when looking at section 3 subsections", () => { + it("should build the component when looking at section 3 subsections", () => { + window.history.pushState({}, "Title", "/sections/03"); render(adminFormActions); - window.history.pushState({}, "Title", "/03/a"); + window.history.pushState({}, "Title", "/sections/03"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL§ionId=2021-03&subsectionId=2021-03-a" - ); - expect(printFormButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL" - ); + expect(printPageButton).toHaveAttribute("href"); + expect(printFormButton).toHaveAttribute("href"); }); - test("should display print section or page on click", () => { + it("should display print section or page on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -102,7 +60,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toHaveTextContent("This Section"); expect(printFormButton).toHaveTextContent("Entire Form"); }); - test("should clear on click", () => { + it("should clear on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -114,7 +72,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toBeNull(); expect(printFormButton).toBeNull(); }); - test("should not clear on internal click, then clear on outside click", () => { + it("should not clear on internal click, then clear on outside click", () => { const map = {}; document.addEventListener = jest.fn((event, cb) => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index d2d5e8022..0e5a8b9a5 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -9,7 +9,7 @@ import { selectFragment } from "../../store/formData"; import { selectQuestionsForPart } from "../../store/selectors"; import { shouldDisplay } from "../../util/shouldDisplay"; -const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { +const Part = ({ partId, partNumber, nestedSubsectionTitle }) => { const [, section] = partId.split("-"); const [ @@ -67,7 +67,6 @@ const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { question={question} tableTitle={title} data-testid="part-question" - printView={printView} /> ))} diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index b204e1b25..88800ac85 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -8,7 +8,7 @@ import FormNavigation from "./FormNavigation"; import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; -const Section = ({ subsectionId, sectionId, printView }) => { +const Section = ({ subsectionId, sectionId }) => { const formData = useSelector((state) => state.formData); const title = selectSectionTitle(formData, sectionId); @@ -17,11 +17,7 @@ const Section = ({ subsectionId, sectionId, printView }) => {

{title}

- +
@@ -34,7 +30,6 @@ const Section = ({ subsectionId, sectionId, printView }) => { Section.propTypes = { subsectionId: PropTypes.string.isRequired, sectionId: PropTypes.number.isRequired, - printView: PropTypes.bool, }; export default Section; diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 6417beca6..67433a5b5 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -8,7 +8,7 @@ import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; //types import PropTypes from "prop-types"; -const Subsection = ({ subsectionId, printView }) => { +const Subsection = ({ subsectionId }) => { const formData = useSelector((state) => state.formData); const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); @@ -31,7 +31,6 @@ const Subsection = ({ subsectionId, printView }) => { partId={partId} partNumber={partIds.length > 1 ? index + 1 : null} nestedSubsectionTitle={!!title} - printView={printView} /> ))}
@@ -39,7 +38,6 @@ const Subsection = ({ subsectionId, printView }) => { }; Subsection.propTypes = { subsectionId: PropTypes.string.isRequired, - printView: PropTypes.bool, }; Subsection.defaultProps = { text: null, diff --git a/services/ui-src/src/components/sections/Print.jsx b/services/ui-src/src/components/sections/Print.jsx index f7bc26f35..e313f5f9b 100644 --- a/services/ui-src/src/components/sections/Print.jsx +++ b/services/ui-src/src/components/sections/Print.jsx @@ -140,7 +140,6 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" - printView="true" /> ); } else { @@ -165,7 +164,6 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" - printView="true" /> ); } diff --git a/services/ui-src/src/util/synthesize.js b/services/ui-src/src/util/synthesize.js index 497eabff0..361d698c7 100644 --- a/services/ui-src/src/util/synthesize.js +++ b/services/ui-src/src/util/synthesize.js @@ -215,20 +215,6 @@ const snakeToCamel = (str) => group.toUpperCase().replace("-", "").replace("_", "") ); -// returns the state abbreviation for the associated report -const getStateAbbr = (stateUserAbbr) => { - if (stateUserAbbr) return stateUserAbbr; - const windowPathName = window.location.pathname; - // if admin, grab the state from the URL - const stateFromURL = windowPathName.split("/")[3]; - - // if admin and in a print view get state param - const urlSearchParams = new URLSearchParams(window.location.search); - const stateFromParams = urlSearchParams.get("state"); - - return windowPathName.includes("print") ? stateFromParams : stateFromURL; -}; - /** * Retrieve acsSet from state and return for individual state. * @@ -244,13 +230,26 @@ const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { ? snakeToCamel(acsProperty) : acsProperty; - // if allStatesData is a populated array - if (allStatesData?.length > 0) { - const stateAbbr = getStateAbbr(stateUserAbbr); + // if allStatesData and stateUser are available + if (allStatesData && stateUserAbbr) { + const windowPathName = window.location.pathname; + // if admin, grab the state from the URL + const stateFromURL = windowPathName.split("/")[3]; - // Find data for matching state - const stateData = allStatesData.find((st) => st.code === stateAbbr); - const acs = stateData?.acsSet.find((year) => year.year === +ffy); + // if admin and in a print view get state param + const urlSearchParams = new URLSearchParams(window.location.search); + const stateFromParams = urlSearchParams.get("state"); + + // Get stateUser state or fallback to the URL, if an admin + const stateAbbr = + stateUserAbbr || + (windowPathName.includes("print") ? stateFromParams : stateFromURL); + + // Filter for only matching state + const stateData = allStatesData.filter((st) => st.code === stateAbbr)[0]; + + // Filter for matching state from JSON + const acs = stateData?.acsSet.filter((year) => year.year === +ffy)[0]; // If acs exists, return the value from the object if (acs) { @@ -280,18 +279,20 @@ export const compareACS = ( ) => { const percentagePrecision = 2; let returnValue = "Not Available"; - // if allStatesData is a populated array - if (allStatesData?.length > 0) { - const stateAbbr = getStateAbbr(stateUserAbbr); - const stateData = allStatesData.find((st) => st.code === stateAbbr); - - // Find the correct year of state data - const startACS = stateData?.acsSet.find( + // if allStatesData and stateUser are available + if (allStatesData && stateUserAbbr) { + // Filter for only matching state + const stateData = allStatesData.filter( + (st) => st.code === stateUserAbbr + )[0]; + + // Filter for the correct year of state data + const startACS = stateData?.acsSet.filter( (year) => year.year === parseInt(ffy1, 10) - ); - const endACS = stateData?.acsSet.find( + )[0]; + const endACS = stateData?.acsSet.filter( (year) => year.year === parseInt(ffy2, 10) - ); + )[0]; // If start year and end year of ACS exist, return the calculated value (percent change) from the objects if (startACS && endACS) { diff --git a/services/ui-src/src/util/synthesize.test.js b/services/ui-src/src/util/synthesize.test.js index 43aed8a7b..a9f17cc45 100644 --- a/services/ui-src/src/util/synthesize.test.js +++ b/services/ui-src/src/util/synthesize.test.js @@ -128,7 +128,7 @@ const fallbackChipState = { }, }; -describe("value synthesis utility", () => { +describe("value synthesization utility", () => { describe("handles identity", () => { test("with no values", () => { // Returns undefined, because there's not a value @@ -615,29 +615,6 @@ describe("value synthesis utility", () => { ); expect(out).toEqual({ contents: ["3.70%"] }); }); - - it("compares two ffys as admin user", () => { - Object.defineProperty(window, "location", { - value: { - pathname: "/views/sections/AL/2023/02", - }, - }); - const out = synthesize( - { - compareACS: { - ffy1: 2021, - ffy2: 2020, - acsProperty: "numberUninsured", - }, - }, - state.allStatesData, - state.global.stateName, - undefined, // state user abbreviation - state.enrollmentCounts.chipEnrollments, - state.formData - ); - expect(out).toEqual({ contents: ["3.70%"] }); - }); }); describe("handles CHIPS Enrollment Data", () => { diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index 232dd1a4b..38b7929fb 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -3124,120 +3124,120 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@esbuild/aix-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" - integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== - -"@esbuild/android-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" - integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== - -"@esbuild/android-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" - integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== - -"@esbuild/android-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" - integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== - -"@esbuild/darwin-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" - integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== - -"@esbuild/darwin-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" - integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== - -"@esbuild/freebsd-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" - integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== - -"@esbuild/freebsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" - integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== - -"@esbuild/linux-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" - integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== - -"@esbuild/linux-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" - integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== - -"@esbuild/linux-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" - integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== - -"@esbuild/linux-loong64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" - integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== - -"@esbuild/linux-mips64el@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" - integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== - -"@esbuild/linux-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" - integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== - -"@esbuild/linux-riscv64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" - integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== - -"@esbuild/linux-s390x@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" - integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== - -"@esbuild/linux-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" - integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== - -"@esbuild/netbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" - integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== - -"@esbuild/openbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" - integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== - -"@esbuild/sunos-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" - integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== - -"@esbuild/win32-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" - integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== - -"@esbuild/win32-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" - integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== - -"@esbuild/win32-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" - integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== +"@esbuild/aix-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" + integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== + +"@esbuild/android-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" + integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== + +"@esbuild/android-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" + integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== + +"@esbuild/android-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" + integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== + +"@esbuild/darwin-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" + integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== + +"@esbuild/darwin-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" + integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== + +"@esbuild/freebsd-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" + integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== + +"@esbuild/freebsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" + integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== + +"@esbuild/linux-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" + integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== + +"@esbuild/linux-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" + integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== + +"@esbuild/linux-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" + integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== + +"@esbuild/linux-loong64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" + integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== + +"@esbuild/linux-mips64el@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" + integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== + +"@esbuild/linux-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" + integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== + +"@esbuild/linux-riscv64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" + integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== + +"@esbuild/linux-s390x@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" + integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== + +"@esbuild/linux-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" + integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== + +"@esbuild/netbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" + integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== + +"@esbuild/openbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" + integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== + +"@esbuild/sunos-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" + integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== + +"@esbuild/win32-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" + integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== + +"@esbuild/win32-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" + integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== + +"@esbuild/win32-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" + integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -3748,85 +3748,85 @@ "@babel/runtime" "^7.23.2" immutable "^4.3.4" -"@rollup/rollup-android-arm-eabi@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.2.tgz#4e0c4c462692ecb7ae2b008f25af4cced05ac4f9" - integrity sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw== - -"@rollup/rollup-android-arm64@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.2.tgz#d97ed02a950061adc2056d6d2d6df8f05d877ae9" - integrity sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ== - -"@rollup/rollup-darwin-arm64@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.2.tgz#06dec35316de9fe433d66c849ecc056e221ba422" - integrity sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg== - -"@rollup/rollup-darwin-x64@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.2.tgz#22ee27a0ccfdc045c2a37f6980351329516ce119" - integrity sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q== - -"@rollup/rollup-linux-arm-gnueabihf@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.2.tgz#d86df2d8c600ebdd7251110a3357c53e0a583ace" - integrity sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg== - -"@rollup/rollup-linux-arm-musleabihf@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.2.tgz#a8b7b6a805356c8bd0409e4c5f56664d80a50aaa" - integrity sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ== - -"@rollup/rollup-linux-arm64-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.2.tgz#766064021d2bfc42f13f4653f8870a9b8bbdc31d" - integrity sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A== - -"@rollup/rollup-linux-arm64-musl@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.2.tgz#490f49236102b97738d9406eaf5cd8d9dad35c15" - integrity sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.2.tgz#03a67f1476dd80f115ce35bc9b0d03c50c16679d" - integrity sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg== - -"@rollup/rollup-linux-riscv64-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.2.tgz#d86e9b7b5b242652cd691c46d1939130c35cb68d" - integrity sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg== - -"@rollup/rollup-linux-s390x-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.2.tgz#c8fca373bec6df8550b31b3dbb56e2b241bc8718" - integrity sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA== - -"@rollup/rollup-linux-x64-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.2.tgz#be182ef761c9b0147496e647ace44fd1b912344f" - integrity sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ== - -"@rollup/rollup-linux-x64-musl@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.2.tgz#c280202d5b54d04f1e2b810359fe73c4973e8b72" - integrity sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g== - -"@rollup/rollup-win32-arm64-msvc@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.2.tgz#8ae561401b92acb8ca7a842ffadececb22a2247e" - integrity sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA== - -"@rollup/rollup-win32-ia32-msvc@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.2.tgz#c3a8b081595026eab9fccfe581624cb31af0d6f8" - integrity sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw== - -"@rollup/rollup-win32-x64-msvc@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.2.tgz#c770006ccc780b2de7b2151fc7f37b49121a21c1" - integrity sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA== +"@rollup/rollup-android-arm-eabi@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" + integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== + +"@rollup/rollup-android-arm64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" + integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== + +"@rollup/rollup-darwin-arm64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" + integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== + +"@rollup/rollup-darwin-x64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" + integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== + +"@rollup/rollup-linux-arm-gnueabihf@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" + integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== + +"@rollup/rollup-linux-arm-musleabihf@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" + integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== + +"@rollup/rollup-linux-arm64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" + integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== + +"@rollup/rollup-linux-arm64-musl@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" + integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" + integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== + +"@rollup/rollup-linux-riscv64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" + integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== + +"@rollup/rollup-linux-s390x-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" + integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== + +"@rollup/rollup-linux-x64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" + integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== + +"@rollup/rollup-linux-x64-musl@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" + integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== + +"@rollup/rollup-win32-arm64-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" + integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== + +"@rollup/rollup-win32-ia32-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" + integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== + +"@rollup/rollup-win32-x64-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" + integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== "@sheerun/mutationobserver-shim@^0.3.2": version "0.3.3" @@ -6271,34 +6271,34 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.21.3: - version "0.21.5" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" - integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== +esbuild@^0.20.1: + version "0.20.2" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" + integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== optionalDependencies: - "@esbuild/aix-ppc64" "0.21.5" - "@esbuild/android-arm" "0.21.5" - "@esbuild/android-arm64" "0.21.5" - "@esbuild/android-x64" "0.21.5" - "@esbuild/darwin-arm64" "0.21.5" - "@esbuild/darwin-x64" "0.21.5" - "@esbuild/freebsd-arm64" "0.21.5" - "@esbuild/freebsd-x64" "0.21.5" - "@esbuild/linux-arm" "0.21.5" - "@esbuild/linux-arm64" "0.21.5" - "@esbuild/linux-ia32" "0.21.5" - "@esbuild/linux-loong64" "0.21.5" - "@esbuild/linux-mips64el" "0.21.5" - "@esbuild/linux-ppc64" "0.21.5" - "@esbuild/linux-riscv64" "0.21.5" - "@esbuild/linux-s390x" "0.21.5" - "@esbuild/linux-x64" "0.21.5" - "@esbuild/netbsd-x64" "0.21.5" - "@esbuild/openbsd-x64" "0.21.5" - "@esbuild/sunos-x64" "0.21.5" - "@esbuild/win32-arm64" "0.21.5" - "@esbuild/win32-ia32" "0.21.5" - "@esbuild/win32-x64" "0.21.5" + "@esbuild/aix-ppc64" "0.20.2" + "@esbuild/android-arm" "0.20.2" + "@esbuild/android-arm64" "0.20.2" + "@esbuild/android-x64" "0.20.2" + "@esbuild/darwin-arm64" "0.20.2" + "@esbuild/darwin-x64" "0.20.2" + "@esbuild/freebsd-arm64" "0.20.2" + "@esbuild/freebsd-x64" "0.20.2" + "@esbuild/linux-arm" "0.20.2" + "@esbuild/linux-arm64" "0.20.2" + "@esbuild/linux-ia32" "0.20.2" + "@esbuild/linux-loong64" "0.20.2" + "@esbuild/linux-mips64el" "0.20.2" + "@esbuild/linux-ppc64" "0.20.2" + "@esbuild/linux-riscv64" "0.20.2" + "@esbuild/linux-s390x" "0.20.2" + "@esbuild/linux-x64" "0.20.2" + "@esbuild/netbsd-x64" "0.20.2" + "@esbuild/openbsd-x64" "0.20.2" + "@esbuild/sunos-x64" "0.20.2" + "@esbuild/win32-arm64" "0.20.2" + "@esbuild/win32-ia32" "0.20.2" + "@esbuild/win32-x64" "0.20.2" escalade@^3.1.1: version "3.1.1" @@ -9237,11 +9237,6 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picocolors@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== - picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -9279,14 +9274,14 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= -postcss@^8.4.43: - version "8.4.47" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== +postcss@^8.4.38: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" - source-map-js "^1.2.1" + picocolors "^1.0.0" + source-map-js "^1.2.0" prelude-ls@~1.1.2: version "1.1.2" @@ -9948,29 +9943,29 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^4.20.0: - version "4.22.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.2.tgz#d762fa52c6ddb1307c1d6e8b463ba79432ffbb6b" - integrity sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg== +rollup@^4.13.0: + version "4.17.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" + integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.22.2" - "@rollup/rollup-android-arm64" "4.22.2" - "@rollup/rollup-darwin-arm64" "4.22.2" - "@rollup/rollup-darwin-x64" "4.22.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.22.2" - "@rollup/rollup-linux-arm-musleabihf" "4.22.2" - "@rollup/rollup-linux-arm64-gnu" "4.22.2" - "@rollup/rollup-linux-arm64-musl" "4.22.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.22.2" - "@rollup/rollup-linux-riscv64-gnu" "4.22.2" - "@rollup/rollup-linux-s390x-gnu" "4.22.2" - "@rollup/rollup-linux-x64-gnu" "4.22.2" - "@rollup/rollup-linux-x64-musl" "4.22.2" - "@rollup/rollup-win32-arm64-msvc" "4.22.2" - "@rollup/rollup-win32-ia32-msvc" "4.22.2" - "@rollup/rollup-win32-x64-msvc" "4.22.2" + "@rollup/rollup-android-arm-eabi" "4.17.2" + "@rollup/rollup-android-arm64" "4.17.2" + "@rollup/rollup-darwin-arm64" "4.17.2" + "@rollup/rollup-darwin-x64" "4.17.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" + "@rollup/rollup-linux-arm-musleabihf" "4.17.2" + "@rollup/rollup-linux-arm64-gnu" "4.17.2" + "@rollup/rollup-linux-arm64-musl" "4.17.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" + "@rollup/rollup-linux-riscv64-gnu" "4.17.2" + "@rollup/rollup-linux-s390x-gnu" "4.17.2" + "@rollup/rollup-linux-x64-gnu" "4.17.2" + "@rollup/rollup-linux-x64-musl" "4.17.2" + "@rollup/rollup-win32-arm64-msvc" "4.17.2" + "@rollup/rollup-win32-ia32-msvc" "4.17.2" + "@rollup/rollup-win32-x64-msvc" "4.17.2" fsevents "~2.3.2" rst-selector-parser@^2.2.3: @@ -10222,10 +10217,10 @@ snapdragon@^0.8.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-js@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" - integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" @@ -10955,14 +10950,14 @@ vite-tsconfig-paths@^4.3.2: globrex "^0.1.2" tsconfck "^3.0.3" -vite@^5.4.6: - version "5.4.6" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" - integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== +vite@^5.2.11: + version "5.2.11" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd" + integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== dependencies: - esbuild "^0.21.3" - postcss "^8.4.43" - rollup "^4.20.0" + esbuild "^0.20.1" + postcss "^8.4.38" + rollup "^4.13.0" optionalDependencies: fsevents "~2.3.3" diff --git a/tests/cypress/tests/integration/submitAndUncertify.spec.js b/tests/cypress/tests/integration/submitAndUncertify.spec.js index 23f06347d..b21567c32 100644 --- a/tests/cypress/tests/integration/submitAndUncertify.spec.js +++ b/tests/cypress/tests/integration/submitAndUncertify.spec.js @@ -21,7 +21,6 @@ describe("CARTS Submit and Uncertify Integration Tests", () => { cy.get(certifySubmitButton).click(); cy.get("button").contains("Confirm Certify and Submit").click(); - cy.wait(3000); cy.get("button").contains("Return Home").click(); // log in as CMS Admin (user who can uncertify) From 0dd1f6bef379aa366a0aeded8bb5f49fdc5886ac Mon Sep 17 00:00:00 2001 From: Nick Summers Date: Tue, 24 Sep 2024 15:25:56 -0400 Subject: [PATCH 16/24] Revert "Rollback to Arch Diagram (#139777)" (#139779) --- .github/workflows/destroy.yml | 16 +- .../scan_security-hub-jira-integration.yml | 5 +- .images/architecture.svg | 2 +- .../libs/validation/backend-section.schema.ts | 3 + .../data/seed-local/seed-section.json | 14633 ++++------------ services/ui-src/package.json | 2 +- .../ui-src/src/components/fields/DataGrid.jsx | 19 +- .../ui-src/src/components/fields/Integer.jsx | 86 +- .../src/components/fields/Integer.test.jsx | 105 +- .../ui-src/src/components/fields/Money.jsx | 2 +- .../src/components/fields/Objective.jsx | 6 +- .../src/components/fields/Objectives.jsx | 10 +- .../ui-src/src/components/fields/Question.jsx | 20 +- .../src/components/fields/Repeatable.jsx | 5 +- .../src/components/fields/Repeatables.jsx | 3 + .../src/components/layout/FormActions.jsx | 25 +- .../components/layout/FormActions.test.jsx | 70 +- .../ui-src/src/components/layout/Part.jsx | 3 +- .../ui-src/src/components/layout/Section.jsx | 9 +- .../src/components/layout/Subsection.jsx | 4 +- .../ui-src/src/components/sections/Print.jsx | 2 + services/ui-src/src/util/synthesize.js | 61 +- services/ui-src/src/util/synthesize.test.js | 25 +- services/ui-src/yarn.lock | 519 +- .../integration/submitAndUncertify.spec.js | 1 + 25 files changed, 4329 insertions(+), 11307 deletions(-) diff --git a/.github/workflows/destroy.yml b/.github/workflows/destroy.yml index e1033651b..0a96661ec 100644 --- a/.github/workflows/destroy.yml +++ b/.github/workflows/destroy.yml @@ -65,4 +65,18 @@ jobs: inputs: '{ "topics": "mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.config,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.offsets,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.status"}' ref: refs/heads/master # Otherwise workflow-dispatch tries to operate off of our default name - name: Destroy - run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false \ No newline at end of file + run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false + + # Notify the integrations channel when a destroy action fails + notify_on_destroy_failure: + runs-on: ubuntu-latest + needs: + - destroy + if: ${{ failure() }} + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}." + MSG_MINIMAL: true + SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} \ No newline at end of file diff --git a/.github/workflows/scan_security-hub-jira-integration.yml b/.github/workflows/scan_security-hub-jira-integration.yml index c891ab340..2428a1458 100644 --- a/.github/workflows/scan_security-hub-jira-integration.yml +++ b/.github/workflows/scan_security-hub-jira-integration.yml @@ -21,13 +21,12 @@ jobs: aws-region: ${{ secrets.AWS_DEFAULT_REGION }} role-to-assume: ${{ secrets.PRODUCTION_SYNC_OIDC_ROLE }} - name: Sync Security Hub and Jira - uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v1.0.5 + uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v2.0.9 with: jira-username: "mdct_github_service_account" jira-token: ${{ secrets.JIRA_ENT_USER_TOKEN }} - jira-host: jiraent.cms.gov jira-project-key: CMDCT jira-ignore-statuses: Done, Closed, Canceled jira-custom-fields: '{ "customfield_10100": "CMDCT-2280", "customfield_26700" : [{"id": "40101", "value": "CARTS"}] }' aws-severities: CRITICAL, HIGH, MEDIUM - assign-jira-ticket-to: "MWTW" + jira-assignee: "MWTW" diff --git a/.images/architecture.svg b/.images/architecture.svg index d7d40c838..a222bc1dd 100644 --- a/.images/architecture.svg +++ b/.images/architecture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/services/app-api/libs/validation/backend-section.schema.ts b/services/app-api/libs/validation/backend-section.schema.ts index 3383d025c..9ae88e986 100644 --- a/services/app-api/libs/validation/backend-section.schema.ts +++ b/services/app-api/libs/validation/backend-section.schema.ts @@ -359,6 +359,9 @@ export const sectionSchema = { hint: { type: "string", }, + mask: { + type: "string", + }, questions: { type: "array", items: { diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index faa2eab30..c0a87b848 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -75,42 +75,32 @@ "id": "2023-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-07", "hint": "Include city, state, and zip code.", "type": "mailing_address", "label": "Full mailing address:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -159,14 +149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -174,9 +158,7 @@ "id": "2023-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -200,14 +182,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -221,14 +197,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -265,9 +235,7 @@ "id": "2023-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -307,14 +275,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -352,9 +314,7 @@ "id": "2023-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -375,9 +335,7 @@ "id": "2023-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-01-05", @@ -387,18 +345,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -406,9 +358,7 @@ "id": "2023-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -431,14 +381,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -446,9 +390,7 @@ "id": "2023-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -472,14 +414,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -493,14 +429,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -537,9 +467,7 @@ "id": "2023-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -579,14 +507,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -624,9 +546,7 @@ "id": "2023-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -647,9 +567,7 @@ "id": "2023-01-a-02-04", "type": "text_multiline", "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-02-05", @@ -659,18 +577,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -678,9 +590,7 @@ "id": "2023-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -701,14 +611,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -722,14 +626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -744,14 +642,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -766,14 +658,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -787,14 +673,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -809,19 +689,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-03-07", @@ -831,19 +703,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-03-08", @@ -853,19 +717,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-03-09", @@ -875,14 +731,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -896,14 +746,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -918,14 +762,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -940,19 +778,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-03-13", @@ -961,14 +791,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -982,14 +806,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1003,14 +821,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1024,19 +836,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1045,9 +849,7 @@ "id": "2023-01-a-03-17", "type": "text_multiline", "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-03-18", @@ -1056,14 +858,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1122,14 +918,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1143,14 +933,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1165,14 +949,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1187,14 +965,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1208,14 +980,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1230,19 +996,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-04-07", @@ -1252,19 +1010,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-04-08", @@ -1274,19 +1024,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-04-09", @@ -1296,19 +1038,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2023-01-a-04-10", @@ -1317,14 +1051,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1338,14 +1066,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1360,14 +1082,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1382,19 +1098,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-04-14", @@ -1403,14 +1111,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1425,14 +1127,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1447,14 +1143,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1468,14 +1158,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1489,14 +1173,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1510,19 +1188,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1531,9 +1201,7 @@ "id": "2023-01-a-04-20", "type": "text_multiline", "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-04-21", @@ -1542,14 +1210,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1633,9 +1295,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1658,9 +1318,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1684,18 +1342,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2022" }, { "contents": "Number of children enrolled in FFY 2023" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table" @@ -1704,9 +1358,7 @@ "id": "2023-02-a-01-01", "type": "text_multiline", "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1752,9 +1404,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -1781,9 +1431,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -1810,9 +1458,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -1839,9 +1485,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -1868,9 +1512,7 @@ } ], [ - { - "contents": "2022" - }, + { "contents": "2022" }, { "lookupAcs": { "ffy": "2022", @@ -1898,21 +1540,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -1956,9 +1590,7 @@ "id": "2023-02-a-02-01", "type": "text_multiline", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1994,14 +1626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2009,9 +1635,7 @@ "id": "2023-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2035,14 +1659,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2053,9 +1671,7 @@ "id": "2023-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-b", @@ -2070,49 +1686,37 @@ "id": "2023-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2135,17 +1739,13 @@ "id": "2023-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2185,14 +1785,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2200,9 +1794,7 @@ "id": "2023-03-a-01-01-a", "type": "text_multiline", "label": "What are you doing differently?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2227,14 +1819,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2242,9 +1828,7 @@ "id": "2023-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2266,25 +1850,19 @@ "hint": "For example: TV, school outreach, or word of mouth.", "type": "text_multiline", "label": "What methods have been most effective in reaching low-income, uninsured children?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2307,18 +1885,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2326,9 +1895,7 @@ "id": "2023-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2352,18 +1919,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2371,9 +1929,7 @@ "id": "2023-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2394,9 +1950,7 @@ "id": "2023-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -2408,18 +1962,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2430,9 +1975,7 @@ "id": "2023-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2453,9 +1996,7 @@ "id": "2023-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2474,9 +2015,7 @@ "id": "2023-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2495,9 +2034,7 @@ "id": "2023-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2527,17 +2064,13 @@ "id": "2023-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2561,18 +2094,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2583,17 +2107,13 @@ "id": "2023-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2619,14 +2139,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -2637,14 +2151,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2655,17 +2163,13 @@ "id": "2023-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-03-b", "type": "text", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2688,33 +2192,25 @@ "id": "2023-03-c-01-04", "type": "text_multiline", "label": "What else have you done to simplify the eligibility renewal process for families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-05", "type": "text_multiline", "label": "Which retention strategies have you found to be most effective?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-06", "type": "text_multiline", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -2728,54 +2224,47 @@ "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2023? This number should be equal to the total of reported numbers for questions 2-4 below.", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "id": "2023-03-c-02-03-a", "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This table is auto-populated with the data you entered above.", @@ -2785,9 +2274,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-01')].answer.entry" @@ -2802,9 +2289,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-02')].answer.entry" @@ -2819,9 +2304,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-03')].answer.entry" @@ -2836,9 +2319,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-04')].answer.entry" @@ -2854,15 +2335,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -2879,34 +2354,29 @@ "id": "2023-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2927,36 +2397,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3018,15 +2484,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3108,15 +2568,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3133,34 +2587,29 @@ "id": "2023-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -3181,36 +2630,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3272,15 +2717,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3362,15 +2801,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3415,14 +2848,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -3439,9 +2866,7 @@ "id": "2023-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3453,7 +2878,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3477,33 +2903,29 @@ "id": "2023-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3521,9 +2943,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-03" - }, + "fieldset_info": { "id": "2023-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -3540,9 +2960,7 @@ "id": "2023-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3554,7 +2972,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3578,33 +2997,29 @@ "id": "2023-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3622,9 +3037,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-04" - }, + "fieldset_info": { "id": "2023-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -3635,9 +3048,7 @@ "id": "2023-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3649,7 +3060,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3673,33 +3085,29 @@ "id": "2023-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3717,9 +3125,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-05" - }, + "fieldset_info": { "id": "2023-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -3730,9 +3136,7 @@ "id": "2023-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3744,7 +3148,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3768,33 +3173,29 @@ "id": "2023-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3812,9 +3213,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-06" - }, + "fieldset_info": { "id": "2023-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -3826,9 +3225,7 @@ "id": "2023-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3840,7 +3237,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3864,33 +3262,29 @@ "id": "2023-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3908,9 +3302,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-07" - }, + "fieldset_info": { "id": "2023-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -3921,9 +3313,7 @@ "id": "2023-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3935,7 +3325,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3959,33 +3350,29 @@ "id": "2023-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4003,18 +3390,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-08" - }, + "fieldset_info": { "id": "2023-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -4031,9 +3414,7 @@ "id": "2023-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4045,7 +3426,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4069,33 +3451,29 @@ "id": "2023-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4113,9 +3491,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-10" - }, + "fieldset_info": { "id": "2023-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -4126,9 +3502,7 @@ "id": "2023-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4140,7 +3514,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4164,33 +3539,29 @@ "id": "2023-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4208,9 +3579,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-11" - }, + "fieldset_info": { "id": "2023-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -4221,9 +3590,7 @@ "id": "2023-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4235,7 +3602,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4259,33 +3627,29 @@ "id": "2023-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4303,9 +3667,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-12" - }, + "fieldset_info": { "id": "2023-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -4317,9 +3679,7 @@ "id": "2023-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4331,7 +3691,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4355,33 +3716,29 @@ "id": "2023-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4399,9 +3756,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-13" - }, + "fieldset_info": { "id": "2023-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -4412,9 +3767,7 @@ "id": "2023-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4426,7 +3779,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4450,33 +3804,29 @@ "id": "2023-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4494,9 +3844,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-14" - }, + "fieldset_info": { "id": "2023-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -4514,9 +3862,7 @@ "id": "2023-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4528,7 +3874,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4552,33 +3899,29 @@ "id": "2023-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4596,9 +3939,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-15" - }, + "fieldset_info": { "id": "2023-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -4609,9 +3950,7 @@ "id": "2023-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4623,7 +3962,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4647,33 +3987,29 @@ "id": "2023-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4691,9 +4027,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-16" - }, + "fieldset_info": { "id": "2023-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -4704,9 +4038,7 @@ "id": "2023-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4718,7 +4050,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4742,33 +4075,29 @@ "id": "2023-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4786,9 +4115,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-17" - }, + "fieldset_info": { "id": "2023-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -4800,9 +4127,7 @@ "id": "2023-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4814,7 +4139,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4838,33 +4164,29 @@ "id": "2023-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4882,9 +4204,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-18" - }, + "fieldset_info": { "id": "2023-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -4895,9 +4215,7 @@ "id": "2023-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4909,7 +4227,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4933,33 +4252,29 @@ "id": "2023-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4977,18 +4292,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-19" - }, + "fieldset_info": { "id": "2023-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -5030,14 +4341,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -5054,9 +4359,7 @@ "id": "2023-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5068,7 +4371,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5092,33 +4396,29 @@ "id": "2023-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5136,9 +4436,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-03" - }, + "fieldset_info": { "id": "2023-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -5155,9 +4453,7 @@ "id": "2023-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5169,7 +4465,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5193,33 +4490,29 @@ "id": "2023-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5237,9 +4530,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-04" - }, + "fieldset_info": { "id": "2023-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -5250,9 +4541,7 @@ "id": "2023-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5264,7 +4553,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5288,33 +4578,29 @@ "id": "2023-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5332,9 +4618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-05" - }, + "fieldset_info": { "id": "2023-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -5345,9 +4629,7 @@ "id": "2023-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5359,7 +4641,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5383,33 +4666,29 @@ "id": "2023-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5427,9 +4706,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-06" - }, + "fieldset_info": { "id": "2023-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -5441,9 +4718,7 @@ "id": "2023-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5455,7 +4730,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5479,33 +4755,29 @@ "id": "2023-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5523,9 +4795,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-07" - }, + "fieldset_info": { "id": "2023-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -5536,9 +4806,7 @@ "id": "2023-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5550,7 +4818,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5574,33 +4843,29 @@ "id": "2023-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5618,18 +4883,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-08" - }, + "fieldset_info": { "id": "2023-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -5646,9 +4907,7 @@ "id": "2023-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5660,7 +4919,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5684,33 +4944,29 @@ "id": "2023-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5728,9 +4984,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-10" - }, + "fieldset_info": { "id": "2023-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -5741,9 +4995,7 @@ "id": "2023-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5755,7 +5007,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5779,33 +5032,29 @@ "id": "2023-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5823,9 +5072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-11" - }, + "fieldset_info": { "id": "2023-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -5836,9 +5083,7 @@ "id": "2023-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5850,7 +5095,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5874,33 +5120,29 @@ "id": "2023-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5918,9 +5160,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-12" - }, + "fieldset_info": { "id": "2023-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -5932,9 +5172,7 @@ "id": "2023-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5946,7 +5184,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5970,33 +5209,29 @@ "id": "2023-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6014,9 +5249,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-13" - }, + "fieldset_info": { "id": "2023-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -6027,9 +5260,7 @@ "id": "2023-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6041,7 +5272,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6065,33 +5297,29 @@ "id": "2023-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6109,9 +5337,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-14" - }, + "fieldset_info": { "id": "2023-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -6129,9 +5355,7 @@ "id": "2023-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6143,7 +5367,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6167,33 +5392,29 @@ "id": "2023-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6211,9 +5432,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-15" - }, + "fieldset_info": { "id": "2023-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -6224,9 +5443,7 @@ "id": "2023-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6238,7 +5455,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6262,33 +5480,29 @@ "id": "2023-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6306,9 +5520,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-16" - }, + "fieldset_info": { "id": "2023-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -6319,9 +5531,7 @@ "id": "2023-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6333,7 +5543,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6357,33 +5568,29 @@ "id": "2023-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6401,9 +5608,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-17" - }, + "fieldset_info": { "id": "2023-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -6415,9 +5620,7 @@ "id": "2023-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6429,7 +5632,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6453,33 +5657,29 @@ "id": "2023-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6497,9 +5697,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-18" - }, + "fieldset_info": { "id": "2023-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -6510,9 +5708,7 @@ "id": "2023-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6524,7 +5720,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6548,33 +5745,29 @@ "id": "2023-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6592,18 +5785,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-19" - }, + "fieldset_info": { "id": "2023-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -6626,14 +5815,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6655,18 +5838,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -6674,9 +5851,7 @@ "id": "2023-03-d-01-02-a", "type": "text_multiline", "label": "What information or tools do you provide families with so they can track cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6706,9 +5881,7 @@ "id": "2023-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6739,17 +5912,13 @@ "id": "2023-03-d-01-03", "type": "text_multiline", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-05", @@ -6758,14 +5927,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6773,9 +5936,7 @@ "id": "2023-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6799,14 +5960,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6814,9 +5969,7 @@ "id": "2023-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6837,9 +5990,7 @@ "id": "2023-03-d-01-07", "type": "text_multiline", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6861,17 +6012,13 @@ "id": "2023-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -6914,14 +6061,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -6961,14 +6102,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6977,9 +6112,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-04", @@ -6989,14 +6122,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7008,18 +6135,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -7031,14 +6149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7046,9 +6158,7 @@ "id": "2023-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7069,9 +6179,7 @@ "id": "2023-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -7080,25 +6188,19 @@ "id": "2023-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-09", "type": "text", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-10", "type": "text", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7131,15 +6233,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -7199,41 +6295,31 @@ "id": "2023-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7270,14 +6356,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7288,14 +6368,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7306,14 +6380,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7321,9 +6389,7 @@ "id": "2023-03-f-01-04", "type": "text_multiline", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-05", @@ -7332,18 +6398,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -7351,9 +6408,7 @@ "id": "2023-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the managed care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7374,17 +6429,15 @@ "id": "2023-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7393,17 +6446,13 @@ "id": "2023-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7414,17 +6463,13 @@ "id": "2023-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-11", "type": "integer", "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7435,17 +6480,15 @@ "id": "2023-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -7456,10 +6499,7 @@ "answer": { "entry": null, "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -7474,14 +6514,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7489,9 +6523,7 @@ "id": "2023-03-f-01-15-a", "type": "text_multiline", "label": "How do you provide oversight of the contractors? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7515,14 +6547,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7530,9 +6556,7 @@ "id": "2023-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7553,17 +6577,13 @@ "id": "2023-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7597,14 +6617,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7616,9 +6630,7 @@ "id": "2023-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7630,7 +6642,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7656,49 +6669,43 @@ "id": "2023-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7716,9 +6723,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-02" - }, + "fieldset_info": { "id": "2023-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -7729,9 +6734,7 @@ "id": "2023-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7743,7 +6746,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7769,49 +6773,43 @@ "id": "2023-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7829,9 +6827,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-03" - }, + "fieldset_info": { "id": "2023-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -7848,9 +6844,7 @@ "id": "2023-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7862,7 +6856,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7888,49 +6883,43 @@ "id": "2023-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7948,9 +6937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-04" - }, + "fieldset_info": { "id": "2023-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -7968,9 +6955,7 @@ "id": "2023-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7982,7 +6967,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8008,49 +6994,43 @@ "id": "2023-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -8068,9 +7048,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-05" - }, + "fieldset_info": { "id": "2023-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -8083,9 +7061,8 @@ "id": "2023-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -8100,14 +7077,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8118,18 +7089,14 @@ "id": "2023-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -8163,9 +7130,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -8191,17 +7156,13 @@ "id": "2023-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8228,14 +7189,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8247,14 +7202,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -8284,9 +7233,7 @@ "id": "2023-03-h-02-01", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results. This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-h-02-02", @@ -8299,18 +7246,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid_exp_chip" }, - { - "label": "Separate CHIP", - "value": "separate_chip" - }, + { "label": "Separate CHIP", "value": "separate_chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combo" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8321,18 +7262,9 @@ "answer": { "entry": null, "options": [ - { - "label": "CAHPS 5.1", - "value": "CAHPS 5.1" - }, - { - "label": "CAHPS 5.1H", - "value": "CAHPS 5.1H" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "CAHPS 5.1", "value": "CAHPS 5.1" }, + { "label": "CAHPS 5.1H", "value": "CAHPS 5.1H" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8343,18 +7275,12 @@ "answer": { "entry": null, "options": [ - { - "label": "None", - "value": "None" - }, + { "label": "None", "value": "None" }, { "label": "Children with Chronic Conditions", "value": "Children with Chronic Conditions" }, - { - "label": "Other", - "value": "Other" - } + { "label": "Other", "value": "Other" } ] } }, @@ -8369,14 +7295,8 @@ "label": "NCQA HEDIS CAHPS 5.1H", "value": "NCQA HEDIS CAHPS 5.1H" }, - { - "label": "HRQ CAHPS", - "value": "HRQ CAHPS" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "HRQ CAHPS", "value": "HRQ CAHPS" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8384,9 +7304,7 @@ "id": "2023-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8458,10 +7376,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8469,9 +7384,7 @@ "id": "2023-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8499,7 +7412,7 @@ "parts": [ { "id": "2023-03-i-01", - "title": "\u00A0", + "title": " ", "type": "part", "questions": [ { @@ -8510,14 +7423,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -8525,7 +7432,7 @@ }, { "id": "2023-03-i-02", - "title": "\u00A0", + "title": " ", "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", "type": "part", "questions": [ @@ -8543,9 +7450,7 @@ "id": "2023-03-i-02-01-01-01", "type": "text", "label": "What is the name of your HSI program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-i-02-01-01-02", @@ -8554,14 +7459,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -8587,9 +7486,7 @@ "id": "2023-03-i-02-01-01-03", "type": "text_multiline", "label": "Which populations does the HSI program serve?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8608,9 +7505,7 @@ "id": "2023-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8623,15 +7518,14 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "id": "2023-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8644,7 +7538,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8694,9 +7589,7 @@ "id": "2023-03-i-02-01-01-06", "type": "text_multiline", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8715,9 +7608,7 @@ "id": "2023-03-i-02-01-01-07", "type": "text_multiline", "label": "What outcomes have you found when measuring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8736,9 +7627,7 @@ "id": "2023-03-i-02-01-01-08", "type": "text_multiline", "label": "Is there anything else you'd like to add about this HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8757,9 +7646,7 @@ "id": "2023-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8859,9 +7746,7 @@ "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", "type": "text_multiline", "label": "Briefly describe your goal.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-02", @@ -8890,9 +7775,7 @@ "id": "2023-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8925,17 +7808,14 @@ "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -8948,17 +7828,14 @@ "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9009,34 +7886,26 @@ "id": "2023-04-a-01-01-01-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9054,9 +7923,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase access to care" - } + "answer": { "entry": "Increase access to care" } }, { "id": "2023-04-a-01-01-02-02", @@ -9071,9 +7938,7 @@ "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-02", @@ -9102,9 +7967,7 @@ "id": "2023-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9137,17 +8000,14 @@ "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9160,17 +8020,14 @@ "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9221,34 +8078,26 @@ "id": "2023-04-a-01-01-02-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9283,9 +8132,7 @@ "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-02", @@ -9314,9 +8161,7 @@ "id": "2023-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9349,17 +8194,14 @@ "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9372,17 +8214,14 @@ "hint": "For example: The total number of rural children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9433,34 +8272,26 @@ "id": "2023-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9477,9 +8308,7 @@ "id": "2023-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02", @@ -9493,9 +8322,7 @@ "id": "2023-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-02", @@ -9524,9 +8351,7 @@ "id": "2023-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9559,17 +8384,14 @@ "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9582,17 +8404,14 @@ "hint": "For example: The total number of children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9643,34 +8462,26 @@ "id": "2023-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9687,9 +8498,7 @@ "id": "2023-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02", @@ -9703,9 +8512,7 @@ "id": "2023-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-02", @@ -9734,9 +8541,7 @@ "id": "2023-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9768,17 +8573,14 @@ "id": "2023-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9790,17 +8592,14 @@ "id": "2023-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9851,34 +8650,26 @@ "id": "2023-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9895,9 +8686,7 @@ "id": "2023-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02", @@ -9911,9 +8700,7 @@ "id": "2023-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-02", @@ -9942,9 +8729,7 @@ "id": "2023-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9976,17 +8761,14 @@ "id": "2023-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9999,17 +8781,14 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -10060,34 +8839,26 @@ "id": "2023-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10109,34 +8880,26 @@ "id": "2023-04-a-02-01", "type": "text_multiline", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-03", "type": "text_multiline", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-04", "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10182,34 +8945,26 @@ "id": "2023-05-a-01-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-01" - }, + "fieldset_info": { "id": "2023-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -10223,34 +8978,26 @@ "id": "2023-05-a-01-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-02" - }, + "fieldset_info": { "id": "2023-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -10264,34 +9011,26 @@ "id": "2023-05-a-01-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-03" - }, + "fieldset_info": { "id": "2023-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -10305,34 +9044,26 @@ "id": "2023-05-a-01-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-04" - }, + "fieldset_info": { "id": "2023-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -10343,9 +9074,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -10366,9 +9095,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -10389,9 +9116,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -10435,9 +9160,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3>", @@ -10474,18 +9197,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -10509,34 +9224,26 @@ "id": "2023-05-a-02-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-01" - }, + "fieldset_info": { "id": "2023-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -10550,34 +9257,26 @@ "id": "2023-05-a-02-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-02" - }, + "fieldset_info": { "id": "2023-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -10591,34 +9290,26 @@ "id": "2023-05-a-02-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-03" - }, + "fieldset_info": { "id": "2023-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -10632,34 +9323,26 @@ "id": "2023-05-a-02-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-04" - }, + "fieldset_info": { "id": "2023-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -10673,34 +9356,26 @@ "id": "2023-05-a-02-05-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-05-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-05-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-05" - }, + "fieldset_info": { "id": "2023-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -10714,34 +9389,26 @@ "id": "2023-05-a-02-06-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-06-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-06-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-06" - }, + "fieldset_info": { "id": "2023-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -10755,34 +9422,26 @@ "id": "2023-05-a-02-07-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-07-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-07-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-07" - }, + "fieldset_info": { "id": "2023-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -10793,9 +9452,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -10816,9 +9473,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -10839,9 +9494,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -10862,9 +9515,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -10885,9 +9536,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -10908,9 +9557,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -10931,9 +9578,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -10954,9 +9599,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -10995,9 +9638,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -11034,18 +9675,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11058,9 +9691,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -11117,48 +9748,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY23)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2025" - } - ], + "targets": [{ "lookupFmapFy": "2025" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11177,9 +9790,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11198,9 +9809,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11217,9 +9826,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -11235,9 +9842,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11267,9 +9872,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11299,9 +9902,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11319,18 +9920,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11367,10 +9960,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -11378,9 +9968,7 @@ "id": "2023-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11404,14 +9992,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -11419,9 +10001,7 @@ "id": "2023-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11457,34 +10037,29 @@ "id": "2023-05-a-03-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-01" - }, + "fieldset_info": { "id": "2023-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -11499,34 +10074,26 @@ "id": "2023-05-a-03-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-03-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-02" - }, + "fieldset_info": { "id": "2023-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -11535,9 +10102,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11558,9 +10123,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11582,18 +10145,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11617,34 +10172,29 @@ "id": "2023-05-a-04-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-01" - }, + "fieldset_info": { "id": "2023-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -11659,34 +10209,26 @@ "id": "2023-05-a-04-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-04-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-02" - }, + "fieldset_info": { "id": "2023-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -11695,9 +10237,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11718,9 +10258,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11742,18 +10280,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11768,17 +10298,13 @@ "id": "2023-05-a-05-01", "type": "text_multiline", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11815,49 +10341,37 @@ "id": "2023-06-a-01-01", "type": "text_multiline", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-02", "type": "text_multiline", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-03", "type": "text_multiline", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-04", "type": "text_multiline", "label": "What changes have you made to your CHIP program in FFY 2023 or plan to make in FFY 2024? Why have you decided to make these changes?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11938,42 +10452,32 @@ "id": "2022-00-a-01-04", "label": "Contact name:", "type": "text", - "answer": { - "entry": "Haley Gov" - } + "answer": { "entry": "Haley Gov" } }, { "id": "2022-00-a-01-05", "label": "Job title:", "type": "text", - "answer": { - "entry": "Lead" - } + "answer": { "entry": "Lead" } }, { "id": "2022-00-a-01-06", "label": "Email:", "type": "email", - "answer": { - "entry": "haley@cms.gov" - } + "answer": { "entry": "haley@cms.gov" } }, { "id": "2022-00-a-01-07", "label": "Full mailing address:", "type": "mailing_address", - "answer": { - "entry": "address here" - }, + "answer": { "entry": "address here" }, "hint": "Include city, state, and zip code." }, { "id": "2022-00-a-01-08", "label": "Phone number:", "type": "phone_number", - "answer": { - "entry": "8004659988" - } + "answer": { "entry": "8004659988" } }, { "questions": [], @@ -12036,9 +10540,7 @@ "id": "2022-01-a-01-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "25" - } + "answer": { "entry": "25" } } ], "id": "2022-01-a-01-01", @@ -12046,14 +10548,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12069,14 +10565,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12127,9 +10617,7 @@ "id": "2022-01-a-01-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -12153,14 +10641,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12214,9 +10696,7 @@ "id": "2022-01-a-01-03-b", "label": "What's the maximum premium a family would be charged each year?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-01-03", @@ -12224,14 +10704,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12240,9 +10714,7 @@ "id": "2022-01-a-01-04", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-01-05", @@ -12250,18 +10722,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12271,9 +10737,7 @@ "id": "2022-01-a-01-06", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "info here" - } + "answer": { "entry": "info here" } } ], "context_data": { @@ -12308,9 +10772,7 @@ "id": "2022-01-a-02-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-02-01", @@ -12318,14 +10780,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12341,14 +10797,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12399,9 +10849,7 @@ "id": "2022-01-a-02-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "context_data": { @@ -12425,14 +10873,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12486,9 +10928,7 @@ "id": "2022-01-a-02-03-b", "label": "What's the maximum premium fee a family would be charged each year?", "type": "money", - "answer": { - "entry": "6" - } + "answer": { "entry": "6" } } ], "id": "2022-01-a-02-03", @@ -12496,14 +10936,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12512,9 +10946,7 @@ "id": "2022-01-a-02-04", "label": "Do your premiums differ for different CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-02-05", @@ -12522,18 +10954,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12543,9 +10969,7 @@ "id": "2022-01-a-02-06", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } } ], "context_data": { @@ -12567,18 +10991,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12592,18 +11007,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12617,18 +11023,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12643,18 +11040,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12669,95 +11057,53 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-03-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-03-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Medicaid Expansion CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-03-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12772,18 +11118,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12798,18 +11135,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12823,44 +11151,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-03-12", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12875,18 +11183,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12900,18 +11199,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12925,43 +11215,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-03-16", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -12973,9 +11243,7 @@ "id": "2022-01-a-03-17", "label": "Briefly describe why you made these changes to your Medicaid Expansion CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-03-18", @@ -12983,18 +11251,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13056,18 +11315,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13081,18 +11331,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13106,18 +11347,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13132,18 +11364,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13158,121 +11381,68 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-04-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-04-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Separate CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-04-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: changing amounts, populations, or the collection process." }, { - "context_data": { - "bullet_text": "Crowd-out policies" - }, + "context_data": { "bullet_text": "Crowd-out policies" }, "id": "2022-01-a-04-09", "label": "Have you made any changes to substitution of coverage policies?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13287,18 +11457,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13312,18 +11473,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -13337,44 +11489,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-04-13", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13389,18 +11521,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13414,18 +11537,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" }, @@ -13440,18 +11554,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -13466,18 +11571,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13491,43 +11587,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-04-19", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13539,9 +11615,7 @@ "id": "2022-01-a-04-20", "label": "Briefly describe why you made these changes to your Separate CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-04-21", @@ -13549,14 +11623,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -13639,9 +11707,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13664,9 +11730,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13690,18 +11754,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2021" }, { "contents": "Number of children enrolled in FFY 2022" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table", @@ -13739,9 +11799,7 @@ "id": "2022-02-a-01-01", "label": "If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-02-a-01", @@ -13758,9 +11816,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2013" - }, + { "contents": "2013" }, { "lookupAcs": { "ffy": "2013", @@ -13787,9 +11843,7 @@ } ], [ - { - "contents": "2014" - }, + { "contents": "2014" }, { "lookupAcs": { "ffy": "2014", @@ -13816,9 +11870,7 @@ } ], [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -13845,9 +11897,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -13874,9 +11924,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -13903,9 +11951,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -13932,9 +11978,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -13961,9 +12005,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -13990,9 +12032,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -14020,21 +12060,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "label": "", @@ -14056,9 +12088,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2019 and 2021" - } + { "contents": "Percent change between 2019 and 2021" } ] }, "fieldset_type": "synthesized_table", @@ -14096,9 +12126,7 @@ "id": "2022-02-a-02-01", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -14119,9 +12147,7 @@ "id": "2022-02-a-02-02-a", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02-02", @@ -14129,14 +12155,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14150,9 +12170,7 @@ "id": "2022-02-a-02-03-a", "label": "What is the alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-b", @@ -14167,49 +12185,37 @@ "id": "2022-02-a-02-03-c", "label": "Define the population you’re measuring, including ages and federal poverty levels.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-d", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-e", "label": "Why did your state choose to adopt this alternate data source?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-f", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-g", "label": "What are the limitations of this alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-h", "label": "How do you use this alternate data source in CHIP program planning?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14232,14 +12238,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14248,17 +12248,13 @@ "id": "2022-02-a-02-04", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-02-a-02-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02", @@ -14312,9 +12308,7 @@ "id": "2022-03-a-01-01-a", "label": "What are you doing differently?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-01", @@ -14322,14 +12316,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14353,9 +12341,7 @@ "id": "2022-03-a-01-02-a", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-02", @@ -14363,14 +12349,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -14380,26 +12360,20 @@ "id": "2022-03-a-01-03", "label": "What methods have been most effective in reaching low-income, uninsured children?", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: TV, school outreach, or word of mouth." }, { "id": "2022-03-a-01-04", "label": "Is there anything else you’d like to add about your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-a-01-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01" @@ -14433,9 +12407,7 @@ "id": "2022-03-b-01-01-a", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-01", @@ -14443,18 +12415,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14478,9 +12441,7 @@ "id": "2022-03-b-01-02-a", "label": "Which database do you use?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-02", @@ -14488,18 +12449,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14508,9 +12460,7 @@ "id": "2022-03-b-01-03", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", "type": "percentage", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -14524,9 +12474,7 @@ "id": "2022-03-b-01-04-a", "label": "How long is the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14560,9 +12508,7 @@ "id": "2022-03-b-01-04-b", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14581,9 +12527,7 @@ "id": "2022-03-b-01-04-c", "label": "What exemptions apply to the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14602,9 +12546,7 @@ "id": "2022-03-b-01-04-d", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14619,18 +12561,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14641,17 +12574,13 @@ "id": "2022-03-b-01-05", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-b-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01" @@ -14675,17 +12604,13 @@ "id": "2022-03-c-01-01-a", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-01-b", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14708,18 +12633,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14730,14 +12646,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14751,17 +12661,13 @@ "id": "2022-03-c-01-03-a", "label": "How many notices do you send to families before disenrolling a child from the program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-03-b", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14784,14 +12690,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14800,33 +12700,25 @@ "id": "2022-03-c-01-04", "label": "What else have you done to simplify the eligibility renewal process for families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-05", "label": "Which retention strategies have you found to be most effective?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-06", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-07", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-01", @@ -14839,18 +12731,14 @@ "id": "2022-03-c-02-01", "label": "How many applicants were denied CHIP coverage in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "Don’t include applicants being considered for redetermination — these data will be collected in Part 3." }, { "id": "2022-03-c-02-02", "label": "How many applicants were denied CHIP coverage for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee." }, { @@ -14859,43 +12747,33 @@ "id": "2022-03-c-02-03-a", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-02-03", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available." }, { "id": "2022-03-c-02-04", "label": "How many applicants were denied CHIP coverage for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-02-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-01')].answer.entry" @@ -14910,9 +12788,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-02')].answer.entry" @@ -14927,9 +12803,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-03')].answer.entry" @@ -14944,9 +12818,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-04')].answer.entry" @@ -14962,15 +12834,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: CHIP Eligibility Denials (Not Redetermination)", @@ -14989,25 +12855,19 @@ "id": "2022-03-c-03-01", "label": "How many children were eligible for redetermination in CHIP in FFY 2022?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-03", "label": "How many children were retained in CHIP after redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "questions": [ @@ -15029,44 +12889,34 @@ "id": "2022-03-c-03-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-03-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage." }, { "id": "2022-03-c-03-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "id": "2022-03-c-03-04", "label": "How many children were disenrolled in CHIP after the redetermination process?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-03-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15125,15 +12975,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in CHIP ", @@ -15215,15 +13059,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15243,25 +13081,19 @@ "id": "2022-03-c-04-01", "label": "How many children were eligible for redetermination in Medicaid in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-03", "label": "How many children were retained in Medicaid after redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15283,44 +13115,34 @@ "id": "2022-03-c-04-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-04-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead." }, { "id": "2022-03-c-04-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-04-04", "label": "How many children were disenrolled in Medicaid after the redetermination process?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-04-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15379,15 +13201,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in Medicaid ", @@ -15469,15 +13285,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15523,14 +13333,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -15559,9 +13363,7 @@ "id": "2022-03-c-05-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15584,33 +13386,25 @@ "id": "2022-03-c-05-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15629,9 +13423,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-03" - }, + "fieldset_info": { "id": "2022-03-c-05-03" }, "label": "How many children were newly enrolled in CHIP between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -15659,9 +13451,7 @@ "id": "2022-03-c-05-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15684,33 +13474,25 @@ "id": "2022-03-c-05-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15729,9 +13511,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-04" - }, + "fieldset_info": { "id": "2022-03-c-05-04" }, "label": "How many children were continuously enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15755,9 +13535,7 @@ "id": "2022-03-c-05-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15780,33 +13558,25 @@ "id": "2022-03-c-05-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15825,9 +13595,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-05" - }, + "fieldset_info": { "id": "2022-03-c-05-05" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15850,9 +13618,7 @@ "id": "2022-03-c-05-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15875,33 +13641,25 @@ "id": "2022-03-c-05-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15920,9 +13678,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-06" - }, + "fieldset_info": { "id": "2022-03-c-05-06" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15945,9 +13701,7 @@ "id": "2022-03-c-05-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15970,33 +13724,25 @@ "id": "2022-03-c-05-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16015,9 +13761,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-07" - }, + "fieldset_info": { "id": "2022-03-c-05-07" }, "label": "How many children were no longer enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16041,9 +13785,7 @@ "id": "2022-03-c-05-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -16066,33 +13808,25 @@ "id": "2022-03-c-05-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16111,9 +13845,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-08" - }, + "fieldset_info": { "id": "2022-03-c-05-08" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16122,9 +13854,7 @@ "id": "2022-03-c-05-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -16150,10 +13880,7 @@ "id": "2022-03-c-05-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16176,37 +13903,25 @@ "id": "2022-03-c-05-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16225,9 +13940,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-10" - }, + "fieldset_info": { "id": "2022-03-c-05-10" }, "label": "How many children were continuously enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16251,10 +13964,7 @@ "id": "2022-03-c-05-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16277,37 +13987,25 @@ "id": "2022-03-c-05-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16326,9 +14024,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-11" - }, + "fieldset_info": { "id": "2022-03-c-05-11" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16351,10 +14047,7 @@ "id": "2022-03-c-05-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16377,37 +14070,25 @@ "id": "2022-03-c-05-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16426,9 +14107,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-12" - }, + "fieldset_info": { "id": "2022-03-c-05-12" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16451,10 +14130,7 @@ "id": "2022-03-c-05-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16477,37 +14153,25 @@ "id": "2022-03-c-05-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16526,9 +14190,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-13" - }, + "fieldset_info": { "id": "2022-03-c-05-13" }, "label": "How many children were no longer enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16552,10 +14214,7 @@ "id": "2022-03-c-05-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16578,37 +14237,25 @@ "id": "2022-03-c-05-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16627,9 +14274,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-14" - }, + "fieldset_info": { "id": "2022-03-c-05-14" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16658,10 +14303,7 @@ "id": "2022-03-c-05-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16684,37 +14326,25 @@ "id": "2022-03-c-05-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16733,9 +14363,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-15" - }, + "fieldset_info": { "id": "2022-03-c-05-15" }, "label": "How many children were continuously enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16759,10 +14387,7 @@ "id": "2022-03-c-05-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16785,37 +14410,25 @@ "id": "2022-03-c-05-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16834,9 +14447,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-16" - }, + "fieldset_info": { "id": "2022-03-c-05-16" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16859,10 +14470,7 @@ "id": "2022-03-c-05-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16885,37 +14493,25 @@ "id": "2022-03-c-05-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16934,9 +14530,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-17" - }, + "fieldset_info": { "id": "2022-03-c-05-17" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16959,10 +14553,7 @@ "id": "2022-03-c-05-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16985,37 +14576,25 @@ "id": "2022-03-c-05-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17034,9 +14613,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-18" - }, + "fieldset_info": { "id": "2022-03-c-05-18" }, "label": "How many children were no longer enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17060,10 +14637,7 @@ "id": "2022-03-c-05-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17086,37 +14660,25 @@ "id": "2022-03-c-05-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17135,9 +14697,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-19" - }, + "fieldset_info": { "id": "2022-03-c-05-19" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17146,9 +14706,7 @@ "id": "2022-03-c-05-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-05", @@ -17188,14 +14746,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -17224,9 +14776,7 @@ "id": "2022-03-c-06-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17249,33 +14799,25 @@ "id": "2022-03-c-06-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17294,9 +14836,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-03" - }, + "fieldset_info": { "id": "2022-03-c-06-03" }, "label": "How many children were newly enrolled in Medicaid between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17324,9 +14864,7 @@ "id": "2022-03-c-06-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17349,33 +14887,25 @@ "id": "2022-03-c-06-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17394,9 +14924,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-04" - }, + "fieldset_info": { "id": "2022-03-c-06-04" }, "label": "How many children were continuously enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17420,9 +14948,7 @@ "id": "2022-03-c-06-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17445,33 +14971,25 @@ "id": "2022-03-c-06-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17490,9 +15008,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-05" - }, + "fieldset_info": { "id": "2022-03-c-06-05" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17515,9 +15031,7 @@ "id": "2022-03-c-06-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17540,33 +15054,25 @@ "id": "2022-03-c-06-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17585,9 +15091,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-06" - }, + "fieldset_info": { "id": "2022-03-c-06-06" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -17610,9 +15114,7 @@ "id": "2022-03-c-06-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17635,33 +15137,25 @@ "id": "2022-03-c-06-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17680,9 +15174,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-07" - }, + "fieldset_info": { "id": "2022-03-c-06-07" }, "label": "How many children were no longer enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17706,9 +15198,7 @@ "id": "2022-03-c-06-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17731,33 +15221,25 @@ "id": "2022-03-c-06-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17776,9 +15258,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-08" - }, + "fieldset_info": { "id": "2022-03-c-06-08" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17787,9 +15267,7 @@ "id": "2022-03-c-06-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -17815,10 +15293,7 @@ "id": "2022-03-c-06-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17841,37 +15316,25 @@ "id": "2022-03-c-06-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17890,9 +15353,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-10" - }, + "fieldset_info": { "id": "2022-03-c-06-10" }, "label": "How many children were continuously enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17916,10 +15377,7 @@ "id": "2022-03-c-06-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17942,37 +15400,25 @@ "id": "2022-03-c-06-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17991,9 +15437,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-11" - }, + "fieldset_info": { "id": "2022-03-c-06-11" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18016,10 +15460,7 @@ "id": "2022-03-c-06-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18042,37 +15483,25 @@ "id": "2022-03-c-06-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18091,9 +15520,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-12" - }, + "fieldset_info": { "id": "2022-03-c-06-12" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18116,10 +15543,7 @@ "id": "2022-03-c-06-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18142,37 +15566,25 @@ "id": "2022-03-c-06-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18191,9 +15603,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-13" - }, + "fieldset_info": { "id": "2022-03-c-06-13" }, "label": "How many children were no longer enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18217,10 +15627,7 @@ "id": "2022-03-c-06-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18243,37 +15650,25 @@ "id": "2022-03-c-06-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18292,9 +15687,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-14" - }, + "fieldset_info": { "id": "2022-03-c-06-14" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18323,10 +15716,7 @@ "id": "2022-03-c-06-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18349,37 +15739,25 @@ "id": "2022-03-c-06-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18398,9 +15776,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-15" - }, + "fieldset_info": { "id": "2022-03-c-06-15" }, "label": "How many children were continuously enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18424,10 +15800,7 @@ "id": "2022-03-c-06-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18450,37 +15823,25 @@ "id": "2022-03-c-06-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18499,9 +15860,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-16" - }, + "fieldset_info": { "id": "2022-03-c-06-16" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18524,10 +15883,7 @@ "id": "2022-03-c-06-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18550,37 +15906,25 @@ "id": "2022-03-c-06-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18599,9 +15943,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-17" - }, + "fieldset_info": { "id": "2022-03-c-06-17" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18624,10 +15966,7 @@ "id": "2022-03-c-06-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18650,37 +15989,25 @@ "id": "2022-03-c-06-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18699,9 +16026,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-18" - }, + "fieldset_info": { "id": "2022-03-c-06-18" }, "label": "How many children were no longer enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18725,10 +16050,7 @@ "id": "2022-03-c-06-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18751,37 +16073,25 @@ "id": "2022-03-c-06-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18800,9 +16110,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-19" - }, + "fieldset_info": { "id": "2022-03-c-06-19" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18811,9 +16119,7 @@ "id": "2022-03-c-06-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-06", @@ -18837,14 +16143,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -18882,9 +16182,7 @@ "id": "2022-03-d-01-02-a", "label": "What information or tools do you provide families with so they can track cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -18913,9 +16211,7 @@ "id": "2022-03-d-01-02-b", "label": "Who tracks cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-02", @@ -18931,18 +16227,12 @@ "value": "health_plans", "label": "Health plans" }, - { - "value": "states", - "label": "States" - }, + { "value": "states", "label": "States" }, { "value": "third_party_administrator", "label": "Third party administrator" }, - { - "value": "other", - "label": "Other " - } + { "value": "other", "label": "Other " } ], "entry": "health_plans" } @@ -18951,17 +16241,13 @@ "id": "2022-03-d-01-03", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-04", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -18982,9 +16268,7 @@ "id": "2022-03-d-01-05-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-05", @@ -18992,14 +16276,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19023,9 +16301,7 @@ "id": "2022-03-d-01-06-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-06", @@ -19033,14 +16309,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19065,25 +16335,19 @@ "id": "2022-03-d-01-07", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-d-01-08", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19126,14 +16390,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19172,14 +16430,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -19188,9 +16440,7 @@ "id": "2022-03-e-02-03", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This only applies to states operating an 1115 demo." }, { @@ -19199,14 +16449,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19218,18 +16462,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": null }, @@ -19254,9 +16489,7 @@ "id": "2022-03-e-02-06-a", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-e-02-06", @@ -19264,14 +16497,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19281,9 +16508,7 @@ "id": "2022-03-e-02-07", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -19292,25 +16517,19 @@ "id": "2022-03-e-02-08", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-09", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-10", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -19340,15 +16559,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "label": "Child", @@ -19411,41 +16624,31 @@ "id": "2022-03-e-02-14", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-15", "label": "What challenges did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-16", "label": "What accomplishments did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19481,14 +16684,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -19499,14 +16696,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19517,14 +16708,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19533,9 +16718,7 @@ "id": "2022-03-f-01-04", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -19556,9 +16739,7 @@ "id": "2022-03-f-01-05-a", "label": "What safeguards and procedures do the Managed Care plans have in place?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-05", @@ -19566,18 +16747,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "na" } @@ -19586,17 +16758,13 @@ "id": "2022-03-f-01-06", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-07", "label": "How many cases have been found in favor of the beneficiary in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -19605,17 +16773,13 @@ "id": "2022-03-f-01-08", "label": "How many cases related to provider credentialing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-09", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19626,17 +16790,13 @@ "id": "2022-03-f-01-10", "label": "How many cases related to provider billing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-11", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19647,17 +16807,13 @@ "id": "2022-03-f-01-12", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-13", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19667,10 +16823,7 @@ "type": "radio", "answer": { "options": [ - { - "value": "separate_chip_only", - "label": "CHIP only" - }, + { "value": "separate_chip_only", "label": "CHIP only" }, { "value": "medicaid_separate_chip_combined", "label": "Medicaid and CHIP combined" @@ -19698,9 +16851,7 @@ "id": "2022-03-f-01-15-a", "label": "How do you provide oversight of the contractors? ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-15", @@ -19708,14 +16859,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19739,9 +16884,7 @@ "id": "2022-03-f-01-16-a", "label": "What specifically are the contractors responsible for in terms of oversight?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-16", @@ -19749,14 +16892,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19765,17 +16902,13 @@ "id": "2022-03-f-01-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-f-01-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19807,14 +16940,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -19838,9 +16965,7 @@ "id": "2022-03-g-01-02-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19865,49 +16990,37 @@ "id": "2022-03-g-01-02-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19926,9 +17039,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-02" - }, + "fieldset_info": { "id": "2022-03-g-01-02" }, "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -19951,9 +17062,7 @@ "id": "2022-03-g-01-03-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19978,49 +17087,37 @@ "id": "2022-03-g-01-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20039,9 +17136,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-03" - }, + "fieldset_info": { "id": "2022-03-g-01-03" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20070,9 +17165,7 @@ "id": "2022-03-g-01-04-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20097,49 +17190,37 @@ "id": "2022-03-g-01-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20158,9 +17239,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-04" - }, + "fieldset_info": { "id": "2022-03-g-01-04" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one preventative dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20189,9 +17268,7 @@ "id": "2022-03-g-01-05-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20216,49 +17293,37 @@ "id": "2022-03-g-01-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20277,9 +17342,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-05" - }, + "fieldset_info": { "id": "2022-03-g-01-05" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2022?", "fieldset_type": "marked", "type": "fieldset", @@ -20295,9 +17358,7 @@ "id": "2022-03-g-01-06", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -20314,17 +17375,13 @@ "id": "2022-03-g-01-07-a", "label": "How many children were enrolled in supplemental dental coverage during FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-07-b", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "type": "integer", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This is the total number for all children between 0-18 years from question 1." }, { @@ -20358,9 +17415,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table", @@ -20387,14 +17442,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20403,17 +17452,13 @@ "id": "2022-03-g-01-08", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-g-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20455,14 +17500,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20473,14 +17512,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20536,10 +17569,7 @@ "value": "Sample size was too small (fewer than 30)", "label": "Sample size was too small (fewer than 30)" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [ null, @@ -20552,9 +17582,7 @@ "id": "2022-03-h-02-02", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "context_data": { @@ -20593,14 +17621,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -20620,9 +17642,7 @@ "id": "2022-03-i-02-01-01-01", "label": "What is the name of your HSI program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-i-02-01-01-02", @@ -20630,14 +17650,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20677,9 +17691,7 @@ "id": "2022-03-i-02-01-01-03", "label": "Which populations does the HSI program serve?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20698,9 +17710,7 @@ "id": "2022-03-i-02-01-01-04", "label": "How many children do you estimate are being served by the HSI program?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20719,9 +17729,7 @@ "id": "2022-03-i-02-01-01-05", "label": "How many children in the HSI program are below your state's FPL threshold? ", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [], @@ -20783,9 +17791,7 @@ "id": "2022-03-i-02-01-01-06", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20804,9 +17810,7 @@ "id": "2022-03-i-02-01-01-07", "label": "What outcomes have you found when measuring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20825,9 +17829,7 @@ "id": "2022-03-i-02-01-01-08", "label": "Is there anything else you'd like to add about this HSI program?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20846,9 +17848,7 @@ "id": "2022-03-i-02-01-01-09", "label": "Optional: Attach any additional documents.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-i-02-01-01" @@ -20933,9 +17933,7 @@ "id": "2022-04-a-01-01-01-02-01-01", "label": "Briefly describe your goal.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program." }, { @@ -20964,9 +17962,7 @@ "id": "2022-04-a-01-01-01-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-01-02-01-02", @@ -20998,18 +17994,14 @@ "id": "2022-04-a-01-01-01-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21021,18 +18013,14 @@ "id": "2022-04-a-01-01-01-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21084,33 +18072,25 @@ "id": "2022-04-a-01-01-01-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21131,9 +18111,7 @@ "id": "2022-04-a-01-01-02-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": "Increase access to care" - }, + "answer": { "entry": "Increase access to care" }, "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan." }, { @@ -21145,9 +18123,7 @@ "id": "2022-04-a-01-01-02-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to increase access to care for underserved populations, our goal is to increase the number of children of Hispanic ethnicity who have visited a primary care physician by 5% annually over the next five years (ending in 2028)." }, { @@ -21176,9 +18152,7 @@ "id": "2022-04-a-01-01-02-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-02-02-01-02", @@ -21210,18 +18184,14 @@ "id": "2022-04-a-01-01-02-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21233,18 +18203,14 @@ "id": "2022-04-a-01-01-02-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total number of children of Hispanic ethnicity enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21296,33 +18262,25 @@ "id": "2022-04-a-01-01-02-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21357,9 +18315,7 @@ "id": "2022-04-a-01-01-03-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state." }, { @@ -21388,9 +18344,7 @@ "id": "2022-04-a-01-01-03-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-03-02-01-02", @@ -21422,18 +18376,14 @@ "id": "2022-04-a-01-01-03-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year." }, { "id": "2022-04-a-01-01-03-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21445,18 +18395,14 @@ "id": "2022-04-a-01-01-03-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of rural children enrolled in CHIP." }, { "id": "2022-04-a-01-01-03-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21508,33 +18454,25 @@ "id": "2022-04-a-01-01-03-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21555,9 +18493,7 @@ "id": "2022-04-a-01-01-04-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21568,9 +18504,7 @@ "id": "2022-04-a-01-01-04-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21598,9 +18532,7 @@ "id": "2022-04-a-01-01-04-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-04-02-01-02", @@ -21632,17 +18564,13 @@ "id": "2022-04-a-01-01-04-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21654,17 +18582,13 @@ "id": "2022-04-a-01-01-04-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21716,33 +18640,25 @@ "id": "2022-04-a-01-01-04-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21763,9 +18679,7 @@ "id": "2022-04-a-01-01-05-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21776,9 +18690,7 @@ "id": "2022-04-a-01-01-05-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21806,9 +18718,7 @@ "id": "2022-04-a-01-01-05-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-05-02-01-02", @@ -21840,17 +18750,13 @@ "id": "2022-04-a-01-01-05-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21862,17 +18768,13 @@ "id": "2022-04-a-01-01-05-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21924,33 +18826,25 @@ "id": "2022-04-a-01-01-05-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21971,9 +18865,7 @@ "id": "2022-04-a-01-01-06-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21984,9 +18876,7 @@ "id": "2022-04-a-01-01-06-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -22014,9 +18904,7 @@ "id": "2022-04-a-01-01-06-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-06-02-01-02", @@ -22048,17 +18936,13 @@ "id": "2022-04-a-01-01-06-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -22070,18 +18954,14 @@ "id": "2022-04-a-01-01-06-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of eligible children in the last federal fiscal year." }, { "id": "2022-04-a-01-01-06-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -22133,33 +19013,25 @@ "id": "2022-04-a-01-01-06-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -22188,33 +19060,25 @@ "id": "2022-04-a-02-01", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-02", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-03", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care equity, special health care needs, or other emerging health care needs.) What have you discovered through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-04", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: studies, analyses, or any other documents that address your performance goals." } ], @@ -22266,33 +19130,25 @@ "id": "2022-05-a-01-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-01" - }, + "fieldset_info": { "id": "2022-05-a-01-01" }, "label": "How much did you spend on Managed Care in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22307,33 +19163,25 @@ "id": "2022-05-a-01-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-02" - }, + "fieldset_info": { "id": "2022-05-a-01-02" }, "label": "How much did you spend on Fee for Service in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22348,33 +19196,25 @@ "id": "2022-05-a-01-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-03" - }, + "fieldset_info": { "id": "2022-05-a-01-03" }, "label": "How much did you spend on anything else related to benefit costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22389,33 +19229,25 @@ "id": "2022-05-a-01-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-04" - }, + "fieldset_info": { "id": "2022-05-a-01-04" }, "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22425,9 +19257,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -22448,9 +19278,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -22471,9 +19299,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -22517,9 +19343,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -22550,18 +19374,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 1: Benefits Costs", @@ -22586,33 +19402,25 @@ "id": "2022-05-a-02-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-01" - }, + "fieldset_info": { "id": "2022-05-a-02-01" }, "label": "How much did you spend on personnel in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -22628,33 +19436,25 @@ "id": "2022-05-a-02-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } }, { "id": "2022-05-a-02-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-02" - }, + "fieldset_info": { "id": "2022-05-a-02-02" }, "label": "How much did you spend on general administration in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22669,33 +19469,25 @@ "id": "2022-05-a-02-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-03" - }, + "fieldset_info": { "id": "2022-05-a-02-03" }, "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22710,33 +19502,25 @@ "id": "2022-05-a-02-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-04" - }, + "fieldset_info": { "id": "2022-05-a-02-04" }, "label": "How much did you spend on claims processing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22751,33 +19535,25 @@ "id": "2022-05-a-02-05-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-c", "label": "2024", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-05" - }, + "fieldset_info": { "id": "2022-05-a-02-05" }, "label": "How much did you spend on outreach and marketing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22792,33 +19568,25 @@ "id": "2022-05-a-02-06-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-06" - }, + "fieldset_info": { "id": "2022-05-a-02-06" }, "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22833,33 +19601,25 @@ "id": "2022-05-a-02-07-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-07" - }, + "fieldset_info": { "id": "2022-05-a-02-07" }, "label": "How much did you spend on anything else related to administrative costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22869,9 +19629,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -22892,9 +19650,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -22915,9 +19671,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -22938,9 +19692,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -22961,9 +19713,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -22984,9 +19734,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -23007,9 +19755,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -23030,9 +19776,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -23071,9 +19815,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "formula": "(<0> + <1> + <2> - <3>) / 9", "$comment": "This should equal the total benefit cost calculated above, then divided by 9", @@ -23110,18 +19852,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 2: Administrative Costs", @@ -23134,9 +19868,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", "$comment": "Total benefit costs 2022 + total admin costs 2022", @@ -23193,49 +19925,31 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23254,9 +19968,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23275,9 +19987,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23293,9 +20003,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", "$comment": "Total program costs - federal share", @@ -23312,9 +20020,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23344,9 +20050,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23376,9 +20080,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23395,18 +20097,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 3: Federal and State Shares", @@ -23433,9 +20127,7 @@ "id": "2022-05-a-02-08-a", "label": "What other type of funding did you receive?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-08", @@ -23467,10 +20159,7 @@ "value": "tobacco settlement", "label": "Tobacco settlement" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [null, "state appropriations"] }, @@ -23495,9 +20184,7 @@ "id": "2022-05-a-02-09-a", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-09", @@ -23505,14 +20192,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -23534,33 +20215,25 @@ "id": "2022-05-a-03-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-01" - }, + "fieldset_info": { "id": "2022-05-a-03-01" }, "label": "How many children were eligible for managed care in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23575,33 +20248,25 @@ "id": "2022-05-a-03-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-02" - }, + "fieldset_info": { "id": "2022-05-a-03-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23612,9 +20277,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23635,9 +20298,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23659,18 +20320,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23694,33 +20347,25 @@ "id": "2022-05-a-04-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-01" - }, + "fieldset_info": { "id": "2022-05-a-04-01" }, "label": "How many children were eligible for fee for service in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23735,33 +20380,25 @@ "id": "2022-05-a-04-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-02" - }, + "fieldset_info": { "id": "2022-05-a-04-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee for service in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23772,9 +20409,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23795,9 +20430,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23819,18 +20452,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23849,17 +20474,13 @@ "id": "2022-05-a-05-01", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-05-02", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-05" @@ -23898,49 +20519,37 @@ "id": "2022-06-a-01-01", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-02", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-03", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-04", "label": "What changes have you made to your CHIP program in FFY 2022 or plan to make in FFY 2023? Why have you decided to make these changes?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-05", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-06-a-01" @@ -24029,25 +20638,19 @@ "id": "2021-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2021-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2021-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-00-a-01-07", @@ -24062,9 +20665,7 @@ "id": "2021-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -24113,14 +20714,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24128,9 +20723,7 @@ "id": "2021-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24154,14 +20747,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24175,14 +20762,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24219,9 +20800,7 @@ "id": "2021-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24261,14 +20840,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24306,9 +20879,7 @@ "id": "2021-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24329,9 +20900,7 @@ "id": "2021-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2021-01-a-01-05", @@ -24341,18 +20910,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24360,9 +20923,7 @@ "id": "2021-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24385,14 +20946,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24400,9 +20955,7 @@ "id": "2021-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24426,14 +20979,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24447,14 +20994,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24496,9 +21037,7 @@ "id": "2021-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24538,14 +21077,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24588,9 +21121,7 @@ "id": "2021-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24623,18 +21154,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24642,9 +21167,7 @@ "id": "2021-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24665,18 +21188,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24690,18 +21204,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24716,18 +21221,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24742,18 +21238,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24767,18 +21254,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24793,23 +21271,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-03-07", @@ -24819,23 +21286,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-03-08", @@ -24845,23 +21301,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-03-09", @@ -24871,18 +21316,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24896,18 +21332,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24922,18 +21349,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24948,23 +21366,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-03-13", @@ -24973,18 +21380,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24998,18 +21396,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25023,18 +21412,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25048,23 +21428,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25084,18 +21453,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -25154,18 +21514,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25179,18 +21530,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25205,18 +21547,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25231,18 +21564,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25256,18 +21580,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25282,23 +21597,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-04-07", @@ -25308,23 +21612,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-04-08", @@ -25334,23 +21627,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-04-09", @@ -25360,23 +21642,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2021-01-a-04-10", @@ -25385,18 +21656,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25410,18 +21672,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25436,18 +21689,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25462,23 +21706,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-04-14", @@ -25487,18 +21720,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25513,18 +21737,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25539,18 +21754,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25564,18 +21770,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25589,18 +21786,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25614,23 +21802,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25650,14 +21827,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -25785,9 +21956,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -25814,9 +21983,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -25843,9 +22010,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -25872,9 +22037,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -25901,9 +22064,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -25931,21 +22092,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -25966,9 +22119,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -25988,14 +22139,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26003,9 +22148,7 @@ "id": "2021-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26029,14 +22172,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26047,9 +22184,7 @@ "id": "2021-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-b", @@ -26064,49 +22199,37 @@ "id": "2021-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26129,17 +22252,13 @@ "id": "2021-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26179,14 +22298,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26221,14 +22334,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26236,9 +22343,7 @@ "id": "2021-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26268,17 +22373,13 @@ "id": "2021-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26301,18 +22402,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26320,9 +22412,7 @@ "id": "2021-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26346,18 +22436,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26365,9 +22446,7 @@ "id": "2021-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26388,9 +22467,7 @@ "id": "2021-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -26402,18 +22479,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26424,9 +22492,7 @@ "id": "2021-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26447,9 +22513,7 @@ "id": "2021-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26468,9 +22532,7 @@ "id": "2021-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26489,9 +22551,7 @@ "id": "2021-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26521,17 +22581,13 @@ "id": "2021-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2021-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26556,18 +22612,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26578,17 +22625,13 @@ "id": "2021-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26614,14 +22657,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -26632,14 +22669,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26650,9 +22681,7 @@ "id": "2021-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-01-03-b", @@ -26707,9 +22736,7 @@ "id": "2021-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -26723,35 +22750,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2021-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2021-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2021-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -26759,9 +22778,7 @@ "id": "2021-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-03-c-02-05", @@ -26779,9 +22796,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-01')].answer.entry" @@ -26796,9 +22811,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-02')].answer.entry" @@ -26813,9 +22826,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-03')].answer.entry" @@ -26830,9 +22841,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-04')].answer.entry" @@ -26848,15 +22857,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -26873,34 +22876,26 @@ "id": "2021-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2021-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2021-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2021-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -26921,26 +22916,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2021-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2021-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -26948,9 +22937,7 @@ "id": "2021-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27012,15 +22999,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27102,15 +23083,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27127,34 +23102,26 @@ "id": "2021-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2021-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2021-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2021-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -27175,26 +23142,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2021-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2021-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -27202,9 +23163,7 @@ "id": "2021-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27266,15 +23225,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27356,15 +23309,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27409,14 +23356,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -27433,9 +23374,7 @@ "id": "2021-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27471,33 +23410,25 @@ "id": "2021-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2021-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2021-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2021-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -27515,9 +23446,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-03" - }, + "fieldset_info": { "id": "2021-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -27534,9 +23463,7 @@ "id": "2021-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27572,33 +23499,25 @@ "id": "2021-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2021-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2021-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2021-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -27616,9 +23535,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-04" - }, + "fieldset_info": { "id": "2021-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -27629,9 +23546,7 @@ "id": "2021-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27667,33 +23582,25 @@ "id": "2021-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27711,9 +23618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-05" - }, + "fieldset_info": { "id": "2021-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -27724,9 +23629,7 @@ "id": "2021-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27762,33 +23665,25 @@ "id": "2021-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27806,9 +23701,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-06" - }, + "fieldset_info": { "id": "2021-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -27820,9 +23713,7 @@ "id": "2021-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27858,33 +23749,25 @@ "id": "2021-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2021-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2021-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2021-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -27902,9 +23785,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-07" - }, + "fieldset_info": { "id": "2021-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -27915,9 +23796,7 @@ "id": "2021-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27953,33 +23832,25 @@ "id": "2021-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2021-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -27997,18 +23868,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-08" - }, + "fieldset_info": { "id": "2021-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -28025,10 +23892,7 @@ "id": "2021-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28064,37 +23928,25 @@ "id": "2021-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28112,9 +23964,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-10" - }, + "fieldset_info": { "id": "2021-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -28125,110 +23975,90 @@ "id": "2021-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["yes", null], - "noninteractive": ["yes", null] - } - } - } - } - }, - { - "type": "fieldset", - "questions": [ - { - "type": "fieldset", - "label": "Total for all ages (0-16)", - "questions": [], - "fieldset_info": { - "actions": ["sum"], - "targets": [ - "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-03-c-05-11-b", - "type": "integer", - "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-c", - "type": "integer", - "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-d", - "type": "integer", - "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-e", - "type": "integer", - "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } - } - ], - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["no"], - "noninteractive": ["no", null] - } - } - } - }, - "fieldset_type": "datagrid" - } - ], - "fieldset_info": { - "id": "2021-03-c-05-11" - }, - "fieldset_type": "marked" - }, - { - "type": "fieldset", - "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", - "questions": [ - { - "id": "2021-03-c-05-12-a", - "type": "integer", - "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true + "answer": { "entry": null, "readonly": true }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + } + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null, "readonly": true } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2021-03-c-05-11" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2021-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28264,37 +24094,25 @@ "id": "2021-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28312,9 +24130,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-12" - }, + "fieldset_info": { "id": "2021-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -28326,10 +24142,7 @@ "id": "2021-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28365,37 +24178,25 @@ "id": "2021-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28413,9 +24214,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-13" - }, + "fieldset_info": { "id": "2021-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -28426,10 +24225,7 @@ "id": "2021-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28465,37 +24261,25 @@ "id": "2021-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28513,9 +24297,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-14" - }, + "fieldset_info": { "id": "2021-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -28533,10 +24315,7 @@ "id": "2021-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28572,37 +24351,25 @@ "id": "2021-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28620,9 +24387,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-15" - }, + "fieldset_info": { "id": "2021-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -28633,10 +24398,7 @@ "id": "2021-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28672,37 +24434,25 @@ "id": "2021-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28720,9 +24470,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-16" - }, + "fieldset_info": { "id": "2021-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -28733,10 +24481,7 @@ "id": "2021-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28772,37 +24517,25 @@ "id": "2021-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28820,9 +24553,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-17" - }, + "fieldset_info": { "id": "2021-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -28834,10 +24565,7 @@ "id": "2021-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28873,37 +24601,25 @@ "id": "2021-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28921,9 +24637,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-18" - }, + "fieldset_info": { "id": "2021-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -28934,10 +24648,7 @@ "id": "2021-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28973,37 +24684,25 @@ "id": "2021-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29021,18 +24720,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-19" - }, + "fieldset_info": { "id": "2021-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -29074,14 +24769,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -29098,9 +24787,7 @@ "id": "2021-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29136,33 +24823,25 @@ "id": "2021-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2021-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2021-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2021-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -29180,9 +24859,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-03" - }, + "fieldset_info": { "id": "2021-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -29199,9 +24876,7 @@ "id": "2021-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29237,33 +24912,25 @@ "id": "2021-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2021-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2021-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2021-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -29281,9 +24948,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-04" - }, + "fieldset_info": { "id": "2021-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -29294,9 +24959,7 @@ "id": "2021-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29332,33 +24995,25 @@ "id": "2021-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -29376,9 +25031,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-05" - }, + "fieldset_info": { "id": "2021-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -29389,9 +25042,7 @@ "id": "2021-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29427,33 +25078,25 @@ "id": "2021-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -29471,9 +25114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-06" - }, + "fieldset_info": { "id": "2021-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -29485,9 +25126,7 @@ "id": "2021-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29523,33 +25162,25 @@ "id": "2021-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2021-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2021-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2021-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -29567,9 +25198,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-07" - }, + "fieldset_info": { "id": "2021-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -29580,9 +25209,7 @@ "id": "2021-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29618,33 +25245,25 @@ "id": "2021-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2021-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -29662,18 +25281,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-08" - }, + "fieldset_info": { "id": "2021-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -29690,10 +25305,7 @@ "id": "2021-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29729,37 +25341,25 @@ "id": "2021-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29777,9 +25377,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-10" - }, + "fieldset_info": { "id": "2021-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -29790,10 +25388,7 @@ "id": "2021-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29829,37 +25424,25 @@ "id": "2021-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29877,9 +25460,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-11" - }, + "fieldset_info": { "id": "2021-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -29890,10 +25471,7 @@ "id": "2021-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29929,37 +25507,25 @@ "id": "2021-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29977,9 +25543,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-12" - }, + "fieldset_info": { "id": "2021-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -29991,10 +25555,7 @@ "id": "2021-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30030,37 +25591,25 @@ "id": "2021-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30078,9 +25627,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-13" - }, + "fieldset_info": { "id": "2021-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -30091,10 +25638,7 @@ "id": "2021-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30130,37 +25674,25 @@ "id": "2021-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30178,9 +25710,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-14" - }, + "fieldset_info": { "id": "2021-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -30198,10 +25728,7 @@ "id": "2021-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30237,37 +25764,25 @@ "id": "2021-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30285,9 +25800,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-15" - }, + "fieldset_info": { "id": "2021-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -30298,10 +25811,7 @@ "id": "2021-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30337,37 +25847,25 @@ "id": "2021-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30385,9 +25883,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-16" - }, + "fieldset_info": { "id": "2021-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -30398,10 +25894,7 @@ "id": "2021-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30437,37 +25930,25 @@ "id": "2021-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30485,9 +25966,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-17" - }, + "fieldset_info": { "id": "2021-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -30499,10 +25978,7 @@ "id": "2021-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30538,37 +26014,25 @@ "id": "2021-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30586,9 +26050,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-18" - }, + "fieldset_info": { "id": "2021-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -30599,10 +26061,7 @@ "id": "2021-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30638,37 +26097,25 @@ "id": "2021-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30686,18 +26133,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-19" - }, + "fieldset_info": { "id": "2021-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -30720,14 +26163,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -30749,18 +26186,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -30800,9 +26231,7 @@ "id": "2021-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30841,9 +26270,7 @@ "id": "2021-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-d-01-05", @@ -30852,14 +26279,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30867,9 +26288,7 @@ "id": "2021-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30893,14 +26312,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30908,9 +26321,7 @@ "id": "2021-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30955,17 +26366,13 @@ "id": "2021-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31008,14 +26415,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -31055,14 +26456,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31071,9 +26466,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-04", @@ -31083,18 +26476,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31106,18 +26490,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31129,18 +26504,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31148,9 +26514,7 @@ "id": "2021-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31171,9 +26535,7 @@ "id": "2021-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -31182,25 +26544,19 @@ "id": "2021-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -31233,15 +26589,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -31301,41 +26651,31 @@ "id": "2021-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31372,14 +26712,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31390,14 +26724,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31408,14 +26736,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31434,18 +26756,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31453,9 +26766,7 @@ "id": "2021-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31476,17 +26787,13 @@ "id": "2021-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -31495,17 +26802,13 @@ "id": "2021-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31516,17 +26819,13 @@ "id": "2021-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2021-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31537,17 +26836,13 @@ "id": "2021-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31558,10 +26853,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -31576,14 +26868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31617,14 +26903,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31632,9 +26912,7 @@ "id": "2021-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31655,17 +26933,13 @@ "id": "2021-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2021-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31699,14 +26973,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31718,9 +26986,7 @@ "id": "2021-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31758,49 +27024,37 @@ "id": "2021-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2021-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2021-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2021-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2021-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2021-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -31818,9 +27072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-02" - }, + "fieldset_info": { "id": "2021-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -31831,9 +27083,7 @@ "id": "2021-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31871,49 +27121,37 @@ "id": "2021-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2021-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2021-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2021-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2021-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2021-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -31931,9 +27169,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-03" - }, + "fieldset_info": { "id": "2021-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -31950,9 +27186,7 @@ "id": "2021-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31990,49 +27224,37 @@ "id": "2021-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2021-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2021-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2021-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2021-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -32050,9 +27272,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-04" - }, + "fieldset_info": { "id": "2021-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -32069,9 +27289,7 @@ "id": "2021-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32109,49 +27327,37 @@ "id": "2021-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2021-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2021-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2021-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2021-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2021-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -32169,9 +27375,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-05" - }, + "fieldset_info": { "id": "2021-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -32184,9 +27388,7 @@ "id": "2021-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -32201,14 +27403,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32219,18 +27415,14 @@ "id": "2021-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -32264,9 +27456,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -32292,17 +27482,13 @@ "id": "2021-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32329,14 +27515,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32347,14 +27527,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -32386,9 +27560,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02", @@ -32401,18 +27573,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32424,17 +27590,13 @@ "id": "2021-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32469,18 +27631,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32492,9 +27645,7 @@ "id": "2021-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32521,18 +27672,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32540,9 +27685,7 @@ "id": "2021-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32571,14 +27714,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32590,9 +27727,7 @@ "id": "2021-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32615,9 +27750,7 @@ "id": "2021-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -32689,10 +27822,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -32700,9 +27830,7 @@ "id": "2021-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32740,14 +27868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -32781,14 +27903,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -32835,9 +27951,7 @@ "id": "2021-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32856,9 +27970,7 @@ "id": "2021-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32983,9 +28095,7 @@ "id": "2021-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33116,9 +28226,7 @@ "id": "2021-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33159,9 +28267,7 @@ "id": "2021-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -33182,9 +28288,7 @@ "id": "2021-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -33251,18 +28355,14 @@ "id": "2021-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33306,9 +28406,7 @@ "id": "2021-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33349,9 +28447,7 @@ "id": "2021-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -33372,9 +28468,7 @@ "id": "2021-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -33441,18 +28535,14 @@ "id": "2021-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33496,9 +28586,7 @@ "id": "2021-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33539,9 +28627,7 @@ "id": "2021-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -33562,9 +28648,7 @@ "id": "2021-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -33631,18 +28715,14 @@ "id": "2021-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -33660,9 +28740,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2021-04-a-01-01-02-02", @@ -33708,9 +28786,7 @@ "id": "2021-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33751,9 +28827,7 @@ "id": "2021-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -33774,9 +28848,7 @@ "id": "2021-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -33843,18 +28915,14 @@ "id": "2021-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33898,9 +28966,7 @@ "id": "2021-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33941,9 +29007,7 @@ "id": "2021-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -33964,9 +29028,7 @@ "id": "2021-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -34033,18 +29095,14 @@ "id": "2021-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34088,9 +29146,7 @@ "id": "2021-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34131,9 +29187,7 @@ "id": "2021-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -34154,9 +29208,7 @@ "id": "2021-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -34223,18 +29275,14 @@ "id": "2021-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34278,205 +29326,193 @@ "id": "2021-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-03", + "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { + "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": "53395" } + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", "answer": { - "entry": null + "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": "66741" } + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-04-a-01-01-02-02-04-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": ["2019-10-01", "2021-09-01"], + "labels": ["Start", "End"] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": "goal_survey_data", + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { + "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { + "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-11", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": "No." } + }, + { + "id": "2021-04-a-01-01-02-02-04-12", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + }, + { + "id": "2021-04-a-01-01-02-02-05", + "type": "repeatable", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", + "type": "text_multiline", + "label": "Briefly describe your goal for this objective.", + "answer": { + "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " + } + }, + { + "id": "2021-04-a-01-01-02-02-05-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": "goal_new", + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", - "values": { - "interactive": [ - null, - "goal_continuing", - "goal_new" - ], - "noninteractive": [ - "goal_continuing", - "goal_new" - ] - } - } - } - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the numerator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-03", - "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-04", - "type": "integer", - "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the denominator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-05", - "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-06", - "type": "integer", - "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } - } - ] - }, - { - "type": "fieldset", - "questions": [], - "fieldset_info": { - "actions": ["percentage"], - "targets": [ - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-04-a-01-01-02-02-04-07", - "type": "daterange", - "label": "What is the date range of your data?", - "answer": { - "entry": ["2019-10-01", "2021-09-01"], - "labels": ["Start", "End"] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-08", - "type": "radio", - "label": "Which data source did you use?", - "answer": { - "entry": "goal_survey_data", - "options": [ - { - "label": "Eligibility or enrollment data", - "value": "goal_enrollment_data" - }, - { - "label": "Survey data", - "value": "goal_survey_data" - }, - { - "label": "Another data source", - "value": "goal_other_data" - } - ] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-09", - "type": "text_multiline", - "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-10", - "type": "text_multiline", - "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-11", - "type": "text_multiline", - "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-12", - "hint": "Optional", - "type": "file_upload", - "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } - } - ] - }, - { - "id": "2021-04-a-01-01-02-02-05", - "type": "repeatable", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-01", - "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", - "type": "text_multiline", - "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " - } - }, - { - "id": "2021-04-a-01-01-02-02-05-02", - "type": "radio", - "label": "What type of goal is it?", - "answer": { - "entry": "goal_new", - "options": [ - { - "label": "New goal", - "value": "goal_new" - }, - { - "label": "Continuing goal", - "value": "goal_continuing" - }, - { - "label": "Discontinued goal", - "value": "goal_discontinued" - } - ], - "default_entry": "goal_new" - }, - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-02-a", - "type": "text_multiline", - "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", - "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", "values": { "interactive": [ null, @@ -34511,9 +29547,7 @@ "id": "2021-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -34534,9 +29568,7 @@ "id": "2021-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -34587,9 +29619,7 @@ "id": "2021-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2021-04-a-01-01-02-02-05-10", @@ -34603,18 +29633,14 @@ "id": "2021-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -34680,9 +29706,7 @@ "id": "2021-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34723,9 +29747,7 @@ "id": "2021-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -34746,9 +29768,7 @@ "id": "2021-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -34799,9 +29819,7 @@ "id": "2021-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2021-04-a-01-01-03-02-01-10", @@ -34815,18 +29833,14 @@ "id": "2021-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34870,9 +29884,7 @@ "id": "2021-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34913,9 +29925,7 @@ "id": "2021-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -34936,9 +29946,7 @@ "id": "2021-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -35005,18 +30013,14 @@ "id": "2021-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35060,9 +30064,7 @@ "id": "2021-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35103,9 +30105,7 @@ "id": "2021-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -35126,9 +30126,7 @@ "id": "2021-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -35195,18 +30193,14 @@ "id": "2021-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35223,9 +30217,7 @@ "id": "2021-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02", @@ -35239,9 +30231,7 @@ "id": "2021-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-02", @@ -35270,9 +30260,7 @@ "id": "2021-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35304,17 +30292,13 @@ "id": "2021-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35326,17 +30310,13 @@ "id": "2021-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35387,34 +30367,26 @@ "id": "2021-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35431,9 +30403,7 @@ "id": "2021-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02", @@ -35447,9 +30417,7 @@ "id": "2021-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-02", @@ -35478,9 +30446,7 @@ "id": "2021-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35512,17 +30478,13 @@ "id": "2021-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35534,17 +30496,13 @@ "id": "2021-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35595,34 +30553,26 @@ "id": "2021-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35639,9 +30589,7 @@ "id": "2021-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02", @@ -35655,9 +30603,7 @@ "id": "2021-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-02", @@ -35686,9 +30632,7 @@ "id": "2021-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35720,17 +30664,13 @@ "id": "2021-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35743,17 +30683,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35804,34 +30740,26 @@ "id": "2021-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35861,9 +30789,7 @@ "id": "2021-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-02-03", @@ -35878,9 +30804,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35935,34 +30859,26 @@ "id": "2021-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-01" - }, + "fieldset_info": { "id": "2021-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -35976,34 +30892,26 @@ "id": "2021-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2021-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-02" - }, + "fieldset_info": { "id": "2021-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -36017,34 +30925,26 @@ "id": "2021-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-03" - }, + "fieldset_info": { "id": "2021-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -36058,34 +30958,26 @@ "id": "2021-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2021-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-04" - }, + "fieldset_info": { "id": "2021-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -36096,9 +30988,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -36119,9 +31009,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -36142,9 +31030,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -36188,9 +31074,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -36221,18 +31105,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36257,34 +31133,26 @@ "id": "2021-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2021-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-01" - }, + "fieldset_info": { "id": "2021-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -36298,34 +31166,26 @@ "id": "2021-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2021-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-02" - }, + "fieldset_info": { "id": "2021-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -36339,34 +31199,26 @@ "id": "2021-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-03" - }, + "fieldset_info": { "id": "2021-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -36380,34 +31232,26 @@ "id": "2021-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-04" - }, + "fieldset_info": { "id": "2021-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -36421,34 +31265,26 @@ "id": "2021-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2021-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-05" - }, + "fieldset_info": { "id": "2021-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -36462,34 +31298,26 @@ "id": "2021-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2021-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-06" - }, + "fieldset_info": { "id": "2021-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -36503,34 +31331,26 @@ "id": "2021-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2021-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-07" - }, + "fieldset_info": { "id": "2021-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -36541,9 +31361,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -36564,9 +31382,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -36587,9 +31403,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -36610,9 +31424,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -36633,9 +31445,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -36656,9 +31466,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -36679,9 +31487,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -36702,9 +31508,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -36743,9 +31547,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -36782,18 +31584,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36806,9 +31600,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -36865,48 +31657,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -36925,9 +31699,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -36946,9 +31718,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -36965,9 +31735,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -36983,9 +31751,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -37015,9 +31781,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -37047,9 +31811,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -37067,18 +31829,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37119,10 +31873,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -37130,9 +31881,7 @@ "id": "2021-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37156,14 +31905,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37171,9 +31914,7 @@ "id": "2021-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37209,34 +31950,26 @@ "id": "2021-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-01" - }, + "fieldset_info": { "id": "2021-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -37251,34 +31984,26 @@ "id": "2021-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2021-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-02" - }, + "fieldset_info": { "id": "2021-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -37287,9 +32012,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37310,9 +32033,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37334,18 +32055,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37369,34 +32082,26 @@ "id": "2021-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2021-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-01" - }, + "fieldset_info": { "id": "2021-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -37411,34 +32116,26 @@ "id": "2021-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2021-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-02" - }, + "fieldset_info": { "id": "2021-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -37447,9 +32144,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37470,9 +32165,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37494,18 +32187,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37528,9 +32213,7 @@ "id": "2021-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37607,9 +32290,7 @@ "id": "2021-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37696,25 +32377,19 @@ "id": "2020-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2020-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2020-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-00-a-01-07", @@ -37729,9 +32404,7 @@ "id": "2020-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -37780,14 +32453,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37795,9 +32462,7 @@ "id": "2020-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37821,14 +32486,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37842,14 +32501,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -37886,9 +32539,7 @@ "id": "2020-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37928,14 +32579,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37973,9 +32618,7 @@ "id": "2020-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37996,9 +32639,7 @@ "id": "2020-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2020-01-a-01-05", @@ -38008,18 +32649,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38027,9 +32662,7 @@ "id": "2020-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38052,14 +32685,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38067,9 +32694,7 @@ "id": "2020-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38093,14 +32718,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38114,14 +32733,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -38163,9 +32776,7 @@ "id": "2020-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38205,14 +32816,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38255,9 +32860,7 @@ "id": "2020-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38290,18 +32893,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38309,9 +32906,7 @@ "id": "2020-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38332,18 +32927,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38357,18 +32943,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38383,18 +32960,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38409,18 +32977,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38434,18 +32993,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38460,23 +33010,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-03-07", @@ -38486,23 +33025,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-03-08", @@ -38512,23 +33040,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-03-09", @@ -38538,18 +33055,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38563,18 +33071,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38589,18 +33088,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38615,23 +33105,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-03-13", @@ -38640,18 +33119,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38665,18 +33135,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38690,18 +33151,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38715,23 +33167,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -38751,18 +33192,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -38821,18 +33253,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38846,18 +33269,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38872,18 +33286,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38898,18 +33303,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38923,18 +33319,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38949,23 +33336,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-04-07", @@ -38975,23 +33351,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-04-08", @@ -39001,23 +33366,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-04-09", @@ -39027,23 +33381,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2020-01-a-04-10", @@ -39052,18 +33395,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39077,18 +33411,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39103,18 +33428,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39129,23 +33445,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-04-14", @@ -39154,18 +33459,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39180,18 +33476,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39206,18 +33493,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39231,18 +33509,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39256,18 +33525,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39281,23 +33541,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -39317,14 +33566,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -39452,9 +33695,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -39481,9 +33722,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -39510,9 +33749,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -39539,9 +33776,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -39568,9 +33803,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -39598,21 +33831,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -39633,9 +33858,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -39655,14 +33878,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39670,9 +33887,7 @@ "id": "2020-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39696,14 +33911,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39714,9 +33923,7 @@ "id": "2020-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-b", @@ -39731,49 +33938,37 @@ "id": "2020-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -39796,17 +33991,13 @@ "id": "2020-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39846,14 +34037,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39888,14 +34073,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39903,9 +34082,7 @@ "id": "2020-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39935,17 +34112,13 @@ "id": "2020-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39968,18 +34141,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -39987,9 +34151,7 @@ "id": "2020-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40013,18 +34175,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40032,9 +34185,7 @@ "id": "2020-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40055,9 +34206,7 @@ "id": "2020-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -40069,18 +34218,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40091,9 +34231,7 @@ "id": "2020-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40114,9 +34252,7 @@ "id": "2020-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40135,9 +34271,7 @@ "id": "2020-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40156,9 +34290,7 @@ "id": "2020-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40188,17 +34320,13 @@ "id": "2020-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2020-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -40223,18 +34351,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40245,17 +34364,13 @@ "id": "2020-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40281,14 +34396,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -40299,14 +34408,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -40317,9 +34420,7 @@ "id": "2020-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-01-03-b", @@ -40374,9 +34475,7 @@ "id": "2020-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -40390,35 +34489,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2020-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2020-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2020-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -40426,9 +34517,7 @@ "id": "2020-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-03-c-02-05", @@ -40446,9 +34535,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-01')].answer.entry" @@ -40463,9 +34550,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-02')].answer.entry" @@ -40480,9 +34565,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-03')].answer.entry" @@ -40497,9 +34580,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-04')].answer.entry" @@ -40515,15 +34596,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40540,34 +34615,26 @@ "id": "2020-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2020-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2020-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2020-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40588,26 +34655,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2020-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2020-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -40615,9 +34676,7 @@ "id": "2020-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40679,15 +34738,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40769,15 +34822,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40794,34 +34841,26 @@ "id": "2020-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2020-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2020-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2020-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40842,26 +34881,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2020-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2020-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -40869,9 +34902,7 @@ "id": "2020-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40933,15 +34964,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41023,15 +35048,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41076,14 +35095,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -41100,9 +35113,7 @@ "id": "2020-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41138,33 +35149,25 @@ "id": "2020-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2020-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2020-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2020-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -41182,9 +35185,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-03" - }, + "fieldset_info": { "id": "2020-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -41201,9 +35202,7 @@ "id": "2020-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41239,33 +35238,25 @@ "id": "2020-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2020-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2020-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2020-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -41283,9 +35274,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-04" - }, + "fieldset_info": { "id": "2020-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -41296,9 +35285,7 @@ "id": "2020-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41334,33 +35321,25 @@ "id": "2020-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41378,9 +35357,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-05" - }, + "fieldset_info": { "id": "2020-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -41391,9 +35368,7 @@ "id": "2020-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41429,33 +35404,25 @@ "id": "2020-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41473,9 +35440,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-06" - }, + "fieldset_info": { "id": "2020-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -41487,9 +35452,7 @@ "id": "2020-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41525,33 +35488,25 @@ "id": "2020-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2020-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2020-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2020-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -41569,9 +35524,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-07" - }, + "fieldset_info": { "id": "2020-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -41582,9 +35535,7 @@ "id": "2020-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41620,33 +35571,25 @@ "id": "2020-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2020-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -41664,18 +35607,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-08" - }, + "fieldset_info": { "id": "2020-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -41692,10 +35631,7 @@ "id": "2020-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41731,37 +35667,25 @@ "id": "2020-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41779,9 +35703,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-10" - }, + "fieldset_info": { "id": "2020-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -41792,10 +35714,7 @@ "id": "2020-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41831,37 +35750,25 @@ "id": "2020-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41879,9 +35786,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-11" - }, + "fieldset_info": { "id": "2020-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -41892,10 +35797,7 @@ "id": "2020-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41931,37 +35833,25 @@ "id": "2020-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41979,9 +35869,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-12" - }, + "fieldset_info": { "id": "2020-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -41993,10 +35881,7 @@ "id": "2020-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42032,37 +35917,25 @@ "id": "2020-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42080,9 +35953,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-13" - }, + "fieldset_info": { "id": "2020-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -42093,10 +35964,7 @@ "id": "2020-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42132,37 +36000,25 @@ "id": "2020-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42180,9 +36036,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-14" - }, + "fieldset_info": { "id": "2020-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -42200,10 +36054,7 @@ "id": "2020-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42239,37 +36090,25 @@ "id": "2020-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42287,9 +36126,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-15" - }, + "fieldset_info": { "id": "2020-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -42300,10 +36137,7 @@ "id": "2020-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42339,37 +36173,25 @@ "id": "2020-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42387,9 +36209,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-16" - }, + "fieldset_info": { "id": "2020-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -42400,10 +36220,7 @@ "id": "2020-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42439,37 +36256,25 @@ "id": "2020-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42487,9 +36292,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-17" - }, + "fieldset_info": { "id": "2020-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -42501,10 +36304,7 @@ "id": "2020-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42540,37 +36340,25 @@ "id": "2020-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42588,9 +36376,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-18" - }, + "fieldset_info": { "id": "2020-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -42601,10 +36387,7 @@ "id": "2020-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42640,37 +36423,25 @@ "id": "2020-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42688,18 +36459,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-19" - }, + "fieldset_info": { "id": "2020-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -42741,14 +36508,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -42765,9 +36526,7 @@ "id": "2020-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42803,33 +36562,25 @@ "id": "2020-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2020-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2020-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2020-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -42847,9 +36598,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-03" - }, + "fieldset_info": { "id": "2020-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -42866,9 +36615,7 @@ "id": "2020-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42904,33 +36651,25 @@ "id": "2020-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2020-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2020-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2020-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -42948,9 +36687,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-04" - }, + "fieldset_info": { "id": "2020-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -42961,9 +36698,7 @@ "id": "2020-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42999,33 +36734,25 @@ "id": "2020-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -43043,9 +36770,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-05" - }, + "fieldset_info": { "id": "2020-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -43056,9 +36781,7 @@ "id": "2020-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43094,33 +36817,25 @@ "id": "2020-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -43138,9 +36853,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-06" - }, + "fieldset_info": { "id": "2020-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -43152,9 +36865,7 @@ "id": "2020-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43190,33 +36901,25 @@ "id": "2020-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2020-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2020-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2020-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -43234,9 +36937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-07" - }, + "fieldset_info": { "id": "2020-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -43247,9 +36948,7 @@ "id": "2020-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43285,33 +36984,25 @@ "id": "2020-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2020-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -43329,18 +37020,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-08" - }, + "fieldset_info": { "id": "2020-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -43357,10 +37044,7 @@ "id": "2020-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43396,37 +37080,25 @@ "id": "2020-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43444,9 +37116,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-10" - }, + "fieldset_info": { "id": "2020-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -43457,10 +37127,7 @@ "id": "2020-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43496,37 +37163,25 @@ "id": "2020-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43544,9 +37199,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-11" - }, + "fieldset_info": { "id": "2020-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -43557,10 +37210,7 @@ "id": "2020-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43596,37 +37246,25 @@ "id": "2020-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43644,9 +37282,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-12" - }, + "fieldset_info": { "id": "2020-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -43658,10 +37294,7 @@ "id": "2020-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43697,37 +37330,25 @@ "id": "2020-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43745,9 +37366,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-13" - }, + "fieldset_info": { "id": "2020-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -43758,10 +37377,7 @@ "id": "2020-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43797,37 +37413,25 @@ "id": "2020-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43845,9 +37449,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-14" - }, + "fieldset_info": { "id": "2020-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -43865,10 +37467,7 @@ "id": "2020-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43904,37 +37503,25 @@ "id": "2020-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43952,9 +37539,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-15" - }, + "fieldset_info": { "id": "2020-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -43965,10 +37550,7 @@ "id": "2020-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44004,37 +37586,25 @@ "id": "2020-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44052,9 +37622,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-16" - }, + "fieldset_info": { "id": "2020-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -44065,10 +37633,7 @@ "id": "2020-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44104,37 +37669,25 @@ "id": "2020-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44152,9 +37705,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-17" - }, + "fieldset_info": { "id": "2020-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -44166,10 +37717,7 @@ "id": "2020-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44205,37 +37753,25 @@ "id": "2020-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44253,9 +37789,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-18" - }, + "fieldset_info": { "id": "2020-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -44266,10 +37800,7 @@ "id": "2020-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44305,37 +37836,25 @@ "id": "2020-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44353,18 +37872,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-19" - }, + "fieldset_info": { "id": "2020-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -44387,14 +37902,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44416,18 +37925,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -44467,9 +37970,7 @@ "id": "2020-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44508,9 +38009,7 @@ "id": "2020-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-d-01-05", @@ -44519,14 +38018,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44534,9 +38027,7 @@ "id": "2020-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44560,14 +38051,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44575,9 +38060,7 @@ "id": "2020-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44622,17 +38105,13 @@ "id": "2020-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -44675,14 +38154,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -44722,14 +38195,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44738,9 +38205,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-04", @@ -44750,18 +38215,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44773,18 +38229,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44796,18 +38243,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -44815,9 +38253,7 @@ "id": "2020-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44838,9 +38274,7 @@ "id": "2020-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -44849,25 +38283,19 @@ "id": "2020-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -44900,15 +38328,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -44968,41 +38390,31 @@ "id": "2020-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45039,14 +38451,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45057,14 +38463,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45075,14 +38475,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45101,18 +38495,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -45120,9 +38505,7 @@ "id": "2020-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45143,17 +38526,13 @@ "id": "2020-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -45162,17 +38541,13 @@ "id": "2020-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45183,17 +38558,13 @@ "id": "2020-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2020-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45204,17 +38575,13 @@ "id": "2020-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45225,10 +38592,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -45243,14 +38607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45284,14 +38642,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45299,9 +38651,7 @@ "id": "2020-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45322,17 +38672,13 @@ "id": "2020-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2020-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45366,14 +38712,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45385,9 +38725,7 @@ "id": "2020-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45425,49 +38763,37 @@ "id": "2020-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2020-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2020-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2020-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2020-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2020-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -45485,9 +38811,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-02" - }, + "fieldset_info": { "id": "2020-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -45498,9 +38822,7 @@ "id": "2020-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45538,49 +38860,37 @@ "id": "2020-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2020-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2020-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2020-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2020-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2020-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -45598,9 +38908,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-03" - }, + "fieldset_info": { "id": "2020-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -45617,9 +38925,7 @@ "id": "2020-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45657,49 +38963,37 @@ "id": "2020-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2020-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2020-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2020-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2020-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -45717,9 +39011,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-04" - }, + "fieldset_info": { "id": "2020-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -45736,9 +39028,7 @@ "id": "2020-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45776,49 +39066,37 @@ "id": "2020-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2020-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2020-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2020-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2020-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2020-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -45836,9 +39114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-05" - }, + "fieldset_info": { "id": "2020-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -45851,9 +39127,7 @@ "id": "2020-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -45868,14 +39142,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45886,18 +39154,14 @@ "id": "2020-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -45931,9 +39195,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -45959,17 +39221,13 @@ "id": "2020-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45996,14 +39254,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -46014,14 +39266,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -46053,9 +39299,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02", @@ -46068,18 +39312,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46091,17 +39329,13 @@ "id": "2020-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46136,18 +39370,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46159,9 +39384,7 @@ "id": "2020-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46188,18 +39411,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46207,9 +39424,7 @@ "id": "2020-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46238,14 +39453,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46257,9 +39466,7 @@ "id": "2020-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46282,9 +39489,7 @@ "id": "2020-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -46356,10 +39561,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -46367,9 +39569,7 @@ "id": "2020-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46407,14 +39607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -46448,14 +39642,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -46502,9 +39690,7 @@ "id": "2020-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46523,9 +39709,7 @@ "id": "2020-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46650,9 +39834,7 @@ "id": "2020-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46783,9 +39965,7 @@ "id": "2020-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46826,9 +40006,7 @@ "id": "2020-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -46849,9 +40027,7 @@ "id": "2020-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -46918,18 +40094,14 @@ "id": "2020-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -46973,9 +40145,7 @@ "id": "2020-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47016,9 +40186,7 @@ "id": "2020-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -47039,9 +40207,7 @@ "id": "2020-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -47108,18 +40274,14 @@ "id": "2020-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47163,9 +40325,7 @@ "id": "2020-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47206,9 +40366,7 @@ "id": "2020-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -47229,9 +40387,7 @@ "id": "2020-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -47298,18 +40454,14 @@ "id": "2020-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -47327,9 +40479,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2020-04-a-01-01-02-02", @@ -47375,9 +40525,7 @@ "id": "2020-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47418,9 +40566,7 @@ "id": "2020-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -47441,9 +40587,7 @@ "id": "2020-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -47510,18 +40654,14 @@ "id": "2020-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47565,9 +40705,7 @@ "id": "2020-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47608,9 +40746,7 @@ "id": "2020-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -47631,9 +40767,7 @@ "id": "2020-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -47700,18 +40834,14 @@ "id": "2020-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47755,9 +40885,7 @@ "id": "2020-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47798,9 +40926,7 @@ "id": "2020-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -47821,9 +40947,7 @@ "id": "2020-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -47890,18 +41014,14 @@ "id": "2020-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47945,9 +41065,7 @@ "id": "2020-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47988,9 +41106,7 @@ "id": "2020-04-a-01-01-02-02-04-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } + "answer": { "entry": "53395" } } ] }, @@ -48011,9 +41127,7 @@ "id": "2020-04-a-01-01-02-02-04-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } + "answer": { "entry": "66741" } } ] }, @@ -48080,18 +41194,14 @@ "id": "2020-04-a-01-01-02-02-04-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-04-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48135,9 +41245,7 @@ "id": "2020-04-a-01-01-02-02-05-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48178,9 +41286,7 @@ "id": "2020-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -48201,9 +41307,7 @@ "id": "2020-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -48254,9 +41358,7 @@ "id": "2020-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2020-04-a-01-01-02-02-05-10", @@ -48270,18 +41372,14 @@ "id": "2020-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48347,9 +41445,7 @@ "id": "2020-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48390,9 +41486,7 @@ "id": "2020-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -48413,9 +41507,7 @@ "id": "2020-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -48466,9 +41558,7 @@ "id": "2020-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2020-04-a-01-01-03-02-01-10", @@ -48482,18 +41572,14 @@ "id": "2020-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48537,9 +41623,7 @@ "id": "2020-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48580,9 +41664,7 @@ "id": "2020-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -48603,9 +41685,7 @@ "id": "2020-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -48672,18 +41752,14 @@ "id": "2020-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48727,9 +41803,7 @@ "id": "2020-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48770,9 +41844,7 @@ "id": "2020-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -48793,9 +41865,7 @@ "id": "2020-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -48862,18 +41932,14 @@ "id": "2020-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48890,9 +41956,7 @@ "id": "2020-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02", @@ -48906,9 +41970,7 @@ "id": "2020-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-02", @@ -48937,9 +41999,7 @@ "id": "2020-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48971,17 +42031,13 @@ "id": "2020-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48993,17 +42049,13 @@ "id": "2020-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49054,34 +42106,26 @@ "id": "2020-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49098,9 +42142,7 @@ "id": "2020-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02", @@ -49114,9 +42156,7 @@ "id": "2020-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-02", @@ -49145,9 +42185,7 @@ "id": "2020-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49179,17 +42217,13 @@ "id": "2020-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49201,17 +42235,13 @@ "id": "2020-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49262,34 +42292,26 @@ "id": "2020-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49306,9 +42328,7 @@ "id": "2020-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02", @@ -49322,9 +42342,7 @@ "id": "2020-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-02", @@ -49353,9 +42371,7 @@ "id": "2020-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49387,17 +42403,13 @@ "id": "2020-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49410,17 +42422,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49471,34 +42479,26 @@ "id": "2020-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49528,9 +42528,7 @@ "id": "2020-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-02-03", @@ -49545,9 +42543,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49602,34 +42598,26 @@ "id": "2020-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-01" - }, + "fieldset_info": { "id": "2020-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -49643,34 +42631,26 @@ "id": "2020-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2020-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-02" - }, + "fieldset_info": { "id": "2020-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -49684,34 +42664,26 @@ "id": "2020-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-03" - }, + "fieldset_info": { "id": "2020-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -49725,34 +42697,26 @@ "id": "2020-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2020-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-04" - }, + "fieldset_info": { "id": "2020-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -49763,9 +42727,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -49786,9 +42748,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -49809,9 +42769,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -49855,9 +42813,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -49888,18 +42844,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -49924,34 +42872,26 @@ "id": "2020-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2020-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-01" - }, + "fieldset_info": { "id": "2020-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -49965,34 +42905,26 @@ "id": "2020-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2020-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-02" - }, + "fieldset_info": { "id": "2020-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -50006,34 +42938,26 @@ "id": "2020-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-03" - }, + "fieldset_info": { "id": "2020-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -50047,34 +42971,26 @@ "id": "2020-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-04" - }, + "fieldset_info": { "id": "2020-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -50088,34 +43004,26 @@ "id": "2020-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2020-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-05" - }, + "fieldset_info": { "id": "2020-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -50129,34 +43037,26 @@ "id": "2020-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2020-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-06" - }, + "fieldset_info": { "id": "2020-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -50170,34 +43070,26 @@ "id": "2020-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2020-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-07" - }, + "fieldset_info": { "id": "2020-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -50208,9 +43100,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -50231,9 +43121,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -50254,9 +43142,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -50277,9 +43163,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -50300,9 +43184,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -50323,9 +43205,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -50346,9 +43226,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -50369,9 +43247,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -50410,9 +43286,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -50449,18 +43323,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50473,9 +43339,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -50532,48 +43396,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50592,9 +43438,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50613,9 +43457,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50632,9 +43474,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -50650,9 +43490,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50682,9 +43520,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50714,9 +43550,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50734,18 +43568,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50786,10 +43612,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -50797,9 +43620,7 @@ "id": "2020-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50823,14 +43644,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -50838,9 +43653,7 @@ "id": "2020-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50876,34 +43689,26 @@ "id": "2020-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-01" - }, + "fieldset_info": { "id": "2020-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -50918,34 +43723,26 @@ "id": "2020-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2020-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-02" - }, + "fieldset_info": { "id": "2020-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -50954,9 +43751,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -50977,9 +43772,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51001,18 +43794,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51036,34 +43821,26 @@ "id": "2020-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2020-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-01" - }, + "fieldset_info": { "id": "2020-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -51078,34 +43855,26 @@ "id": "2020-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2020-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-02" - }, + "fieldset_info": { "id": "2020-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -51114,9 +43883,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -51137,9 +43904,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51161,18 +43926,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51195,9 +43952,7 @@ "id": "2020-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -51274,9 +44029,7 @@ "id": "2020-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 5fb8787bb..39edf88ae 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -36,7 +36,7 @@ "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0", "sass": "^1.77.1", - "vite": "^5.2.11", + "vite": "^5.4.6", "vite-tsconfig-paths": "^4.3.2" }, "scripts": { diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 4b913d5b1..99a40a1ab 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -1,12 +1,13 @@ import React, { useEffect, useState } from "react"; +import { useDispatch, useSelector } from "react-redux"; import PropTypes from "prop-types"; import Question from "./Question"; -import { connect, useDispatch } from "react-redux"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question, lastYearFormData }) => { +const DataGrid = ({ question, printView }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); + const lastYearFormData = useSelector((state) => state.lastYearFormData); const dispatch = useDispatch(); const rowStyle = @@ -138,6 +139,7 @@ const DataGrid = ({ question, lastYearFormData }) => { hideNumber={question.type !== "fieldset"} question={question.question} prevYear={question.prevYear} + printView={printView} />
); @@ -148,16 +150,7 @@ const DataGrid = ({ question, lastYearFormData }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, - year: PropTypes.number.isRequired, - state: PropTypes.string.isRequired, - lastYearFormData: PropTypes.object.isRequired, + printView: PropTypes.bool, }; -const mapStateToProps = (state) => ({ - year: state.formData[0].contents.section.year, - state: state.formData[0].contents.section.state, - lastYearFormData: state.lastYearFormData, - lastYearTotals: state.lastYearTotals, -}); - -export default connect(mapStateToProps)(DataGrid); +export default DataGrid; diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index fee83e44f..ecd344142 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -4,12 +4,54 @@ import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; -const Integer = ({ onChange, question, prevYear, ...props }) => { +const getPrevYearValue = (question, lastYearFormData) => { + let prevYearValue; + + // Split and create array from id + const splitID = question.id.split("-"); + + // the subquestion id (a, b, c, etc) + const questionId = splitID[5]; + + // Custom handling for -03-c-05 and -03-c-06 + if ( + splitID[1] === "03" && + splitID[2] === "c" && + (splitID[3] === "05" || splitID[3] === "06") && + questionId === "a" && + parseInt(splitID[4]) > 2 && + parseInt(splitID[4]) < 10 + ) { + // Set year to last year + splitID[0] = parseInt(splitID[0]) - 1; + splitID.pop(); + + const fieldsetId = splitID.join("-"); + const partIndex = parseInt(splitID[3]) - 1; + + // Get questions from last years JSON + const questions = + lastYearFormData?.[3]?.contents.section.subsections[2].parts[partIndex] + .questions; + + // Filter down to this question + const matchingQuestion = questions?.filter( + (question) => fieldsetId === question?.fieldset_info?.id + ); + + // The first will always be correct + if (matchingQuestion?.[0]) { + prevYearValue = matchingQuestion[0].questions[0].answer?.entry; + } + } + return prevYearValue; +}; + +const Integer = ({ onChange, question, prevYear, printView, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); - const lastYearTotals = useSelector((state) => state.lastYearTotals); - const prevYearNumber = - lastYearTotals[question.id.substring(0, question.id.length - 2)]; + const lastYearFormData = useSelector((state) => state.lastYearFormData); + const change = ({ target: { name, value } }) => { const stripped = value.replace(/[^0-9]+/g, ""); const parsed = parseFloat(stripped); @@ -25,22 +67,26 @@ const Integer = ({ onChange, question, prevYear, ...props }) => { } }; - if (prevYearNumber && question.id.indexOf("-a") > -1) { + const isLessThanElevenMask = (value) => { return ( - + printView && + question.mask === "lessThanEleven" && + value <= 10 && + value > 0 ); - } - const renderAnswer = (val) => (val || Number.isInteger(val) ? val : ""); // may attempt to rerender string on page load, so both val || isInteger + }; + + const renderAnswer = () => { + if (answer === null) { + const value = + getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; + if (isLessThanElevenMask(value)) return "<11"; + return value; + } else { + if (isLessThanElevenMask(answer)) return "<11"; + return answer || Number.isInteger(answer) ? answer : ""; + } + }; return ( { name={question.id} numeric onChange={change} - value={answer != null ? renderAnswer(answer) : prevYear && prevYear.value} + value={renderAnswer()} {...props} /> ); @@ -59,7 +105,7 @@ Integer.propTypes = { onChange: PropTypes.func.isRequired, question: PropTypes.object.isRequired, prevYear: PropTypes.object, + printView: PropTypes.bool, }; -export { Integer }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index e9bb8095e..54f8672ab 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -6,7 +6,40 @@ import Integer from "./Integer"; import { screen, render, fireEvent } from "@testing-library/react"; const mockStore = configureMockStore(); -const store = mockStore({ lastYearTotals: { 2022: [] } }); +const lastYearFormData = [ + {}, + {}, + {}, + { + contents: { + section: { + subsections: [ + {}, + {}, + { + parts: [ + {}, + {}, + {}, + {}, + { + questions: [ + { + fieldset_info: { + id: "2022-03-c-05-03", + }, + questions: [{ answer: { entry: 3000 } }], + }, + ], + }, + ], + }, + ], + }, + }, + }, +]; +const store = mockStore({ lastYearTotals: { 2022: [] }, lastYearFormData }); const buildInteger = (intProps) => { return ( @@ -14,6 +47,7 @@ const buildInteger = (intProps) => { ); }; + describe("", () => { it("should render correctly", () => { const props = { question: { id: "2023-00-a-01-01", answer: 1 } }; @@ -29,7 +63,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -45,7 +79,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -61,7 +95,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: "hope" }, }, }; @@ -73,4 +107,67 @@ describe("", () => { expect(screen.queryByDisplayValue("raw text")).not.toBeInTheDocument(); expect(screen.getByRole("alert")).toBeInTheDocument(); }); + + it("should show <11 if passed >0 and <=10 with printView and lessThanEleven", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "5" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("<11")).toBeInTheDocument(); + expect(screen.queryByDisplayValue("5")).not.toBeInTheDocument(); + }); + + it("should show original answer if passed >=11 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "12" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("12")).toBeInTheDocument(); + }); + + it("should show original answer if passed 0 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "0" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("0")).toBeInTheDocument(); + }); + + it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { + const props = { + question: { + id: "2023-03-c-05-03-a", + label: "How much?", + answer: { entry: null }, + }, + }; + + render(buildInteger(props)); + + expect(screen.getByDisplayValue("3000")).toBeInTheDocument(); + const input = screen.getByRole("textbox"); + fireEvent.change(input, { target: { value: 234 } }); + expect(screen.getByDisplayValue("234")).toBeInTheDocument(); + }); }); diff --git a/services/ui-src/src/components/fields/Money.jsx b/services/ui-src/src/components/fields/Money.jsx index d7fcce141..dba1ac251 100644 --- a/services/ui-src/src/components/fields/Money.jsx +++ b/services/ui-src/src/components/fields/Money.jsx @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; const Money = ({ ...props }) => { return ; diff --git a/services/ui-src/src/components/fields/Objective.jsx b/services/ui-src/src/components/fields/Objective.jsx index a7470e65e..abf0796e7 100644 --- a/services/ui-src/src/components/fields/Objective.jsx +++ b/services/ui-src/src/components/fields/Objective.jsx @@ -4,14 +4,13 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Objective = ({ headerRef, objective, objectiveNumber }) => { +const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { const first = objective.questions[0].answer.readonly === true; const name = first ? objective.questions[0].answer.default_entry : objective.questions[0].answer.entry; const children = first ? objective.questions.slice(1) : objective.questions; - return ( <>
@@ -27,7 +26,7 @@ const Objective = ({ headerRef, objective, objectiveNumber }) => { {children.map((q) => (
- +
))}
@@ -38,6 +37,7 @@ Objective.propTypes = { headerRef: PropTypes.func.isRequired, objective: PropTypes.object.isRequired, objectiveNumber: PropTypes.number.isRequired, + printView: PropTypes.bool, }; export { Objective }; diff --git a/services/ui-src/src/components/fields/Objectives.jsx b/services/ui-src/src/components/fields/Objectives.jsx index 4953ed21f..f80167133 100644 --- a/services/ui-src/src/components/fields/Objectives.jsx +++ b/services/ui-src/src/components/fields/Objectives.jsx @@ -16,9 +16,9 @@ const Objectives = ({ disabled, question, removeObjectiveFrom, + printView, }) => { const ref = useRef(); - const add = () => { addObjectiveTo(question.id); @@ -47,7 +47,12 @@ const Objectives = ({ > {question.questions.map((q, i) => ( - + ))} @@ -92,6 +97,7 @@ Objectives.propTypes = { disabled: PropTypes.bool.isRequired, question: PropTypes.object.isRequired, removeObjectiveFrom: PropTypes.func.isRequired, + printView: PropTypes.bool, }; const mapDispatchToProps = { diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 271024817..88716bebc 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -9,7 +9,7 @@ import { DateRange } from "./DateRange"; import { Email } from "./Email"; import { Fieldset } from "./Fieldset"; import UploadComponent from "../layout/UploadComponent"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; import { MailingAddress } from "./MailingAddress"; import { Money } from "./Money"; import { Objectives } from "./Objectives"; @@ -57,7 +57,14 @@ Container.propTypes = { children: PropTypes.node.isRequired, }; -const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { +const Question = ({ + hideNumber, + question, + prevYear, + tableTitle, + printView, + ...props +}) => { let Component = Text; if (questionTypes.has(question.type)) { Component = questionTypes.get(question.type); @@ -144,6 +151,7 @@ const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { false } prevYear={prevYear} + printView={printView} /> {/* If there are subquestions, wrap them so they are indented with the @@ -153,7 +161,12 @@ const Question = ({ hideNumber, question, prevYear, tableTitle, ...props }) => { {shouldRenderChildren && (
{question.questions.map((q) => ( - + ))}
)} @@ -167,6 +180,7 @@ Question.propTypes = { question: PropTypes.object.isRequired, prevYear: PropTypes.object, tableTitle: PropTypes.string, + printView: PropTypes.bool, }; Question.defaultProps = { hideNumber: false, diff --git a/services/ui-src/src/components/fields/Repeatable.jsx b/services/ui-src/src/components/fields/Repeatable.jsx index f32413bf4..644f34a36 100644 --- a/services/ui-src/src/components/fields/Repeatable.jsx +++ b/services/ui-src/src/components/fields/Repeatable.jsx @@ -4,7 +4,7 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Repeatable = ({ headerRef, number, question, type }) => { +const Repeatable = ({ headerRef, number, question, type, printView }) => { const children = question.questions ? question.questions : []; const title = type ? `${type} ${number}` : `${number}`; @@ -20,7 +20,7 @@ const Repeatable = ({ headerRef, number, question, type }) => {
{children.map((q) => ( - + ))} @@ -31,6 +31,7 @@ Repeatable.propTypes = { number: PropTypes.number.isRequired, question: PropTypes.object.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatable.defaultProps = { diff --git a/services/ui-src/src/components/fields/Repeatables.jsx b/services/ui-src/src/components/fields/Repeatables.jsx index 14a13a72e..dc66bf27b 100644 --- a/services/ui-src/src/components/fields/Repeatables.jsx +++ b/services/ui-src/src/components/fields/Repeatables.jsx @@ -17,6 +17,7 @@ const Repeatables = ({ question, removeRepeatableFrom, type, + printView, }) => { const ref = useRef(); @@ -62,6 +63,7 @@ const Repeatables = ({ number={i + 1} question={q} type={question.typeLabel ? question.typeLabel : type} + printView={printView} /> ))} @@ -107,6 +109,7 @@ Repeatables.propTypes = { question: PropTypes.object.isRequired, removeRepeatableFrom: PropTypes.func.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatables.defaultProps = { type: null, diff --git a/services/ui-src/src/components/layout/FormActions.jsx b/services/ui-src/src/components/layout/FormActions.jsx index 8013054bd..f63403fd0 100644 --- a/services/ui-src/src/components/layout/FormActions.jsx +++ b/services/ui-src/src/components/layout/FormActions.jsx @@ -23,14 +23,27 @@ const FormActions = () => { const printDialogeRef = useRef(null); // Get section IDs and subsection IDs for printing single section - let searchParams = document.location.pathname - .toString() - .replace("/sections/", "") - .replace(formYear + "/", ""); + let searchParams = ""; + let sectionId = ""; - const sectionId = formYear + "-" + searchParams.substring(0, 2); - let subsectionId = sectionId + "-"; + if (currentUser.role === AppRoles.CMS_ADMIN) { + const stateId = window.location.href.split("/")[5]; + searchParams = document.location.pathname + .toString() + .replace(`views/sections/${stateId}/`, "") + .replace(formYear + "/", ""); + + sectionId = formYear + "-" + searchParams.substring(1, 3); + } else { + searchParams = document.location.pathname + .toString() + .replace("/sections/", "") + .replace(formYear + "/", ""); + sectionId = formYear + "-" + searchParams.substring(0, 2); + } + + let subsectionId = sectionId + "-"; if (sectionId.slice(-2) === "03") { subsectionId += searchParams.slice(-1); } else { diff --git a/services/ui-src/src/components/layout/FormActions.test.jsx b/services/ui-src/src/components/layout/FormActions.test.jsx index 77967b362..fdf31f5db 100644 --- a/services/ui-src/src/components/layout/FormActions.test.jsx +++ b/services/ui-src/src/components/layout/FormActions.test.jsx @@ -9,12 +9,14 @@ import { stateUserWithReportInProgress, } from "../../store/fakeStoreExamples"; import { MemoryRouter } from "react-router"; +const firstLocation = "/sections/2021/00"; +const adminFirstLocation = "/views/sections/AL/2021/00"; const mockStore = configureMockStore(); const store = mockStore(stateUserWithReportInProgress); const formActions = ( - + @@ -22,36 +24,76 @@ const formActions = ( const adminStore = mockStore(adminUserWithReportInProgress); const adminFormActions = ( - + ); + describe("Fill Form Component", () => { - it("should render correctly", () => { + afterEach(() => { + jest.clearAllMocks(); + }); + + test("should render correctly", () => { expect(shallow(formActions).exists()).toBe(true); }); - it("should add hrefs given a section and subsection", () => { + test("should add hrefs given a section and subsection", () => { render(formActions); + window.history.pushState({}, "Title", "/sections/00"); + const printShowButton = screen.getByTestId("print-show"); + fireEvent.click(printShowButton); + const printFormButton = screen.getByTestId("print-form"); + const printPageButton = screen.getByTestId("print-page"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); + }); + + test("should add hrefs given a section and subsection for admin user", () => { + const setLocation = (path = "/") => { + delete window.location; + window.location = new URL("https://www.example.com" + path); + }; + + setLocation(adminFirstLocation); + render(adminFormActions); + window.history.pushState({}, "Title", "/00/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should build the component when looking at section 3 subsections", () => { - window.history.pushState({}, "Title", "/sections/03"); + test("should build the component when looking at section 3 subsections", () => { render(adminFormActions); - window.history.pushState({}, "Title", "/sections/03"); + window.history.pushState({}, "Title", "/03/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-03&subsectionId=2021-03-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should display print section or page on click", () => { + test("should display print section or page on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -60,7 +102,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toHaveTextContent("This Section"); expect(printFormButton).toHaveTextContent("Entire Form"); }); - it("should clear on click", () => { + test("should clear on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -72,7 +114,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toBeNull(); expect(printFormButton).toBeNull(); }); - it("should not clear on internal click, then clear on outside click", () => { + test("should not clear on internal click, then clear on outside click", () => { const map = {}; document.addEventListener = jest.fn((event, cb) => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index 0e5a8b9a5..d2d5e8022 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -9,7 +9,7 @@ import { selectFragment } from "../../store/formData"; import { selectQuestionsForPart } from "../../store/selectors"; import { shouldDisplay } from "../../util/shouldDisplay"; -const Part = ({ partId, partNumber, nestedSubsectionTitle }) => { +const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { const [, section] = partId.split("-"); const [ @@ -67,6 +67,7 @@ const Part = ({ partId, partNumber, nestedSubsectionTitle }) => { question={question} tableTitle={title} data-testid="part-question" + printView={printView} /> ))} diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index 88800ac85..b204e1b25 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -8,7 +8,7 @@ import FormNavigation from "./FormNavigation"; import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; -const Section = ({ subsectionId, sectionId }) => { +const Section = ({ subsectionId, sectionId, printView }) => { const formData = useSelector((state) => state.formData); const title = selectSectionTitle(formData, sectionId); @@ -17,7 +17,11 @@ const Section = ({ subsectionId, sectionId }) => {

{title}

- +
@@ -30,6 +34,7 @@ const Section = ({ subsectionId, sectionId }) => { Section.propTypes = { subsectionId: PropTypes.string.isRequired, sectionId: PropTypes.number.isRequired, + printView: PropTypes.bool, }; export default Section; diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 67433a5b5..6417beca6 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -8,7 +8,7 @@ import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; //types import PropTypes from "prop-types"; -const Subsection = ({ subsectionId }) => { +const Subsection = ({ subsectionId, printView }) => { const formData = useSelector((state) => state.formData); const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); @@ -31,6 +31,7 @@ const Subsection = ({ subsectionId }) => { partId={partId} partNumber={partIds.length > 1 ? index + 1 : null} nestedSubsectionTitle={!!title} + printView={printView} /> ))}
@@ -38,6 +39,7 @@ const Subsection = ({ subsectionId }) => { }; Subsection.propTypes = { subsectionId: PropTypes.string.isRequired, + printView: PropTypes.bool, }; Subsection.defaultProps = { text: null, diff --git a/services/ui-src/src/components/sections/Print.jsx b/services/ui-src/src/components/sections/Print.jsx index e313f5f9b..f7bc26f35 100644 --- a/services/ui-src/src/components/sections/Print.jsx +++ b/services/ui-src/src/components/sections/Print.jsx @@ -140,6 +140,7 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } else { @@ -164,6 +165,7 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } diff --git a/services/ui-src/src/util/synthesize.js b/services/ui-src/src/util/synthesize.js index 361d698c7..497eabff0 100644 --- a/services/ui-src/src/util/synthesize.js +++ b/services/ui-src/src/util/synthesize.js @@ -215,6 +215,20 @@ const snakeToCamel = (str) => group.toUpperCase().replace("-", "").replace("_", "") ); +// returns the state abbreviation for the associated report +const getStateAbbr = (stateUserAbbr) => { + if (stateUserAbbr) return stateUserAbbr; + const windowPathName = window.location.pathname; + // if admin, grab the state from the URL + const stateFromURL = windowPathName.split("/")[3]; + + // if admin and in a print view get state param + const urlSearchParams = new URLSearchParams(window.location.search); + const stateFromParams = urlSearchParams.get("state"); + + return windowPathName.includes("print") ? stateFromParams : stateFromURL; +}; + /** * Retrieve acsSet from state and return for individual state. * @@ -230,26 +244,13 @@ const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { ? snakeToCamel(acsProperty) : acsProperty; - // if allStatesData and stateUser are available - if (allStatesData && stateUserAbbr) { - const windowPathName = window.location.pathname; - // if admin, grab the state from the URL - const stateFromURL = windowPathName.split("/")[3]; + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); - // if admin and in a print view get state param - const urlSearchParams = new URLSearchParams(window.location.search); - const stateFromParams = urlSearchParams.get("state"); - - // Get stateUser state or fallback to the URL, if an admin - const stateAbbr = - stateUserAbbr || - (windowPathName.includes("print") ? stateFromParams : stateFromURL); - - // Filter for only matching state - const stateData = allStatesData.filter((st) => st.code === stateAbbr)[0]; - - // Filter for matching state from JSON - const acs = stateData?.acsSet.filter((year) => year.year === +ffy)[0]; + // Find data for matching state + const stateData = allStatesData.find((st) => st.code === stateAbbr); + const acs = stateData?.acsSet.find((year) => year.year === +ffy); // If acs exists, return the value from the object if (acs) { @@ -279,20 +280,18 @@ export const compareACS = ( ) => { const percentagePrecision = 2; let returnValue = "Not Available"; - // if allStatesData and stateUser are available - if (allStatesData && stateUserAbbr) { - // Filter for only matching state - const stateData = allStatesData.filter( - (st) => st.code === stateUserAbbr - )[0]; - - // Filter for the correct year of state data - const startACS = stateData?.acsSet.filter( + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); + const stateData = allStatesData.find((st) => st.code === stateAbbr); + + // Find the correct year of state data + const startACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy1, 10) - )[0]; - const endACS = stateData?.acsSet.filter( + ); + const endACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy2, 10) - )[0]; + ); // If start year and end year of ACS exist, return the calculated value (percent change) from the objects if (startACS && endACS) { diff --git a/services/ui-src/src/util/synthesize.test.js b/services/ui-src/src/util/synthesize.test.js index a9f17cc45..43aed8a7b 100644 --- a/services/ui-src/src/util/synthesize.test.js +++ b/services/ui-src/src/util/synthesize.test.js @@ -128,7 +128,7 @@ const fallbackChipState = { }, }; -describe("value synthesization utility", () => { +describe("value synthesis utility", () => { describe("handles identity", () => { test("with no values", () => { // Returns undefined, because there's not a value @@ -615,6 +615,29 @@ describe("value synthesization utility", () => { ); expect(out).toEqual({ contents: ["3.70%"] }); }); + + it("compares two ffys as admin user", () => { + Object.defineProperty(window, "location", { + value: { + pathname: "/views/sections/AL/2023/02", + }, + }); + const out = synthesize( + { + compareACS: { + ffy1: 2021, + ffy2: 2020, + acsProperty: "numberUninsured", + }, + }, + state.allStatesData, + state.global.stateName, + undefined, // state user abbreviation + state.enrollmentCounts.chipEnrollments, + state.formData + ); + expect(out).toEqual({ contents: ["3.70%"] }); + }); }); describe("handles CHIPS Enrollment Data", () => { diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index 38b7929fb..232dd1a4b 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -3124,120 +3124,120 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -3748,85 +3748,85 @@ "@babel/runtime" "^7.23.2" immutable "^4.3.4" -"@rollup/rollup-android-arm-eabi@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" - integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== - -"@rollup/rollup-android-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" - integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== - -"@rollup/rollup-darwin-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" - integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== - -"@rollup/rollup-darwin-x64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" - integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== - -"@rollup/rollup-linux-arm-gnueabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" - integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== - -"@rollup/rollup-linux-arm-musleabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" - integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== - -"@rollup/rollup-linux-arm64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" - integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== - -"@rollup/rollup-linux-arm64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" - integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" - integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== - -"@rollup/rollup-linux-riscv64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" - integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== - -"@rollup/rollup-linux-s390x-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" - integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== - -"@rollup/rollup-linux-x64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" - integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== - -"@rollup/rollup-linux-x64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" - integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== - -"@rollup/rollup-win32-arm64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" - integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== - -"@rollup/rollup-win32-ia32-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" - integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== - -"@rollup/rollup-win32-x64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" - integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== +"@rollup/rollup-android-arm-eabi@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.2.tgz#4e0c4c462692ecb7ae2b008f25af4cced05ac4f9" + integrity sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw== + +"@rollup/rollup-android-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.2.tgz#d97ed02a950061adc2056d6d2d6df8f05d877ae9" + integrity sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ== + +"@rollup/rollup-darwin-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.2.tgz#06dec35316de9fe433d66c849ecc056e221ba422" + integrity sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg== + +"@rollup/rollup-darwin-x64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.2.tgz#22ee27a0ccfdc045c2a37f6980351329516ce119" + integrity sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q== + +"@rollup/rollup-linux-arm-gnueabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.2.tgz#d86df2d8c600ebdd7251110a3357c53e0a583ace" + integrity sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg== + +"@rollup/rollup-linux-arm-musleabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.2.tgz#a8b7b6a805356c8bd0409e4c5f56664d80a50aaa" + integrity sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ== + +"@rollup/rollup-linux-arm64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.2.tgz#766064021d2bfc42f13f4653f8870a9b8bbdc31d" + integrity sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A== + +"@rollup/rollup-linux-arm64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.2.tgz#490f49236102b97738d9406eaf5cd8d9dad35c15" + integrity sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.2.tgz#03a67f1476dd80f115ce35bc9b0d03c50c16679d" + integrity sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg== + +"@rollup/rollup-linux-riscv64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.2.tgz#d86e9b7b5b242652cd691c46d1939130c35cb68d" + integrity sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg== + +"@rollup/rollup-linux-s390x-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.2.tgz#c8fca373bec6df8550b31b3dbb56e2b241bc8718" + integrity sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA== + +"@rollup/rollup-linux-x64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.2.tgz#be182ef761c9b0147496e647ace44fd1b912344f" + integrity sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ== + +"@rollup/rollup-linux-x64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.2.tgz#c280202d5b54d04f1e2b810359fe73c4973e8b72" + integrity sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g== + +"@rollup/rollup-win32-arm64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.2.tgz#8ae561401b92acb8ca7a842ffadececb22a2247e" + integrity sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA== + +"@rollup/rollup-win32-ia32-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.2.tgz#c3a8b081595026eab9fccfe581624cb31af0d6f8" + integrity sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw== + +"@rollup/rollup-win32-x64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.2.tgz#c770006ccc780b2de7b2151fc7f37b49121a21c1" + integrity sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA== "@sheerun/mutationobserver-shim@^0.3.2": version "0.3.3" @@ -6271,34 +6271,34 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.20.1: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" escalade@^3.1.1: version "3.1.1" @@ -9237,6 +9237,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -9274,14 +9279,14 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= -postcss@^8.4.38: - version "8.4.38" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== +postcss@^8.4.43: + version "8.4.47" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" + integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== dependencies: nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.2.0" + picocolors "^1.1.0" + source-map-js "^1.2.1" prelude-ls@~1.1.2: version "1.1.2" @@ -9943,29 +9948,29 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^4.13.0: - version "4.17.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" - integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== +rollup@^4.20.0: + version "4.22.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.2.tgz#d762fa52c6ddb1307c1d6e8b463ba79432ffbb6b" + integrity sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.17.2" - "@rollup/rollup-android-arm64" "4.17.2" - "@rollup/rollup-darwin-arm64" "4.17.2" - "@rollup/rollup-darwin-x64" "4.17.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" - "@rollup/rollup-linux-arm-musleabihf" "4.17.2" - "@rollup/rollup-linux-arm64-gnu" "4.17.2" - "@rollup/rollup-linux-arm64-musl" "4.17.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" - "@rollup/rollup-linux-riscv64-gnu" "4.17.2" - "@rollup/rollup-linux-s390x-gnu" "4.17.2" - "@rollup/rollup-linux-x64-gnu" "4.17.2" - "@rollup/rollup-linux-x64-musl" "4.17.2" - "@rollup/rollup-win32-arm64-msvc" "4.17.2" - "@rollup/rollup-win32-ia32-msvc" "4.17.2" - "@rollup/rollup-win32-x64-msvc" "4.17.2" + "@rollup/rollup-android-arm-eabi" "4.22.2" + "@rollup/rollup-android-arm64" "4.22.2" + "@rollup/rollup-darwin-arm64" "4.22.2" + "@rollup/rollup-darwin-x64" "4.22.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.22.2" + "@rollup/rollup-linux-arm-musleabihf" "4.22.2" + "@rollup/rollup-linux-arm64-gnu" "4.22.2" + "@rollup/rollup-linux-arm64-musl" "4.22.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.22.2" + "@rollup/rollup-linux-riscv64-gnu" "4.22.2" + "@rollup/rollup-linux-s390x-gnu" "4.22.2" + "@rollup/rollup-linux-x64-gnu" "4.22.2" + "@rollup/rollup-linux-x64-musl" "4.22.2" + "@rollup/rollup-win32-arm64-msvc" "4.22.2" + "@rollup/rollup-win32-ia32-msvc" "4.22.2" + "@rollup/rollup-win32-x64-msvc" "4.22.2" fsevents "~2.3.2" rst-selector-parser@^2.2.3: @@ -10217,10 +10222,10 @@ snapdragon@^0.8.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-js@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" - integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" @@ -10950,14 +10955,14 @@ vite-tsconfig-paths@^4.3.2: globrex "^0.1.2" tsconfck "^3.0.3" -vite@^5.2.11: - version "5.2.11" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd" - integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== +vite@^5.4.6: + version "5.4.6" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" + integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== dependencies: - esbuild "^0.20.1" - postcss "^8.4.38" - rollup "^4.13.0" + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" optionalDependencies: fsevents "~2.3.3" diff --git a/tests/cypress/tests/integration/submitAndUncertify.spec.js b/tests/cypress/tests/integration/submitAndUncertify.spec.js index b21567c32..23f06347d 100644 --- a/tests/cypress/tests/integration/submitAndUncertify.spec.js +++ b/tests/cypress/tests/integration/submitAndUncertify.spec.js @@ -21,6 +21,7 @@ describe("CARTS Submit and Uncertify Integration Tests", () => { cy.get(certifySubmitButton).click(); cy.get("button").contains("Confirm Certify and Submit").click(); + cy.wait(3000); cy.get("button").contains("Return Home").click(); // log in as CMS Admin (user who can uncertify) From 03ba3d7993bb489b45b8d7338bd828282a5bd5a8 Mon Sep 17 00:00:00 2001 From: Nick Summers Date: Wed, 25 Sep 2024 10:34:06 -0400 Subject: [PATCH 17/24] Rollback to before rework (#139781) --- .github/workflows/audit-account.yml | 8 +- .github/workflows/deploy.yml | 4 +- .github/workflows/destroy.yml | 19 +- .../post-deploy-slack-notification.yml | 15 + .github/workflows/pull-request.yml | 19 +- .../scan_security-hub-jira-integration.yml | 5 +- .github/workflows/snyk-auto-merge.yml | 24 + .images/architecture.svg | 2 +- README.md | 9 +- package.json | 2 +- .../app-api/handlers/printing/printPdf.ts | 4 +- .../handlers/printing/tests/printPdf.test.ts | 2 +- .../stateStatus/tests/uncertify.test.ts | 17 +- .../libs/validation/backend-section.schema.ts | 3 - services/app-api/package.json | 17 +- services/app-api/yarn.lock | 1933 +- .../handlers/configureConnectors.js | 102 + .../handlers/sinkEnrollmentCounts.js | 78 +- services/carts-bigmac-streams/package.json | 14 +- services/carts-bigmac-streams/serverless.yml | 330 +- services/carts-bigmac-streams/yarn.lock | 1290 +- .../data/seed-local/seed-section.json | 14644 ++++++++++++---- .../data/seed/seed-section-base-2023.json | 33 +- services/database/package.json | 4 +- .../scripts/remove-readonly-in-section-3c.js | 99 - services/database/serverless.yml | 1 + services/database/yarn.lock | 1117 +- services/ui-auth/package.json | 2 +- services/ui-auth/serverless.yml | 19 +- services/ui-auth/yarn.lock | 1350 +- services/ui-src/package.json | 4 +- services/ui-src/serverless.yml | 1 + services/ui-src/src/AppRoutes.jsx | 4 +- services/ui-src/src/actions/uncertify.js | 2 +- .../ui-src/src/components/fields/DataGrid.jsx | 19 +- .../ui-src/src/components/fields/Fieldset.jsx | 4 +- .../ui-src/src/components/fields/Integer.jsx | 86 +- .../src/components/fields/Integer.test.jsx | 105 +- .../ui-src/src/components/fields/Money.jsx | 2 +- .../src/components/fields/Objective.jsx | 6 +- .../src/components/fields/Objectives.jsx | 10 +- .../ui-src/src/components/fields/Question.jsx | 59 +- .../src/components/fields/Repeatable.jsx | 5 +- .../src/components/fields/Repeatables.jsx | 3 - .../components/fields/SynthesizedTable.jsx | 58 +- .../components/fields/SynthesizedValue.jsx | 44 +- .../ui-src/src/components/fields/Text.jsx | 29 +- .../components/layout/CertifyAndSubmit.jsx | 104 +- .../src/components/layout/DateRange.jsx | 427 +- .../src/components/layout/DateRange.test.jsx | 14 +- .../src/components/layout/FormActions.jsx | 51 +- .../components/layout/FormActions.test.jsx | 70 +- .../src/components/layout/FormNavigation.jsx | 35 +- .../ui-src/src/components/layout/Header.jsx | 6 +- .../src/components/layout/HomeAdmin.jsx | 18 +- .../ui-src/src/components/layout/PageInfo.jsx | 37 +- .../src/components/layout/PageInfo.test.jsx | 4 +- .../ui-src/src/components/layout/Part.jsx | 149 +- .../src/components/layout/Part.test.jsx | 3 - .../src/components/layout/SaveError.jsx | 17 +- .../src/components/layout/SaveMessage.js | 65 + .../src/components/layout/SaveMessage.jsx | 32 - .../components/layout/SaveMessage.test.jsx | 8 + .../ui-src/src/components/layout/Section.jsx | 28 +- .../src/components/layout/StateHeader.jsx | 48 +- .../components/layout/StateHeader.test.jsx | 47 +- .../src/components/layout/Subsection.jsx | 38 +- .../ui-src/src/components/layout/Timeout.jsx | 31 +- .../src/components/layout/Timeout.test.jsx | 8 +- .../ui-src/src/components/layout/Title.jsx | 24 +- .../src/components/layout/UploadComponent.jsx | 396 +- .../ui-src/src/components/sections/Print.jsx | 74 +- .../src/components/sections/UserInfo.test.jsx | 27 - .../src/components/sections/UserProfile.jsx | 16 +- .../sections/{UserInfo.jsx => Userinfo.jsx} | 16 +- .../sections/homepage/CMSHomepage.jsx | 62 +- .../sections/homepage/ReportItem.jsx | 38 +- .../src/components/utils/InvokeSection.jsx | 15 +- .../src/components/utils/ScrollToTop.js | 8 +- .../ui-src/src/components/utils/Spinner.jsx | 40 +- .../src/hooks/authHooks/authLifecycle.js | 13 +- services/ui-src/src/store/formData.js | 18 +- services/ui-src/src/store/selectors.js | 114 +- services/ui-src/src/styles/_alerts.scss | 4 +- services/ui-src/src/styles/_main.scss | 3 - services/ui-src/src/styles/_sidebar.scss | 11 +- services/ui-src/src/util/shouldDisplay.js | 70 +- .../ui-src/src/util/shouldDisplay.test.js | 172 +- services/ui-src/src/util/synthesize.js | 166 +- services/ui-src/src/util/synthesize.test.js | 269 +- services/ui-src/yarn.lock | 529 +- services/uploads/serverless.yml | 1 + tests/cypress/cypress.config.js | 8 +- tests/cypress/package.json | 3 + .../integration/submitAndUncertify.spec.js | 1 - tests/cypress/yarn.lock | 2528 ++- yarn.lock | 1234 +- 97 files changed, 18632 insertions(+), 10075 deletions(-) create mode 100644 .github/workflows/snyk-auto-merge.yml create mode 100644 services/carts-bigmac-streams/handlers/configureConnectors.js delete mode 100644 services/database/scripts/remove-readonly-in-section-3c.js create mode 100644 services/ui-src/src/components/layout/SaveMessage.js delete mode 100644 services/ui-src/src/components/layout/SaveMessage.jsx delete mode 100644 services/ui-src/src/components/sections/UserInfo.test.jsx rename services/ui-src/src/components/sections/{UserInfo.jsx => Userinfo.jsx} (57%) diff --git a/.github/workflows/audit-account.yml b/.github/workflows/audit-account.yml index 3e428232a..f8a296d9a 100644 --- a/.github/workflows/audit-account.yml +++ b/.github/workflows/audit-account.yml @@ -46,16 +46,16 @@ jobs: echo "Reports with no entries will be omitted" CI_ACTIVE="$(./audit-account.sh ci_active resources.json)" [[ $(jq -r 'length' <<< "${CI_ACTIVE}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_ACTIVE}" > reports/ci_active.csv || : + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_ACTIVE}" > reports/ci_active.csv CI_INACTIVE="$(./audit-account.sh ci_inactive resources.json)" [[ $(jq -r 'length' <<< "${CI_INACTIVE}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_INACTIVE}" > reports/ci_inactive.csv || : + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_INACTIVE}" > reports/ci_inactive.csv CF_OTHER="$(./audit-account.sh cf_other resources.json)" [[ $(jq -r 'length' <<< "${CF_OTHER}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CF_OTHER}" > reports/cf_other.csv || : + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CF_OTHER}" > reports/cf_other.csv UNTAGGED="$(./audit-account.sh untagged resources.json)" [[ $(jq -r 'length' <<< "${UNTAGGED}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${UNTAGGED}" > reports/untagged.csv || : + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${UNTAGGED}" > reports/untagged.csv - name: Upload reports uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5c23aa0e5..69d5d21c5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,8 +7,8 @@ on: - "!skipci*" concurrency: - # Ensuring group key matches the destroy workflow currently in main - group: ${{ github.ref_name }} + # Ensuring group key matches the destroy workflow currently in master + group: ${{ github.workflow }}-${{ github.ref_name }} cancel-in-progress: false permissions: diff --git a/.github/workflows/destroy.yml b/.github/workflows/destroy.yml index 0a96661ec..5411cd724 100644 --- a/.github/workflows/destroy.yml +++ b/.github/workflows/destroy.yml @@ -8,9 +8,6 @@ on: description: "Name of the environment to destroy:" required: true -concurrency: - group: ${{ inputs.environment || github.event.ref }} - permissions: id-token: write contents: read @@ -65,18 +62,4 @@ jobs: inputs: '{ "topics": "mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.config,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.offsets,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.status"}' ref: refs/heads/master # Otherwise workflow-dispatch tries to operate off of our default name - name: Destroy - run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false - - # Notify the integrations channel when a destroy action fails - notify_on_destroy_failure: - runs-on: ubuntu-latest - needs: - - destroy - if: ${{ failure() }} - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}." - MSG_MINIMAL: true - SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} \ No newline at end of file + run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false \ No newline at end of file diff --git a/.github/workflows/post-deploy-slack-notification.yml b/.github/workflows/post-deploy-slack-notification.yml index 2fa4ee199..9a06a1e06 100755 --- a/.github/workflows/post-deploy-slack-notification.yml +++ b/.github/workflows/post-deploy-slack-notification.yml @@ -8,6 +8,7 @@ on: - 'main' - 'val' - 'production' + - 'snyk-**' jobs: notify_on_failure: @@ -23,6 +24,20 @@ jobs: MSG_MINIMAL: true SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + # Notify the integrations channel only when a Snyk auto merge fails + notify_failed_snyk_auto_merge: + runs-on: ubuntu-latest + #only check branch names that begin with snyk- + if: ${{ github.event.workflow_run.conclusion == 'failure' && startsWith(github.event.workflow_run.head_branch, 'snyk-') }} + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_TITLE: ":boom: A Synk auto merge has failed in ${{ github.repository }}" + SLACK_MESSAGE: "${{ github.event.workflow_run.html_url }}" + MSG_MINIMAL: true + SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} + # Sends a slack message to the mdct-prod-releases channel in CMS slack notify_on_prod_release: runs-on: ubuntu-latest diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e6cb288b1..90e039c4e 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -44,4 +44,21 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PRNUM: ${{ github.event.pull_request.number }} - PR_AUTHOR: ${{ github.event.pull_request.user.login }} \ No newline at end of file + PR_AUTHOR: ${{ github.event.pull_request.user.login }} + + #Notify the integrations channel only when a Snyk auto merge fails pr checks + notify_on_pr_failure: + runs-on: ubuntu-latest + needs: + - linting + - jest-frontend + - jest-backend + #only check branch names that begin with snyk- + if: ${{ failure() && startsWith(github.head_ref, 'snyk-') }} + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_TITLE: ":boom: A Synk auto merge has failed pull request checks in ${{ github.repository }}." + MSG_MINIMAL: true + SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} diff --git a/.github/workflows/scan_security-hub-jira-integration.yml b/.github/workflows/scan_security-hub-jira-integration.yml index 2428a1458..c891ab340 100644 --- a/.github/workflows/scan_security-hub-jira-integration.yml +++ b/.github/workflows/scan_security-hub-jira-integration.yml @@ -21,12 +21,13 @@ jobs: aws-region: ${{ secrets.AWS_DEFAULT_REGION }} role-to-assume: ${{ secrets.PRODUCTION_SYNC_OIDC_ROLE }} - name: Sync Security Hub and Jira - uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v2.0.9 + uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v1.0.5 with: jira-username: "mdct_github_service_account" jira-token: ${{ secrets.JIRA_ENT_USER_TOKEN }} + jira-host: jiraent.cms.gov jira-project-key: CMDCT jira-ignore-statuses: Done, Closed, Canceled jira-custom-fields: '{ "customfield_10100": "CMDCT-2280", "customfield_26700" : [{"id": "40101", "value": "CARTS"}] }' aws-severities: CRITICAL, HIGH, MEDIUM - jira-assignee: "MWTW" + assign-jira-ticket-to: "MWTW" diff --git a/.github/workflows/snyk-auto-merge.yml b/.github/workflows/snyk-auto-merge.yml new file mode 100644 index 000000000..0694c999a --- /dev/null +++ b/.github/workflows/snyk-auto-merge.yml @@ -0,0 +1,24 @@ +name: Snyk auto-merge +on: + pull_request: + workflow_dispatch: + +permissions: + pull-requests: write + contents: write + +jobs: + snyk: + runs-on: ubuntu-latest + if: ${{ github.actor == 'mdct-github-service-account' }} + steps: + - name: Auto-approve Snyk PR + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: Enable auto-merge for Snyk PRs + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.images/architecture.svg b/.images/architecture.svg index a222bc1dd..d7d40c838 100644 --- a/.images/architecture.svg +++ b/.images/architecture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/README.md b/README.md index 872ff60c8..3d65460e6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Maintainability](https://api.codeclimate.com/v1/badges/f1775f53aedf747e85b2/maintainability)](https://codeclimate.com/repos/6449718c21275100df510ea9/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/f1775f53aedf747e85b2/test_coverage)](https://codeclimate.com/repos/6449718c21275100df510ea9/test_coverage) -## Integration Environment Deploy Status: +### Integration Environment Deploy Status: | Branch | Build Status | | ------------- | ------------- | | main | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-carts/actions/workflows/deploy.yml/badge.svg) | @@ -16,7 +16,7 @@ CARTS is the CMCS MDCT application for collecting state data related to coverage Under section 2108(a) of the Act, states must assess the operation of their separate CHIP and Medicaid expansion programs and the progress made in reducing the number of uncovered, low-income children. The results of the assessment are reported to the Secretary by January 1 following the end of the FY in the CHIP Annual Reporting Template System (CARTS). CARTS collects information about programmatic changes, performance goals, program operation, program financing, program challenges and accomplishments. -_Note: The [`main`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/main) branch contains CARTSv3. All code related to CARTSv2 (legacy) can be found in the [`skipci-archive-carts-v2`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/skipci-archive-carts-v2) branch._ +_Note: The [`main`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/main) branch contains CARTSv3. All code related to CARTSv2 (legacy) can be found in the [`master`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/master) branch._ ## Table of contents @@ -115,7 +115,10 @@ On the SEDS side, this topic is updated on every submission of seds data, but CA - 4th quarter data. - The rollover for a "new year" is October, and future submissions are not recognized until that threshold -Updates outside of that time frame will need to be manually corrected in CARTS, or the integration will need to be modifed to collect data for old forms. CARTS additionally looks for the `enrollmentCounts` property which is only included in forms 21E and 64.21E (question 7), either by manual trigger or update. +Updates outside of that time frame will need to be manually corrected in CARTS, or the integration will need to be modifed to collect data for old forms. CARTS additionally looks for the `enrollmentCounts` property which is only included in forms 21E and 64.21E (question 7), either by manual trigger or update. See SEDS files: + +- [generateEnrollmentTotals](https://github.com/Enterprise-CMCS/macpro-mdct-seds/blob/master/services/app-api/handlers/state-forms/post/generateEnrollmentTotals.js) +- [updateStateForms](https://github.com/Enterprise-CMCS/macpro-mdct-seds/blob/master/services/app-api/handlers/state-forms/post/updateStateForms.js) For testing convenience, stateuser2 points at AL in CARTS and the stateuser points at AL in SEDS. diff --git a/package.json b/package.json index 64d442968..5bfe1bb5d 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "eslint-plugin-react": "^7.24.0", "eslint-plugin-react-hooks": "^2.x", "prettier": "^2.4.1", - "serverless": "^3.39.0", + "serverless": "^3.38.0", "serverless-bundle": "^6.1.0", "serverless-cloudfront-invalidate": "^1.12.2", "serverless-dotenv-plugin": "^3.0.0", diff --git a/services/app-api/handlers/printing/printPdf.ts b/services/app-api/handlers/printing/printPdf.ts index 5b3f84ad9..686421f94 100644 --- a/services/app-api/handlers/printing/printPdf.ts +++ b/services/app-api/handlers/printing/printPdf.ts @@ -21,7 +21,7 @@ export const print = handler(async (event, _context) => { if (DOMPurify.isSupported) { sanitizedHtml = DOMPurify.sanitize(rawHtml, { WHOLE_DOCUMENT: true, - ADD_TAGS: ["head", "link", "base"], + ADD_TAGS: ["head"], }); } if (!sanitizedHtml) { @@ -39,7 +39,7 @@ export const print = handler(async (event, _context) => { document_content: rawHtml, type: "pdf" as const, // This tag differentiates QMR and CARTS requests in DocRaptor's logs. - tag: `CARTS ${stage}`, + tag: "CARTS", test: stage !== "production", prince_options: { profile: "PDF/UA-1" as const, diff --git a/services/app-api/handlers/printing/tests/printPdf.test.ts b/services/app-api/handlers/printing/tests/printPdf.test.ts index 445c3b2e7..a2165f1a4 100644 --- a/services/app-api/handlers/printing/tests/printPdf.test.ts +++ b/services/app-api/handlers/printing/tests/printPdf.test.ts @@ -54,7 +54,7 @@ describe("Test Print PDF handler", () => { doc: expect.objectContaining({ document_content: html, type: "pdf", - tag: expect.stringMatching("CARTS"), + tag: "CARTS", prince_options: expect.objectContaining({ profile: "PDF/UA-1", }), diff --git a/services/app-api/handlers/stateStatus/tests/uncertify.test.ts b/services/app-api/handlers/stateStatus/tests/uncertify.test.ts index fa1eb616c..a882720c5 100644 --- a/services/app-api/handlers/stateStatus/tests/uncertify.test.ts +++ b/services/app-api/handlers/stateStatus/tests/uncertify.test.ts @@ -17,7 +17,6 @@ jest.mock("../../../libs/authorization", () => ({ state: "AL", }), })); - describe("Test Uncertify CARTS Report Handler", () => { test("uncertify CARTS report", async () => { const event: APIGatewayProxyEvent = { @@ -25,21 +24,7 @@ describe("Test Uncertify CARTS Report Handler", () => { pathParameters: { year: "2021", state: "AL" }, body: `{"status": "in_progress", "username": "test user"}`, }; - const res = await updateStateStatus(event, null); - - /* - * Convert date to a regex that doesn't care about seconds. - * For example "12:34:56 (UTC)" becomes /12:34:.. \(UTC\)/ - * This reduces flakiness, in case a second passes during text execution - */ - const expectedDateString = new Date() - .toString() - .replace("(", "\\(") - .replace(")", "\\)") - .replace("+", "\\+") - .replace(/(?<=\d{2}:\d{2}:)\d{2}/, ".."); - expect(res.statusCode).toBe(200); expect(dynamodbLib.update).toBeCalledWith({ ExpressionAttributeNames: { @@ -48,7 +33,7 @@ describe("Test Uncertify CARTS Report Handler", () => { }, ExpressionAttributeValues: { ":status": "in_progress", - ":lastChanged": expect.stringMatching(expectedDateString), + ":lastChanged": new Date().toString(), }, Key: { stateId: "AL", diff --git a/services/app-api/libs/validation/backend-section.schema.ts b/services/app-api/libs/validation/backend-section.schema.ts index 9ae88e986..3383d025c 100644 --- a/services/app-api/libs/validation/backend-section.schema.ts +++ b/services/app-api/libs/validation/backend-section.schema.ts @@ -359,9 +359,6 @@ export const sectionSchema = { hint: { type: "string", }, - mask: { - type: "string", - }, questions: { type: "array", items: { diff --git a/services/app-api/package.json b/services/app-api/package.json index bd0ddd9c1..f2247f3ba 100644 --- a/services/app-api/package.json +++ b/services/app-api/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@types/dompurify": "^3.0.5", "@types/jest": "^27.4.0", - "@types/jsdom": "^21.1.7", + "@types/jsdom": "^21.1.6", "aws-sdk-client-mock": "^3.0.0", "jest": "^27.4.7", "serverless-associate-waf": "^1.2.1", @@ -27,22 +27,19 @@ "typescript": "^4.5.4" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.621.0", - "@aws-sdk/client-s3": "^3.621.0", - "@aws-sdk/client-ssm": "^3.621.0", - "@aws-sdk/lib-dynamodb": "^3.621.0", - "@aws-sdk/s3-request-presigner": "^3.621.0", + "@aws-sdk/client-dynamodb": "^3.596.0", + "@aws-sdk/client-s3": "^3.596.0", + "@aws-sdk/client-ssm": "^3.596.0", + "@aws-sdk/lib-dynamodb": "^3.596.0", + "@aws-sdk/s3-request-presigner": "^3.596.0", "aws-jwt-verify": "^3.1.0", "dompurify": "^3.1.4", - "jsdom": "^24.1.0", + "jsdom": "^22.1.0", "jsonpath-plus": "^5.1.0", "jsonschema": "^1.4.1", "jwt-decode": "^3.1.2", "uuid": "^7.0.3" }, - "resolutions": { - "ws": "^8.18.0" - }, "jest": { "verbose": true, "transform": { diff --git a/services/app-api/yarn.lock b/services/app-api/yarn.lock index 01a60594a..9fb24d794 100644 --- a/services/app-api/yarn.lock +++ b/services/app-api/yarn.lock @@ -2,479 +2,487 @@ # yarn lockfile v1 -"@aws-crypto/crc32@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1" - integrity sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg== +"@aws-crypto/crc32@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-3.0.0.tgz#07300eca214409c33e3ff769cd5697b57fdd38fa" + integrity sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA== dependencies: - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/crc32c@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz#4e34aab7f419307821509a98b9b08e84e0c1917e" - integrity sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag== +"@aws-crypto/crc32c@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f" + integrity sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w== dependencies: - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/sha1-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz#b0ee2d2821d3861f017e965ef3b4cb38e3b6a0f4" - integrity sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg== +"@aws-crypto/ie11-detection@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" + integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== + dependencies: + tslib "^1.11.1" + +"@aws-crypto/sha1-browser@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz#f9083c00782b24714f528b1a1fef2174002266a3" + integrity sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw== dependencies: - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/ie11-detection" "^3.0.0" + "@aws-crypto/supports-web-crypto" "^3.0.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" -"@aws-crypto/sha256-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" - integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== +"@aws-crypto/sha256-browser@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" + integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== dependencies: - "@aws-crypto/sha256-js" "^5.2.0" - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/ie11-detection" "^3.0.0" + "@aws-crypto/sha256-js" "^3.0.0" + "@aws-crypto/supports-web-crypto" "^3.0.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" -"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" - integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== +"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" + integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== dependencies: - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/supports-web-crypto@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" - integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== +"@aws-crypto/supports-web-crypto@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" + integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== dependencies: - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/util@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" - integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== +"@aws-crypto/util@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" + integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== dependencies: "@aws-sdk/types" "^3.222.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" - integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-endpoint-discovery" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" + +"@aws-sdk/client-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" + integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-endpoint-discovery" "3.587.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-s3@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.621.0.tgz#86a0e77913cd1e82308299835431887fe306c3a0" - integrity sha512-YhGkd2HQTM4HCYJIAVWvfbUMpOF7XUr1W/e2LN3CFP0WTF4zcCJKesJ2iNHrExqC0Ek1+qarMxiXBK95itfjYQ== - dependencies: - "@aws-crypto/sha1-browser" "5.2.0" - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-bucket-endpoint" "3.620.0" - "@aws-sdk/middleware-expect-continue" "3.620.0" - "@aws-sdk/middleware-flexible-checksums" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-location-constraint" "3.609.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-sdk-s3" "3.621.0" - "@aws-sdk/middleware-signing" "3.620.0" - "@aws-sdk/middleware-ssec" "3.609.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/signature-v4-multi-region" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@aws-sdk/xml-builder" "3.609.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/eventstream-serde-browser" "^3.0.5" - "@smithy/eventstream-serde-config-resolver" "^3.0.3" - "@smithy/eventstream-serde-node" "^3.0.4" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-blob-browser" "^3.1.2" - "@smithy/hash-node" "^3.0.3" - "@smithy/hash-stream-node" "^3.1.2" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/md5-js" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-s3@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.596.0.tgz#28233f0cc826d189230489ca816a37c350fa06f8" + integrity sha512-W5C85cEUTYbmCpvvhLye+KirtLcBMX4t0l4Zj3EsGc5tTwkp7lxZDmJEoDfRy0+FE2H/O6OZQJdWMXCwt/Inqw== + dependencies: + "@aws-crypto/sha1-browser" "3.0.0" + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-bucket-endpoint" "3.587.0" + "@aws-sdk/middleware-expect-continue" "3.577.0" + "@aws-sdk/middleware-flexible-checksums" "3.587.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-location-constraint" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-sdk-s3" "3.587.0" + "@aws-sdk/middleware-signing" "3.587.0" + "@aws-sdk/middleware-ssec" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/signature-v4-multi-region" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@aws-sdk/xml-builder" "3.575.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/eventstream-serde-browser" "^3.0.0" + "@smithy/eventstream-serde-config-resolver" "^3.0.0" + "@smithy/eventstream-serde-node" "^3.0.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-blob-browser" "^3.0.0" + "@smithy/hash-node" "^3.0.0" + "@smithy/hash-stream-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/md5-js" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-stream" "^3.1.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-retry" "^3.0.0" + "@smithy/util-stream" "^3.0.1" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-ssm@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.621.0.tgz#d5928d86c65c2cb072f8d3bdaa739d3ff06cd1e5" - integrity sha512-E4OM7HH9qU2TZGDrX2MlBlBr9gVgDm573Qa1CTFih58dUZyaPEOiZSYLUNOyw4nMyVLyDMR/5zQ4wAorNwKVPw== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-ssm@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.596.0.tgz#310cb1ed3b0475acfd555b00b7d9cecbccb661b6" + integrity sha512-6gTCjQQ3ZMABSzKLnjEbiqDS4C+BpSAMyw9022/vAP7ybdF/fJENBy4XEwKgZ6U7VhLZePrO0ESyYYcpBnAc+g== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso-oidc@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" + integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" + integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sts@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" + integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== - dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - fast-xml-parser "4.4.1" +"@aws-sdk/core@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" + integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== + dependencies: + "@smithy/core" "^2.2.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + fast-xml-parser "4.2.5" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== +"@aws-sdk/credential-provider-env@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" + integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" +"@aws-sdk/credential-provider-http@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" + integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-ini@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" + integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-node@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" + integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== + dependencies: + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-ini" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== +"@aws-sdk/credential-provider-process@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" + integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== - dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" + integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== + dependencies: + "@aws-sdk/client-sso" "3.592.0" + "@aws-sdk/token-providers" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== +"@aws-sdk/credential-provider-web-identity@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" + integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -485,208 +493,206 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" - integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== +"@aws-sdk/lib-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" + integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== dependencies: - "@aws-sdk/util-dynamodb" "3.621.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@aws-sdk/util-dynamodb" "3.596.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-bucket-endpoint@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" - integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== +"@aws-sdk/middleware-bucket-endpoint@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.587.0.tgz#def5edbadf53bdfe765aa9acf12f119eb208b22f" + integrity sha512-HkFXLPl8pr6BH/Q0JpOESqEKL0ZK3sk7aSZ1S6GE4RXET7H5R94THULXqQFZzD48gZcyFooO/yNKZTqrZFaWKg== dependencies: - "@aws-sdk/types" "3.609.0" + "@aws-sdk/types" "3.577.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" - integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== +"@aws-sdk/middleware-endpoint-discovery@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" + integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-expect-continue@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" - integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== +"@aws-sdk/middleware-expect-continue@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.577.0.tgz#47add47f17873a6044cb140f17033cb6e1d02744" + integrity sha512-6dPp8Tv4F0of4un5IAyG6q++GrRrNQQ4P2NAMB1W0VO4JoEu1C8GievbbDLi88TFIFmtKpnHB0ODCzwnoe8JsA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-flexible-checksums@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" - integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== +"@aws-sdk/middleware-flexible-checksums@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.587.0.tgz#74afe7bd3088adf05b2ed843ad41386e793e0397" + integrity sha512-URMwp/budDvKhIvZ4a6zIBfFTun/iDlPWXqsGKYjEtHt8jz27OSjCZtDtIeqW4WTBdKL8KZgQcl+DdaE5M1qiQ== dependencies: - "@aws-crypto/crc32" "5.2.0" - "@aws-crypto/crc32c" "5.2.0" - "@aws-sdk/types" "3.609.0" + "@aws-crypto/crc32" "3.0.0" + "@aws-crypto/crc32c" "3.0.0" + "@aws-sdk/types" "3.577.0" "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" + integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-location-constraint@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" - integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== +"@aws-sdk/middleware-location-constraint@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.577.0.tgz#9372441a4ac5747b3176ac6378d92866a51de815" + integrity sha512-DKPTD2D2s+t2QUo/IXYtVa/6Un8GZ+phSTBkyBNx2kfZz4Kwavhl/JJzSqTV3GfCXkVdFu7CrjoX7BZ6qWeTUA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" + integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== +"@aws-sdk/middleware-recursion-detection@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" + integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-sdk-s3@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.621.0.tgz#da9cc709fffa4d269bb472e8ca42f2a4d80a842b" - integrity sha512-CJrQrtKylcqvyPkRR16JmPZkHroCkWwLErQrg30ZcBPNNok8xbfX6cYqG16XDTnu4lSYzv2Yqc4w4oOBv8xerQ== +"@aws-sdk/middleware-sdk-s3@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.587.0.tgz#720620ccdc2eb6ecab0f3a6adbd28fc27fdc70ce" + integrity sha512-vtXTGEiw1E9Fax4LmcU2Z208gbrC8ShrdsSLmGcRPpu5NPOGBFBSDG5sy5EDNClrFxIl/Le8coQnD0EDBtx+uQ== dependencies: - "@aws-sdk/types" "3.609.0" + "@aws-sdk/types" "3.577.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-stream" "^3.1.3" - "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-signing@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.620.0.tgz#8aface959d610732b0a5ede6f2c48119b33c4f3f" - integrity sha512-gxI7rubiaanUXaLfJ4NybERa9MGPNg2Ycl/OqANsozrBnR3Pw8vqy3EuVImQOyn2pJ2IFvl8ZPoSMHf4pX56FQ== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" +"@aws-sdk/middleware-signing@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.587.0.tgz#593c418c09c51c0bc55f23a7a6b0fda8502a8103" + integrity sha512-tiZaTDj4RvhXGRAlncFn7CSEfL3iNPO67WSaxAq+Ls5j1VgczPhu5262cWONNoMgth3nXR1hhLC4ITSl/a6AzA== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/types" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-ssec@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" - integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== +"@aws-sdk/middleware-ssec@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.577.0.tgz#9fcd74e8bf2c277b4349c537cbeceba279166f32" + integrity sha512-i2BPJR+rp8xmRVIGc0h1kDRFcM2J9GnClqqpc+NLSjmYadlcg4mPklisz9HzwFVcRPJ5XcGf3U4BYs5G8+iTyg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" + integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" + integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/s3-request-presigner@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.621.0.tgz#0c6d033dd3b3ae17061407766466ce66362c6d92" - integrity sha512-7XCH5wy1guywSa4PHKrSiAqm/mYpuKURQWD9nGN9tl2DWec6OK7z+TTTCOml8lBX8Mg5Hx2GUdO3V8uRVYnEmw== - dependencies: - "@aws-sdk/signature-v4-multi-region" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-format-url" "3.609.0" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" +"@aws-sdk/s3-request-presigner@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.596.0.tgz#1b931f9cda1e065f0a02b3f81b27f197a87d3385" + integrity sha512-+2BXIc8JGH3MtLrR1Rx5gdD/AOEnuNsm5vmfbCW3tT3UinPkqCQTe2dB5KFCu76YTRE+D2yY8OF2ZW46sbh9bA== + dependencies: + "@aws-sdk/signature-v4-multi-region" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-format-url" "3.577.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/signature-v4-multi-region@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.621.0.tgz#d8bd2e8bab970acaecfaca3de85c6924b43f07ff" - integrity sha512-u+ulCaHFveqHaTxgiYrEAyfBVP6GRKjnmDut67CtjhjslshPWYpo/ndtlCW1zc0RDne3uUeK13Pqp7dp7p1d6g== +"@aws-sdk/signature-v4-multi-region@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.587.0.tgz#f8bb6de9135f3fafab04b9220409cd0d0549b7d8" + integrity sha512-TR9+ZSjdXvXUz54ayHcCihhcvxI9W7102J1OK6MrLgBlPE7uRhAx42BR9L5lLJ86Xj3LuqPWf//o9d/zR9WVIg== dependencies: - "@aws-sdk/middleware-sdk-s3" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/middleware-sdk-s3" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" + integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" + integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -704,31 +710,31 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" - integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== +"@aws-sdk/util-dynamodb@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" + integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" + integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" + "@smithy/util-endpoints" "^2.0.1" tslib "^2.6.2" -"@aws-sdk/util-format-url@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.609.0.tgz#f53907193bb636b52b61c81bbe6d7bd5ddc76c68" - integrity sha512-fuk29BI/oLQlJ7pfm6iJ4gkEpHdavffAALZwXh9eaY1vQ0ip0aKfRTiNudPoJjyyahnz5yJ1HkmlcDitlzsOrQ== +"@aws-sdk/util-format-url@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.577.0.tgz#e6686c767e9809416179dbafbc2a39cbbb548259" + integrity sha512-SyEGC2J+y/krFRuPgiF02FmMYhqbiIkOjDE6k4nYLJQRyS6XEAGxZoG+OHeOVEM+bsDgbxokXZiM3XKGu6qFIg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -738,32 +744,39 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" + integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" + integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/xml-builder@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" - integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== +"@aws-sdk/util-utf8-browser@^3.0.0": + version "3.259.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" + integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== + dependencies: + tslib "^2.3.1" + +"@aws-sdk/xml-builder@3.575.0": + version "3.575.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz#233b2aae422dd789a078073032da1bc60317aa1d" + integrity sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": @@ -1408,12 +1421,12 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918" integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ== -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@smithy/abort-controller@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.1.tgz#bb8debe1c23ca62a61b33a9ee2918f5a79d81928" + integrity sha512-Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/chunked-blob-reader-native@^3.0.0": @@ -1431,140 +1444,133 @@ dependencies: tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.1", "@smithy/config-resolver@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.2.tgz#ad19331d48d9a6e67bdd43a0099e1d8af1b82a82" + integrity sha512-wUyG6ezpp2sWAvfqmSYTROwFUmJqKV78GLf55WODrosBcT0BAMd9bOLO4HRhynWBgAobPml2cF9ZOdgCe00r+g== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/types" "^3.1.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.1" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== - dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" +"@smithy/core@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.1.tgz#92ed71eb96ef16d5ac8b23dbdf913bcb225ab875" + integrity sha512-R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA== + dependencies: + "@smithy/middleware-endpoint" "^3.0.2" + "@smithy/middleware-retry" "^3.0.4" + "@smithy/middleware-serde" "^3.0.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/smithy-client" "^3.1.2" + "@smithy/types" "^3.1.0" + "@smithy/util-middleware" "^3.0.1" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.1.0", "@smithy/credential-provider-imds@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.1.tgz#8b2b3c9e7e67fd9e3e436a5e1db6652ab339af7b" + integrity sha512-htndP0LwHdE3R3Nam9ZyVWhwPYOmD4xCL79kqvNxy8u/bv0huuy574CSiRY4cvEICgimv8jlVfLeZ7zZqbnB2g== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/property-provider" "^3.1.1" + "@smithy/types" "^3.1.0" + "@smithy/url-parser" "^3.0.1" tslib "^2.6.2" -"@smithy/eventstream-codec@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" - integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== +"@smithy/eventstream-codec@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.0.1.tgz#34fd2f37ddb411fd6a28ff86e0c7c95f813802bd" + integrity sha512-RNl3CuWZWPy+s8sx4PcOkRvlfodR33Dj3hzUuDG/CoF6XBvm5Xvr33wRoC1RWht0NN+Q6Z6KcoAkhlQA12MBBw== dependencies: - "@aws-crypto/crc32" "5.2.0" - "@smithy/types" "^3.3.0" + "@aws-crypto/crc32" "3.0.0" + "@smithy/types" "^3.1.0" "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-browser@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" - integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== +"@smithy/eventstream-serde-browser@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.1.tgz#8eb486bda0d41324396fed42f471e02bf0a9122e" + integrity sha512-hpjzFlsDwtircebetScjEiwQwwPy0XASsV3dpUxEhPQUnF/mQ/IeiXaDrhsOmJiscMuCwxNPoZm3x4XmnGwN1g== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.4" - "@smithy/types" "^3.3.0" + "@smithy/eventstream-serde-universal" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/eventstream-serde-config-resolver@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" - integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== +"@smithy/eventstream-serde-config-resolver@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.1.tgz#74e9cb3992edc03319ffa05eb6008aacaaca4f71" + integrity sha512-6+B8P+5Q1mll4u7IoI7mpmYOSW3/c2r3WQoYLdqOjbIKMixJFGmN79ZjJiNMy4X2GZ4We9kQ6LfnFuczSlhcyw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/eventstream-serde-node@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" - integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== +"@smithy/eventstream-serde-node@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.1.tgz#81b96ee269334516ab23b11c7d0b9a5dc32ae633" + integrity sha512-8ylxIbZ0XiQD8kSKPmrrGS/2LmcDxg1mAAURa5tjcjYeBJPg7EaFRcH/aRe2RDPaoVUAbOfjHh2bTkWvy7P4Ig== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.4" - "@smithy/types" "^3.3.0" + "@smithy/eventstream-serde-universal" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/eventstream-serde-universal@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" - integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== +"@smithy/eventstream-serde-universal@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.1.tgz#0060ce4147568706988890490e8c6cc11a15dde9" + integrity sha512-E6aeN0MEO1p1KVN4Z3XQlvdUPp+hKJ21eiiioWtNLNNGAZUaJPlXgrqF+6Wj/aM86//9EQp6/iAwQB6eXaulzw== dependencies: - "@smithy/eventstream-codec" "^3.1.2" - "@smithy/types" "^3.3.0" + "@smithy/eventstream-codec" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.0.1", "@smithy/fetch-http-handler@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz#eff4056e819b3591d1c5d472ee58c2981886920a" + integrity sha512-0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.1" + "@smithy/querystring-builder" "^3.0.1" + "@smithy/types" "^3.1.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-blob-browser@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" - integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== +"@smithy/hash-blob-browser@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.0.1.tgz#9a72d6010bad91f2f6b97df41bbe662b24d404f3" + integrity sha512-P8xxvMm0F6vi/7+GwGhZbE532b7TzGJUfUoUNGrb+dcR+MJUisV8sEQBZ5EB/ddf1/aGr8KO7QqbO/6WhfdW/Q== dependencies: "@smithy/chunked-blob-reader" "^3.0.0" "@smithy/chunked-blob-reader-native" "^3.0.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.1.tgz#52924bcbd6a02c7f7e2d9c332f59d5adc09688a3" + integrity sha512-w2ncjgk2EYO2+WhAsSQA8owzoOSY7IL1qVytlwpnL1pFGWTjIoIh5nROkEKXY51unB63bMGZqDiVoXaFbyKDlg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-stream-node@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" - integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== +"@smithy/hash-stream-node@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.0.1.tgz#88f467cb35f87fa2154774ac56d901cf13321edd" + integrity sha512-5Z5Oyqh9f5927HWyKK3klG09rMlVu8OcEQd4YDxYZbjdB9nHd8imTMN06tfcyrZCEzcOdeUCpJmjfVWUxUDigg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@smithy/is-array-buffer@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" - integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== +"@smithy/invalid-dependency@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.1.tgz#921787acfbe136af7ded46ae6f4b3d81c9b7e05e" + integrity sha512-RSNF/32BKygXKKMyS7koyuAq1rcdW5p5c4EFa77QenBFze9As+JiRnV9OWBh2cB/ejGZalEZjvIrMLHwJl7aGA== dependencies: + "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/is-array-buffer@^3.0.0": @@ -1574,161 +1580,160 @@ dependencies: tslib "^2.6.2" -"@smithy/md5-js@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" - integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== +"@smithy/md5-js@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.1.tgz#796dca16509f66da5ba380120efdbbbfc4d1ab5d" + integrity sha512-wQa0YGsR4Zb1GQLGwOOgRAbkj22P6CFGaFzu5bKk8K4HVNIC2dBlIxqZ/baF0pLiSZySAPdDZT7CdZ7GkGXt5A== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== +"@smithy/middleware-content-length@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.1.tgz#90bce78dfd0db978df7920ae58e420ce9ed2f79a" + integrity sha512-6QdK/VbrCfXD5/QolE2W/ok6VqxD+SM28Ds8iSlEHXZwv4buLsvWyvoEEy0322K/g5uFgPzBmZjGqesTmPL+yQ== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== - dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" +"@smithy/middleware-endpoint@^3.0.1", "@smithy/middleware-endpoint@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz#93bb575a25bb0bd5d1d18cd77157ccb2ba15112a" + integrity sha512-gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w== + dependencies: + "@smithy/middleware-serde" "^3.0.1" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/shared-ini-file-loader" "^3.1.1" + "@smithy/types" "^3.1.0" + "@smithy/url-parser" "^3.0.1" + "@smithy/util-middleware" "^3.0.1" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" +"@smithy/middleware-retry@^3.0.3", "@smithy/middleware-retry@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz#4f1a23c218fe279659c3d88ec1c18bf19938eba6" + integrity sha512-Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg== + dependencies: + "@smithy/node-config-provider" "^3.1.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/service-error-classification" "^3.0.1" + "@smithy/smithy-client" "^3.1.2" + "@smithy/types" "^3.1.0" + "@smithy/util-middleware" "^3.0.1" + "@smithy/util-retry" "^3.0.1" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-serde@^3.0.0", "@smithy/middleware-serde@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz#566ec46ee84873108c1cea26b3f3bd2899a73249" + integrity sha512-ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-stack@^3.0.0", "@smithy/middleware-stack@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz#9418f1295efda318c181bf3bca65173a75d133e5" + integrity sha512-fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.0", "@smithy/node-config-provider@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz#a361ab228d2229b03cc2fbdfd304055c38127614" + integrity sha512-z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.1" + "@smithy/shared-ini-file-loader" "^3.1.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.0.0", "@smithy/node-http-handler@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz#40e1ebe00aeb628a46a3a12b14ad6cabb69b576e" + integrity sha512-hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.0.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/querystring-builder" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.0", "@smithy/property-provider@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.1.tgz#4849b69b83ac97e68e80d2dc0c2b98ce5950dffe" + integrity sha512-YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.0.0", "@smithy/protocol-http@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.1.tgz#7b57080565816f229d2391726f537e13371c7e38" + integrity sha512-eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.0", "@smithy/querystring-builder@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz#8fb20e1d13154661612954c5ba448e0875be6118" + integrity sha512-vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz#68589196fedf280aad2c0a69a2a016f78b2137cf" + integrity sha512-Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz#23db475d3cef726e8bf3435229e6e04e4de92430" + integrity sha512-ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.0", "@smithy/shared-ini-file-loader@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz#752ecd8962a660ded75d25341a48feb94f145a6f" + integrity sha512-nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.1.tgz#8542bfe127f93a8c2c5bcdc05c3e489b9cd16ed5" + integrity sha512-ARAmD+E7j6TIEhKLjSZxdzs7wceINTMJRN2BXPM09BiUmJhkXAF1ZZtDXH6fhlk7oehBZeh37wGiPOqtdKjLeg== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.1" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== - dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" +"@smithy/smithy-client@^3.1.1", "@smithy/smithy-client@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.2.tgz#1c27ab4910bbfd6c0bc04ddd8412494e7a7daba7" + integrity sha512-f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ== + dependencies: + "@smithy/middleware-endpoint" "^3.0.2" + "@smithy/middleware-stack" "^3.0.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/types" "^3.1.0" + "@smithy/util-stream" "^3.0.2" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -1738,20 +1743,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.0.0", "@smithy/types@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.1.0.tgz#e2eb2e2130026a8a0631b2605c17df1975aa99d6" + integrity sha512-qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.0", "@smithy/url-parser@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.1.tgz#5451fc7034e9eda112696d1a9508746a7f8b0521" + integrity sha512-G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -1777,14 +1782,6 @@ dependencies: tslib "^2.6.2" -"@smithy/util-buffer-from@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" - integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== - dependencies: - "@smithy/is-array-buffer" "^2.2.0" - tslib "^2.6.2" - "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -1800,37 +1797,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.3": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.4.tgz#4392db3d96aa08ae161bb987ecfedc094d84b88d" + integrity sha512-sXtin3Mue3A3xo4+XkozpgPptgmRwvNPOqTvb3ANGTCzzoQgAPBNjpE+aXCINaeSMXwHmv7E2oEn2vWdID+SAQ== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.1" + "@smithy/smithy-client" "^3.1.2" + "@smithy/types" "^3.1.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== - dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" +"@smithy/util-defaults-mode-node@^3.0.3": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.4.tgz#794b8bb3facb5f6581af8d02fcf1b42b34c103e5" + integrity sha512-CUF6TyxLh3CgBRVYgZNOPDfzHQjeQr0vyALR6/DkQkOm7rNfGEzW1BRFi88C73pndmfvoiIT7ochuT76OPz9Dw== + dependencies: + "@smithy/config-resolver" "^3.0.2" + "@smithy/credential-provider-imds" "^3.1.1" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/property-provider" "^3.1.1" + "@smithy/smithy-client" "^3.1.2" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.0.1": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.2.tgz#f995cca553569af43bef82f59d63b4969516df95" + integrity sha512-4zFOcBFQvifd2LSD4a1dKvfIWWwh4sWNtS3oZ7mpob/qPPmJseqKB148iT+hWCDsG//TmI+8vjYPgZdvnkYlTg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -1840,31 +1837,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.0", "@smithy/util-middleware@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.1.tgz#3e0eabaf936e62651a0b9a7c7c3bbe43d3971c91" + integrity sha512-WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.0", "@smithy/util-retry@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.1.tgz#24037ff87a314a1ac99f80da43f579ae2352fe18" + integrity sha512-5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.0.1", "@smithy/util-stream@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.2.tgz#ed1377bfe824d8acfc105ab2d17ec4f376382cb2" + integrity sha512-n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.0.2" + "@smithy/node-http-handler" "^3.0.1" + "@smithy/types" "^3.1.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1878,14 +1875,6 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.0.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" - integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== - dependencies: - "@smithy/util-buffer-from" "^2.2.0" - tslib "^2.6.2" - "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -1894,13 +1883,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== +"@smithy/util-waiter@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.1.tgz#62d8ff58374032aa8c7e573b1ca4234407c605bd" + integrity sha512-wwnrVQdjQxvWGOAiLmqlEhENGCcDIN+XJ/+usPOgSZObAslrCXgKlkX7rNVwIWW2RhPguTKthvF+4AoO0Z6KpA== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" "@tootallnate/once@1": @@ -1908,6 +1897,11 @@ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== +"@tootallnate/once@2": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" + integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== + "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": version "7.1.18" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" @@ -1990,10 +1984,10 @@ jest-diff "^27.0.0" pretty-format "^27.0.0" -"@types/jsdom@^21.1.7": - version "21.1.7" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.7.tgz#9edcb09e0b07ce876e7833922d3274149c898cfa" - integrity sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA== +"@types/jsdom@^21.1.6": + version "21.1.6" + resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.6.tgz#bcbc7b245787ea863f3da1ef19aa1dcfb9271a1b" + integrity sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw== dependencies: "@types/node" "*" "@types/tough-cookie" "*" @@ -2058,6 +2052,11 @@ abab@^2.0.3, abab@^2.0.5: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== +abab@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== + acorn-globals@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" @@ -2088,13 +2087,6 @@ agent-base@6: dependencies: debug "4" -agent-base@^7.0.2, agent-base@^7.1.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" - integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== - dependencies: - debug "^4.3.4" - ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" @@ -2426,10 +2418,10 @@ cssstyle@^2.3.0: dependencies: cssom "~0.3.6" -cssstyle@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.0.1.tgz#ef29c598a1e90125c870525490ea4f354db0660a" - integrity sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ== +cssstyle@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-3.0.0.tgz#17ca9c87d26eac764bb8cfd00583cff21ce0277a" + integrity sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== dependencies: rrweb-cssom "^0.6.0" @@ -2442,13 +2434,14 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -data-urls@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-5.0.0.tgz#2f76906bce1824429ffecb6920f45a0b30f00dde" - integrity sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg== +data-urls@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" + integrity sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== dependencies: - whatwg-mimetype "^4.0.0" - whatwg-url "^14.0.0" + abab "^2.0.6" + whatwg-mimetype "^3.0.0" + whatwg-url "^12.0.0" debug@4, debug@^4.1.0, debug@^4.1.1: version "4.3.3" @@ -2457,13 +2450,6 @@ debug@4, debug@^4.1.0, debug@^4.1.1: dependencies: ms "2.1.2" -debug@^4.3.4: - version "4.3.5" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" - integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== - dependencies: - ms "2.1.2" - decimal.js@^10.2.1: version "10.3.1" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" @@ -2523,6 +2509,13 @@ domexception@^2.0.1: dependencies: webidl-conversions "^5.0.0" +domexception@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" + integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== + dependencies: + webidl-conversions "^7.0.0" + dompurify@^3.1.4: version "3.1.5" resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.5.tgz#2c6a113fc728682a0f55684b1388c58ddb79dc38" @@ -2641,10 +2634,10 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fast-xml-parser@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" - integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== +fast-xml-parser@4.2.5: + version "4.2.5" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" + integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== dependencies: strnum "^1.0.5" @@ -2806,12 +2799,12 @@ html-encoding-sniffer@^2.0.1: dependencies: whatwg-encoding "^1.0.5" -html-encoding-sniffer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz#696df529a7cfd82446369dc5193e590a3735b448" - integrity sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ== +html-encoding-sniffer@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" + integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== dependencies: - whatwg-encoding "^3.1.1" + whatwg-encoding "^2.0.0" html-escaper@^2.0.0: version "2.0.2" @@ -2827,13 +2820,14 @@ http-proxy-agent@^4.0.1: agent-base "6" debug "4" -http-proxy-agent@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" - integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== +http-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" + integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: - agent-base "^7.1.0" - debug "^4.3.4" + "@tootallnate/once" "2" + agent-base "6" + debug "4" https-proxy-agent@^5.0.0: version "5.0.0" @@ -2843,12 +2837,12 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^7.0.4: - version "7.0.5" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" - integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== +https-proxy-agent@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: - agent-base "^7.0.2" + agent-base "6" debug "4" human-signals@^2.1.0: @@ -3452,32 +3446,34 @@ jsdom@^16.6.0: ws "^7.4.6" xml-name-validator "^3.0.0" -jsdom@^24.1.0: - version "24.1.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-24.1.0.tgz#0cffdabd42c506788bfecd160e8ac22d4387f971" - integrity sha512-6gpM7pRXCwIOKxX47cgOyvyQDN/Eh0f1MeKySBV2xGdKtqJBLj8P25eY3EVCWo2mglDDzozR2r2MW4T+JiNUZA== +jsdom@^22.1.0: + version "22.1.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" + integrity sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== dependencies: - cssstyle "^4.0.1" - data-urls "^5.0.0" + abab "^2.0.6" + cssstyle "^3.0.0" + data-urls "^4.0.0" decimal.js "^10.4.3" + domexception "^4.0.0" form-data "^4.0.0" - html-encoding-sniffer "^4.0.0" - http-proxy-agent "^7.0.2" - https-proxy-agent "^7.0.4" + html-encoding-sniffer "^3.0.0" + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.1" is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.10" + nwsapi "^2.2.4" parse5 "^7.1.2" - rrweb-cssom "^0.7.0" + rrweb-cssom "^0.6.0" saxes "^6.0.0" symbol-tree "^3.2.4" - tough-cookie "^4.1.4" - w3c-xmlserializer "^5.0.0" + tough-cookie "^4.1.2" + w3c-xmlserializer "^4.0.0" webidl-conversions "^7.0.0" - whatwg-encoding "^3.1.1" - whatwg-mimetype "^4.0.0" - whatwg-url "^14.0.0" - ws "^8.17.0" - xml-name-validator "^5.0.0" + whatwg-encoding "^2.0.0" + whatwg-mimetype "^3.0.0" + whatwg-url "^12.0.1" + ws "^8.13.0" + xml-name-validator "^4.0.0" jsesc@^2.5.1: version "2.5.2" @@ -3679,10 +3675,10 @@ nwsapi@^2.2.0: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== -nwsapi@^2.2.10: - version "2.2.12" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8" - integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w== +nwsapi@^2.2.4: + version "2.2.7" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" + integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== obliterator@^1.6.1: version "1.6.1" @@ -3832,7 +3828,7 @@ punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -punycode@^2.3.1: +punycode@^2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -3905,11 +3901,6 @@ rrweb-cssom@^0.6.0: resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz#ed298055b97cbddcdeb278f904857629dec5e0e1" integrity sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== -rrweb-cssom@^0.7.0: - version "0.7.1" - resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz#c73451a484b86dd7cfb1e0b2898df4b703183e4b" - integrity sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg== - run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -4160,7 +4151,7 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tough-cookie@^4.0.0: +tough-cookie@^4.0.0, tough-cookie@^4.1.2: version "4.1.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== @@ -4170,16 +4161,6 @@ tough-cookie@^4.0.0: universalify "^0.2.0" url-parse "^1.5.3" -tough-cookie@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" - integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.2.0" - url-parse "^1.5.3" - tr46@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" @@ -4187,12 +4168,12 @@ tr46@^2.1.0: dependencies: punycode "^2.1.1" -tr46@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-5.0.0.tgz#3b46d583613ec7283020d79019f1335723801cec" - integrity sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g== +tr46@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" + integrity sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== dependencies: - punycode "^2.3.1" + punycode "^2.3.0" ts-jest@^27.1.3: version "27.1.3" @@ -4208,7 +4189,12 @@ ts-jest@^27.1.3: semver "7.x" yargs-parser "20.x" -tslib@^2.1.0, tslib@^2.5.0, tslib@^2.6.2: +tslib@^1.11.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.1.0, tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== @@ -4293,12 +4279,12 @@ w3c-xmlserializer@^2.0.0: dependencies: xml-name-validator "^3.0.0" -w3c-xmlserializer@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz#f925ba26855158594d907313cedd1476c5967f6c" - integrity sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA== +w3c-xmlserializer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" + integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== dependencies: - xml-name-validator "^5.0.0" + xml-name-validator "^4.0.0" walker@^1.0.7: version "1.0.8" @@ -4329,10 +4315,10 @@ whatwg-encoding@^1.0.5: dependencies: iconv-lite "0.4.24" -whatwg-encoding@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" - integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== +whatwg-encoding@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" + integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== dependencies: iconv-lite "0.6.3" @@ -4341,17 +4327,17 @@ whatwg-mimetype@^2.3.0: resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== -whatwg-mimetype@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" - integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== +whatwg-mimetype@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" + integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== -whatwg-url@^14.0.0: - version "14.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-14.0.0.tgz#00baaa7fd198744910c4b1ef68378f2200e4ceb6" - integrity sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw== +whatwg-url@^12.0.0, whatwg-url@^12.0.1: + version "12.0.1" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" + integrity sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== dependencies: - tr46 "^5.0.0" + tr46 "^4.1.1" webidl-conversions "^7.0.0" whatwg-url@^8.0.0, whatwg-url@^8.5.0: @@ -4399,20 +4385,25 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -ws@^7.4.6, ws@^8.17.0, ws@^8.18.0: - version "8.18.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" - integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== +ws@^7.4.6: + version "7.5.6" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" + integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== + +ws@^8.13.0: + version "8.16.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" + integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== -xml-name-validator@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-5.0.0.tgz#82be9b957f7afdacf961e5980f1bf227c0bf7673" - integrity sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg== +xml-name-validator@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" + integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== xmlchars@^2.2.0: version "2.2.0" diff --git a/services/carts-bigmac-streams/handlers/configureConnectors.js b/services/carts-bigmac-streams/handlers/configureConnectors.js new file mode 100644 index 000000000..538e6faef --- /dev/null +++ b/services/carts-bigmac-streams/handlers/configureConnectors.js @@ -0,0 +1,102 @@ +/* eslint-disable no-console */ +var { + ECSClient, + ListTasksCommand, + DescribeTasksCommand, +} = require("@aws-sdk/client-ecs"); +var lodash = require("lodash"); +var http = require("http"); + +const connectors = [ + { + name: `${process.env.connectorPrefix}sink.lambda.enrollmentcounts`, + config: { + "tasks.max": "1", + "connector.class": + "com.nordstrom.kafka.connect.lambda.LambdaSinkConnector", + topics: process.env.sinkTopics, + "key.converter": "org.apache.kafka.connect.storage.StringConverter", + "value.converter": "org.apache.kafka.connect.storage.StringConverter", + "aws.region": process.env.sinkFunctionRegion, + "aws.lambda.function.arn": process.env.sinkFunctionArn, + "aws.lambda.batch.enabled": "false", + "aws.credentials.provider.class": + " com.amazonaws.auth.DefaultAWSCredentialsProviderChain", + }, + }, +]; + +// eslint-disable-next-line no-unused-vars +function myHandler(event, context, callback) { + console.log("Received event:", JSON.stringify(event, null, 2)); + var ecsClient = new ECSClient(); + var listParams = { + cluster: process.env.cluster, + }; + ecsClient + .send(new ListTasksCommand(listParams)) + .then(function (taskArnsResult) { + var describeParams = { + cluster: process.env.cluster, + tasks: taskArnsResult.taskArns, + }; + return ecsClient.send(new DescribeTasksCommand(describeParams)); + }) + .then(function (describeResult) { + describeResult.tasks.forEach((task) => { + var ip = lodash.filter( + task.attachments[0].details, + (x) => x.name === "privateIPv4Address" + )[0].value; + console.log(`Configuring connector on worker: ${ip}`); + connectors.forEach(function (config) { + //console.log(`Configuring connector with config: ${JSON.stringify(config, null, 2)}`); + putConnectorConfig(ip, config, function (res) { + console.log(res); + }); + }); + }); + }) + .catch(function (err) { + console.log(err, err.stack); + }); +} + +function putConnectorConfig(workerIp, config, callback) { + var retry = function (e) { + console.log("Got error: " + e); + setTimeout(function () { + putConnectorConfig(workerIp, config, callback); + }, 5000); + }; + + var options = { + hostname: workerIp, + port: 8083, + path: `/connectors/${config.name}/config`, + method: "PUT", + headers: { + "Content-Type": "application/json", + }, + }; + + const req = http + .request(options, (res) => { + console.log(`statusCode: ${res.statusCode}`); + if (res.statusCode == "404") { + retry.call(`${res.statusCode}`); + } + res.on("data", (d) => { + console.log(d.toString("utf-8")); + }); + }) + .on("error", retry); + // eslint-disable-next-line no-unused-vars + req.setTimeout(5000, function (thing) { + this.socket.destroy(); + }); + req.write(JSON.stringify(config.config)); + req.end(); +} + +exports.handler = myHandler; diff --git a/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js b/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js index d5bb4500b..77bb7ad93 100644 --- a/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js +++ b/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js @@ -14,55 +14,47 @@ const { * @param {*} _callback */ async function myHandler(event, _context, _callback) { - const sedsTopicKey = `${process.env.sedsTopic}-0`; - if (!event?.records?.[sedsTopicKey]) { - return; - } - const records = event.records[sedsTopicKey]; + const json = JSON.parse(event.value); const currentYear = getReportingYear(); const dynamoClient = buildClient(); - for (const record of records) { - const decodedValue = atob(record.value); - const value = JSON.parse(decodedValue); - if ( - value.NewImage.enrollmentCounts && - value.NewImage.enrollmentCounts.year >= currentYear - 1 && - value.NewImage.quarter === 4 - ) { - try { - // eslint-disable-next-line no-console - console.log("Sink message received", value); - const indexToUpdate = - value.NewImage.enrollmentCounts.year === currentYear ? 2 : 1; - let typeOfEnrollment = "Medicaid Expansion CHIP"; - let typeKey = "medicaid_exp_chip"; - if (value.NewImage.enrollmentCounts.type === "separate") { - typeOfEnrollment = "Separate CHIP"; - typeKey = "separate_chip"; - } - const stateId = value.NewImage.state_id; - const createdTime = new Date().toLocaleString(); + if ( + json.NewImage.enrollmentCounts && + json.NewImage.enrollmentCounts.year >= currentYear - 1 && + json.NewImage.quarter === 4 + ) { + try { + // eslint-disable-next-line no-console + console.log("Sink message received", json); + const indexToUpdate = + json.NewImage.enrollmentCounts.year === currentYear ? 2 : 1; + let typeOfEnrollment = "Medicaid Expansion CHIP"; + let typeKey = "medicaid_exp_chip"; + if (json.NewImage.enrollmentCounts.type === "separate") { + typeOfEnrollment = "Separate CHIP"; + typeKey = "separate_chip"; + } + const stateId = json.NewImage.state_id; + const createdTime = new Date().toLocaleString(); - const pk = `${stateId}-${currentYear}`; - const entryKey = `${typeKey}-${indexToUpdate}`; + const pk = `${stateId}-${currentYear}`; + const entryKey = `${typeKey}-${indexToUpdate}`; - const enrollmentEntry = { - filterId: `${currentYear}-02`, - typeOfEnrollment, - indexToUpdate, - stateId, - yearToModify: currentYear, - enrollmentCount: value.NewImage.enrollmentCounts.count, - createdTime, - lastSynced: value.NewImage.lastSynced ?? "", - }; + const enrollmentEntry = { + filterId: `${currentYear}-02`, + typeOfEnrollment, + indexToUpdate, + stateId, + yearToModify: currentYear, + enrollmentCount: json.NewImage.enrollmentCounts.count, + createdTime, + lastSynced: json.NewImage.lastSynced, + }; - await updateEnrollment(pk, entryKey, enrollmentEntry, dynamoClient); - } catch (error) { - // eslint-disable-next-line no-console - console.log(error); - } + await updateEnrollment(pk, entryKey, enrollmentEntry, dynamoClient); + } catch (error) { + // eslint-disable-next-line no-console + console.log(error); } } } diff --git a/services/carts-bigmac-streams/package.json b/services/carts-bigmac-streams/package.json index c31df29f2..4e3566a8e 100644 --- a/services/carts-bigmac-streams/package.json +++ b/services/carts-bigmac-streams/package.json @@ -3,9 +3,13 @@ "version": "1.0.0", "description": "", "dependencies": { - "@aws-sdk/client-dynamodb": "^3.621.0", - "@aws-sdk/lib-dynamodb": "^3.621.0", - "@aws-sdk/util-dynamodb": "^3.621.0", - "kafkajs": "^1.15.0" - } + "@aws-sdk/client-dynamodb": "^3.596.0", + "@aws-sdk/client-ecs": "^3.596.0", + "@aws-sdk/lib-dynamodb": "^3.596.0", + "@aws-sdk/util-dynamodb": "^3.596.0", + "kafkajs": "^1.15.0", + "lodash": "^4.17.21", + "uuid": "^8.3.2" + }, + "devDependencies": {} } diff --git a/services/carts-bigmac-streams/serverless.yml b/services/carts-bigmac-streams/serverless.yml index 2fb4525ea..2738c7ed2 100644 --- a/services/carts-bigmac-streams/serverless.yml +++ b/services/carts-bigmac-streams/serverless.yml @@ -8,6 +8,7 @@ package: plugins: - serverless-bundle - serverless-dotenv-plugin + - serverless-plugin-scripts - serverless-online - serverless-iam-helper - serverless-s3-bucket-helper @@ -18,26 +19,28 @@ custom: stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} serverlessTerminationProtection: - stages: - - main + stages: # This is a list of common names for important envs that should not be destroyed. You can remove the stage names your project doesn't use; this list is meant to be inclusive. + - master - val - production - bootstrapBroker1: ${ssm:/configuration/default/bigmac/bootstrapBroker1} - bootstrapBroker2: ${ssm:/configuration/default/bigmac/bootstrapBroker2} - bootstrapBroker3: ${ssm:/configuration/default/bigmac/bootstrapBroker3} + - develop + - main + - impl + - prod + kafkaConnectImage: ${ssm:/configuration/${self:custom.stage}/kafka_connect_image, ssm:/configuration/default/kafka_connect_image,"confluentinc/cp-kafka-connect:6.2.0"} bootstrapBrokerStringTls: ${ssm:/configuration/${self:custom.stage}/bigmac/bootstrapBrokerStringTls, ssm:/configuration/default/bigmac/bootstrapBrokerStringTls} vpcId: ${ssm:/configuration/${self:custom.stage}/vpc/id, ssm:/configuration/default/vpc/id} - privateSubnetA: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/a/id, ssm:/configuration/default/vpc/subnets/private/a/id} - privateSubnetB: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/b/id, ssm:/configuration/default/vpc/subnets/private/b/id} - privateSubnetC: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/c/id, ssm:/configuration/default/vpc/subnets/private/c/id} privateSubnets: - - ${self:custom.privateSubnetA} - - ${self:custom.privateSubnetB} - - ${self:custom.privateSubnetC} + - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/a/id, ssm:/configuration/default/vpc/subnets/private/a/id} + - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/b/id, ssm:/configuration/default/vpc/subnets/private/b/id} + - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/c/id, ssm:/configuration/default/vpc/subnets/private/c/id} stageEnrollmentCountsTableName: ${env:stageEnrollmentCountsTableName, cf:database-${self:custom.stage}.StageEnrollmentCountsTableName} stateStatusTableStreamArn: ${env:stateStatusTableStreamArn, cf:database-${self:custom.stage}.StateStatusTableStreamArn} sectionTableStreamArn: ${env:sectionTableStreamArn, cf:database-${self:custom.stage}.SectionTableStreamArn} - sedsTopic: "aws.mdct.seds.cdc.state-forms.v0" + scripts: + hooks: + deploy:finalize: | + aws lambda invoke --region ${self:provider.region} --function-name ${self:service}-${self:custom.stage}-configureConnectors --invocation-type RequestResponse /dev/null provider: name: aws @@ -51,22 +54,15 @@ provider: path: ${ssm:/configuration/${self:custom.stage}/iam/path, ssm:/configuration/default/iam/path, "/"} permissionsBoundary: ${ssm:/configuration/${self:custom.stage}/iam/permissionsBoundaryPolicy, ssm:/configuration/default/iam/permissionsBoundaryPolicy, ""} statements: - - Effect: "Allow" - Action: - - logs:CreateLogGroup - - logs:CreateLogStream - - logs:PutLogEvents - Resource: "arn:aws:logs:*:*:*" - - Effect: "Allow" - Action: - - "ec2:DescribeNetworkInterfaces" - - "ec2:DescribeSecurityGroups" - - "ec2:DescribeVpcs" - Resource: "*" - Effect: "Allow" Action: - dynamodb:DescribeTable + - dynamodb:Query + - dynamodb:Scan + - dynamodb:GetItem + - dynamodb:PutItem - dynamodb:UpdateItem + - dynamodb:DeleteItem Resource: "*" - Effect: "Allow" Action: @@ -80,11 +76,30 @@ provider: - ${self:custom.sectionTableStreamArn} functions: + configureConnectors: + handler: handlers/configureConnectors.handler + role: LambdaConfigureConnectorsRole + environment: + cluster: !Ref KafkaConnectCluster + connectorPrefix: carts-${self:custom.stage}- + sinkTopics: aws.mdct.seds.cdc.state-forms.v0 + sinkFunctionArn: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn + sinkFunctionRegion: ${self:custom.region} + BOOTSTRAP_BROKER_STRING_TLS: ${self:custom.bootstrapBrokerStringTls} + STAGE: ${self:custom.stage} + maximumRetryAttempts: 2 + timeout: 120 + vpc: + securityGroupIds: + - Ref: LambdaConfigureConnectorsSecurityGroup + subnetIds: ${self:custom.privateSubnets} sinkEnrollmentCounts: handler: handlers/sinkEnrollmentCounts.handler + role: SinkEnrollmentCountsRole environment: + BOOTSTRAP_BROKER_STRING_TLS: ${self:custom.bootstrapBrokerStringTls} + STAGE: ${self:custom.stage} stageEnrollmentCountsTableName: ${self:custom.stageEnrollmentCountsTableName} - sedsTopic: ${self:custom.sedsTopic} maximumRetryAttempts: 2 timeout: 120 vpc: @@ -124,40 +139,251 @@ resources: - "" - ${self:provider.iam.role.permissionsBoundary} Resources: - LambdaConfigureConnectorsSecurityGroup: + KafkaConnectWorkerLogGroup: + Type: "AWS::Logs::LogGroup" + Properties: + LogGroupName: /aws/fargate/${self:service}-${self:custom.stage}-kafka-connect + KafkaConnectWorkerSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: - GroupDescription: Security Group for configuring the connector. + GroupDescription: Security Group for the Fargate Connect Workers. VpcId: ${self:custom.vpcId} - LambdaSecurityGroupIngressCluster: + KafkaConnectWorkerSecurityGroupIngressLambda: Type: AWS::EC2::SecurityGroupIngress Properties: - GroupId: !Sub "${LambdaConfigureConnectorsSecurityGroup}" + GroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" IpProtocol: tcp FromPort: 8083 ToPort: 8083 SourceSecurityGroupId: !Sub "${LambdaConfigureConnectorsSecurityGroup}" - SinkEnrollmentCountsEventSourceMappingKafka: - Type: AWS::Lambda::EventSourceMapping + KafkaConnectWorkerSecurityGroupIngressCluster: + Type: AWS::EC2::SecurityGroupIngress + Properties: + GroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" + IpProtocol: tcp + FromPort: 8083 + ToPort: 8083 + SourceSecurityGroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" + KafkaConnectWorkerRole: + Type: "AWS::IAM::Role" + Properties: + AssumeRolePolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: "Allow" + Principal: + Service: + - "ecs.amazonaws.com" + - "ecs-tasks.amazonaws.com" + Action: "sts:AssumeRole" + Path: ${self:provider.iam.role.path} + PermissionsBoundary: + Fn::If: + - CreatePermissionsBoundary + - ${self:provider.iam.role.permissionsBoundary} + - !Ref AWS::NoValue + ManagedPolicyArns: + - arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy + Policies: + - PolicyName: "LambdaRolePolicy" + PolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: "Allow" + Action: + - "lambda:*" + Resource: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn + KafkaConnectWorkerTaskDefinition: + Type: "AWS::ECS::TaskDefinition" + Properties: + ContainerDefinitions: + - Name: ${self:service}-${self:custom.stage}-worker + Image: ${self:custom.kafkaConnectImage} + Memory: 4096 + Cpu: 2048 + Command: + - bash + - "-c" + - | + export CONNECT_REST_HOST_NAME=`curl $ECS_CONTAINER_METADATA_URI_V4 | sed -e 's/.*IPv4Addresses":\["\(.*\)"\],"AttachmentIndex.*/\1/'` && + export CONNECT_REST_ADVERTISED_HOST_NAME=$CONNECT_REST_HOST_NAME && + curl -k -SL -o /etc/kafka-connect/jars/postgresql-42.2.18.jar "https://jdbc.postgresql.org/download/postgresql-42.2.18.jar" && + chmod +x /etc/kafka-connect/jars/postgresql-42.2.18.jar && + curl -k -SL -o /etc/kafka-connect/jars/kafka-connect-lambda-1.2.2.jar "https://github.com/Nordstrom/kafka-connect-lambda/releases/download/v1.2.2/kafka-connect-lambda-1.2.2.jar" && + chmod +x /etc/kafka-connect/jaras/kafka-connect-lambda-1.2.2.jar + curl -k -SL -o /etc/kafka-connect/jars/kafka-connect-jdbc-10.2.0.jar "https://packages.confluent.io/maven/io/confluent/kafka-connect-jdbc/10.2.0/kafka-connect-jdbc-10.2.0.jar" && + chmod +x /etc/kafka-connect/jars/kafka-connect-jdbc-10.2.0.jar && + /etc/confluent/docker/run + Environment: + - Name: CONNECT_BOOTSTRAP_SERVERS + Value: >- + ${self:custom.bootstrapBrokerStringTls} + - Name: CONNECT_GROUP_ID + Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage} + - Name: CONNECT_CONFIG_STORAGE_TOPIC + Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.config + - Name: CONNECT_OFFSET_STORAGE_TOPIC + Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.offsets + - Name: CONNECT_STATUS_STORAGE_TOPIC + Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.status + - Name: CONNECT_OFFSET_STORAGE_PARTITIONS + Value: 5 + - Name: CONNECT_STATUS_STORAGE_PARTITIONS + Value: 1 + - Name: CONNECT_KEY_CONVERTER + Value: org.apache.kafka.connect.json.JsonConverter + - Name: CONNECT_VALUE_CONVERTER + Value: org.apache.kafka.connect.json.JsonConverter + - Name: CONNECT_INTERNAL_KEY_CONVERTER + Value: org.apache.kafka.connect.json.JsonConverter + - Name: CONNECT_INTERNAL_VALUE_CONVERTER + Value: org.apache.kafka.connect.json.JsonConverter + - Name: CONNECT_PLUGIN_PATH + Value: /usr/share/java,/etc/kafka-connect/jars + - Name: CONNECT_SECURITY_PROTOCOL + Value: SSL + # Producer/Consumer configs below + # Thank you to https://github.com/confluentinc/kafka-connect-jdbc/issues/161 + - Name: CONNECT_PRODUCER_BOOTSTRAP_SERVERS + Value: >- + ${self:custom.bootstrapBrokerStringTls} + - Name: CONNECT_PRODUCER_SECURITY_PROTOCOL + Value: SSL + - Name: CONNECT_CONSUMER_BOOTSTRAP_SERVERS + Value: >- + ${self:custom.bootstrapBrokerStringTls} + - Name: CONNECT_CONSUMER_SECURITY_PROTOCOL + Value: SSL + LogConfiguration: + LogDriver: awslogs + Options: + awslogs-region: !Sub "${AWS::Region}" + awslogs-group: !Sub "${KafkaConnectWorkerLogGroup}" + awslogs-stream-prefix: fargate + Family: ${self:service}-${self:custom.stage}-kafka-connect-worker + NetworkMode: awsvpc + ExecutionRoleArn: !GetAtt KafkaConnectWorkerRole.Arn + TaskRoleArn: !GetAtt KafkaConnectWorkerRole.Arn + RequiresCompatibilities: + - FARGATE + Memory: 4GB + Cpu: 2048 + KafkaConnectCluster: + Type: "AWS::ECS::Cluster" + KafkaConnectService: + Type: "AWS::ECS::Service" Properties: - FunctionName: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn - SelfManagedEventSource: - Endpoints: - KafkaBootstrapServers: - - ${self:custom.bootstrapBroker1} - - ${self:custom.bootstrapBroker2} - - ${self:custom.bootstrapBroker3} - SelfManagedKafkaEventSourceConfig: - ConsumerGroupId: ${self:custom.project}-${self:custom.stage} - Topics: - - ${self:custom.sedsTopic} - SourceAccessConfigurations: - - Type: "VPC_SUBNET" - URI: subnet:${self:custom.privateSubnetA} - - Type: "VPC_SUBNET" - URI: subnet:${self:custom.privateSubnetB} - - Type: "VPC_SUBNET" - URI: subnet:${self:custom.privateSubnetC} - - Type: "VPC_SECURITY_GROUP" - URI: !Sub security_group:${LambdaConfigureConnectorsSecurityGroup} - MaximumBatchingWindowInSeconds: 30 + Cluster: !Sub "${KafkaConnectCluster}" + DeploymentConfiguration: + MaximumPercent: 100 + MinimumHealthyPercent: 0 + LaunchType: FARGATE + ServiceName: kafka-connect + DesiredCount: 1 + TaskDefinition: !Sub "${KafkaConnectWorkerTaskDefinition}" + NetworkConfiguration: + AwsvpcConfiguration: + AssignPublicIp: DISABLED + SecurityGroups: + - !Sub "${KafkaConnectWorkerSecurityGroup}" + Subnets: ${self:custom.privateSubnets} + LambdaConfigureConnectorsSecurityGroup: + Type: AWS::EC2::SecurityGroup + Properties: + GroupDescription: Security Group for configuring the connector. + VpcId: ${self:custom.vpcId} + SinkEnrollmentCountsRole: + Type: "AWS::IAM::Role" + Properties: + AssumeRolePolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: "Allow" + Principal: + Service: "lambda.amazonaws.com" + Action: "sts:AssumeRole" + Path: ${self:provider.iam.role.path} + PermissionsBoundary: + Fn::If: + - CreatePermissionsBoundary + - ${self:provider.iam.role.permissionsBoundary} + - !Ref AWS::NoValue + ManagedPolicyArns: + - !Sub arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole + Policies: + - PolicyName: "LambdaRolePolicy" + PolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: "Allow" + Action: + - logs:CreateLogGroup + - logs:CreateLogStream + - logs:PutLogEvents + Resource: "arn:aws:logs:*:*:*" + - Effect: "Allow" + Action: + - "ec2:CreateNetworkInterface" + - "ec2:DescribeNetworkInterfaces" + - "ec2:DetachNetworkInterface" + - "ec2:DeleteNetworkInterface" + - "ec2:DescribeSecurityGroups" + Resource: "*" + - Effect: "Allow" + Action: + - dynamodb:DescribeTable + - dynamodb:Query + - dynamodb:Scan + - dynamodb:GetItem + - dynamodb:PutItem + - dynamodb:UpdateItem + - dynamodb:DeleteItem + Resource: "*" + LambdaConfigureConnectorsRole: + Type: "AWS::IAM::Role" + Properties: + AssumeRolePolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: "Allow" + Principal: + Service: "lambda.amazonaws.com" + Action: "sts:AssumeRole" + Path: ${self:provider.iam.role.path} + PermissionsBoundary: + Fn::If: + - CreatePermissionsBoundary + - ${self:provider.iam.role.permissionsBoundary} + - !Ref AWS::NoValue + Policies: + - PolicyName: "LambdaRolePolicy" + PolicyDocument: + Version: "2012-10-17" + Statement: + - Effect: "Allow" + Action: + - logs:CreateLogGroup + - logs:CreateLogStream + - logs:PutLogEvents + Resource: "arn:aws:logs:*:*:*" + - Effect: "Allow" + Action: + - ec2:CreateNetworkInterface + - ec2:DeleteNetworkInterface + - ec2:DetachNetworkInterface + - ec2:DescribeNetworkInterfaces + - ec2:DescribeSecurityGroups + - ec2:DescribeSubnets + - ec2:DescribeVpcs + Resource: "*" + - Effect: "Allow" + Action: + - ecs:ListTasks + - ecs:DescribeTasks + Resource: "*" + Outputs: + KafkaConnectWorkerSecurityGroupId: + Description: | + The ID of the security group attached to the Kafka Connect cluster tasks. + This can be used by other resources to attach additional ingress rules. + Value: !Ref KafkaConnectWorkerSecurityGroup diff --git a/services/carts-bigmac-streams/yarn.lock b/services/carts-bigmac-streams/yarn.lock index 9d243ee50..691fd69b8 100644 --- a/services/carts-bigmac-streams/yarn.lock +++ b/services/carts-bigmac-streams/yarn.lock @@ -2,336 +2,392 @@ # yarn lockfile v1 -"@aws-crypto/sha256-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" - integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== - dependencies: - "@aws-crypto/sha256-js" "^5.2.0" - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" +"@aws-crypto/ie11-detection@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" + integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== + dependencies: + tslib "^1.11.1" + +"@aws-crypto/sha256-browser@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" + integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== + dependencies: + "@aws-crypto/ie11-detection" "^3.0.0" + "@aws-crypto/sha256-js" "^3.0.0" + "@aws-crypto/supports-web-crypto" "^3.0.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" -"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" - integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== +"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" + integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== dependencies: - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/supports-web-crypto@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" - integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== +"@aws-crypto/supports-web-crypto@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" + integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== dependencies: - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/util@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" - integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== +"@aws-crypto/util@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" + integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== dependencies: "@aws-sdk/types" "^3.222.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" - integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-endpoint-discovery" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" + +"@aws-sdk/client-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" + integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-endpoint-discovery" "3.587.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-ecs@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecs/-/client-ecs-3.596.0.tgz#9207f5a5b9446309d10c97e32f67e0f6f55844a4" + integrity sha512-iSEjqyViOionESw5IWSWs+WnWq0lumOTlnduNrYZ6yjid2EFj0r4epLRQ3/mpgwu4G1EB1PFVdmnivDroT9QRw== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" + uuid "^9.0.1" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso-oidc@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" + integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" + integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== - dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - fast-xml-parser "4.4.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== - dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" +"@aws-sdk/client-sts@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" + integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/core@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" + integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== + dependencies: + "@smithy/core" "^2.2.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + fast-xml-parser "4.2.5" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-env@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" + integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" + integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-ini@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" + integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-node@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" + integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== + dependencies: + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-ini" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-process@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" + integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" + integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== + dependencies: + "@aws-sdk/client-sso" "3.592.0" + "@aws-sdk/token-providers" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-web-identity@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" + integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -342,97 +398,97 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" - integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== +"@aws-sdk/lib-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" + integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== dependencies: - "@aws-sdk/util-dynamodb" "3.621.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@aws-sdk/util-dynamodb" "3.596.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" - integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== +"@aws-sdk/middleware-endpoint-discovery@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" + integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" + integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" + integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== +"@aws-sdk/middleware-recursion-detection@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" + integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" + integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" + integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" + integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" + integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -443,21 +499,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.621.0", "@aws-sdk/util-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" - integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== +"@aws-sdk/util-dynamodb@3.596.0", "@aws-sdk/util-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" + integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" + integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" + "@smithy/util-endpoints" "^2.0.1" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -467,104 +523,104 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" + integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" + integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@aws-sdk/util-utf8-browser@^3.0.0": + version "3.259.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" + integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== dependencies: - "@smithy/types" "^3.3.0" + tslib "^2.3.1" + +"@smithy/abort-controller@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" + integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== + dependencies: + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" + integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== +"@smithy/core@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.0.tgz#f1b0837b7afa5507a9693c1e93da6ca9808022c1" + integrity sha512-ygLZSSKgt9bR8HAxR9mK+U5obvAJBr6zlQuhN5soYWx/amjDoQN4dTkydTypgKe6rIbUjTILyLU+W5XFwXr4kg== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" + integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" + integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" + integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@smithy/is-array-buffer@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" - integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== +"@smithy/invalid-dependency@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" + integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== dependencies: + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/is-array-buffer@^3.0.0": @@ -574,152 +630,151 @@ dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== +"@smithy/middleware-content-length@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" + integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== - dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" +"@smithy/middleware-endpoint@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" + integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== + dependencies: + "@smithy/middleware-serde" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.3": +"@smithy/middleware-retry@^3.0.3": version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" + integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/service-error-classification" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" tslib "^2.6.2" + uuid "^9.0.1" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-serde@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" + integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== + dependencies: + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/middleware-stack@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" + integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" + integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" + integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" + integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" + integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" + integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" + integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" + integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" + integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" + integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" + integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -729,20 +784,20 @@ dependencies: tslib "^2.6.2" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" + integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" + integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -768,14 +823,6 @@ dependencies: tslib "^2.6.2" -"@smithy/util-buffer-from@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" - integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== - dependencies: - "@smithy/is-array-buffer" "^2.2.0" - tslib "^2.6.2" - "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -791,37 +838,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" + integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== +"@smithy/util-defaults-mode-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" + integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" + integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -831,31 +878,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" + integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" + integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" + integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -869,14 +916,6 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.0.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" - integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== - dependencies: - "@smithy/util-buffer-from" "^2.2.0" - tslib "^2.6.2" - "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -885,13 +924,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== +"@smithy/util-waiter@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.0.tgz#26bcc5bbbf1de9360a7aeb3b3919926fc6afa2bc" + integrity sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" bowser@^2.11.0: @@ -899,10 +938,10 @@ bowser@^2.11.0: resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== -fast-xml-parser@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" - integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== +fast-xml-parser@4.2.5: + version "4.2.5" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" + integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== dependencies: strnum "^1.0.5" @@ -911,6 +950,11 @@ kafkajs@^1.15.0: resolved "https://registry.yarnpkg.com/kafkajs/-/kafkajs-1.15.0.tgz#a5ada0d933edca2149177393562be6fb0875ec3a" integrity sha512-yjPyEnQCkPxAuQLIJnY5dI+xnmmgXmhuOQ1GVxClG5KTOV/rJcW1qA3UfvyEJKTp/RTSqQnUR3HJsKFvHyTpNg== +lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + mnemonist@0.38.3: version "0.38.3" resolved "https://registry.yarnpkg.com/mnemonist/-/mnemonist-0.38.3.tgz#35ec79c1c1f4357cfda2fe264659c2775ccd7d9d" @@ -928,11 +972,21 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -tslib@^2.6.2: +tslib@^1.11.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.3.1, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + uuid@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index c0a87b848..ec098c54d 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -75,32 +75,42 @@ "id": "2023-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-06", "type": "email", "label": "Email:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-07", "hint": "Include city, state, and zip code.", "type": "mailing_address", "label": "Full mailing address:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -149,8 +159,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -158,7 +174,9 @@ "id": "2023-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -182,8 +200,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -197,8 +221,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -235,7 +265,9 @@ "id": "2023-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -275,8 +307,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -314,7 +352,9 @@ "id": "2023-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -335,7 +375,9 @@ "id": "2023-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-01-05", @@ -345,12 +387,18 @@ "answer": { "entry": null, "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { "label": "Fee-for-Service", "value": "ffs" } + { + "label": "Fee-for-Service", + "value": "ffs" + } ] } }, @@ -358,7 +406,9 @@ "id": "2023-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -381,8 +431,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -390,7 +446,9 @@ "id": "2023-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -414,8 +472,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -429,8 +493,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -467,7 +537,9 @@ "id": "2023-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -507,8 +579,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -546,7 +624,9 @@ "id": "2023-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -567,7 +647,9 @@ "id": "2023-01-a-02-04", "type": "text_multiline", "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-02-05", @@ -577,12 +659,18 @@ "answer": { "entry": null, "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { "label": "Fee-for-Service", "value": "ffs" } + { + "label": "Fee-for-Service", + "value": "ffs" + } ] } }, @@ -590,7 +678,9 @@ "id": "2023-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -611,8 +701,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -626,8 +722,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -642,8 +744,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -658,8 +766,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -673,8 +787,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -689,11 +809,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2023-01-a-03-07", @@ -703,11 +831,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2023-01-a-03-08", @@ -717,11 +853,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2023-01-a-03-09", @@ -731,8 +875,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -746,8 +896,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -762,8 +918,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -778,11 +940,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2023-01-a-03-13", @@ -791,8 +961,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -806,8 +982,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -821,8 +1003,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -836,11 +1024,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -849,7 +1045,9 @@ "id": "2023-01-a-03-17", "type": "text_multiline", "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-03-18", @@ -858,8 +1056,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -918,8 +1122,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -933,8 +1143,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -949,8 +1165,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -965,8 +1187,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -980,8 +1208,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -996,11 +1230,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2023-01-a-04-07", @@ -1010,11 +1252,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2023-01-a-04-08", @@ -1024,11 +1274,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2023-01-a-04-09", @@ -1038,11 +1296,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Crowd-out policies" } + "context_data": { + "bullet_text": "Crowd-out policies" + } }, { "id": "2023-01-a-04-10", @@ -1051,8 +1317,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1066,8 +1338,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1082,8 +1360,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1098,11 +1382,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2023-01-a-04-14", @@ -1111,8 +1403,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1127,8 +1425,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1143,8 +1447,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1158,8 +1468,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1173,8 +1489,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -1188,11 +1510,19 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -1201,7 +1531,9 @@ "id": "2023-01-a-04-20", "type": "text_multiline", "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-01-a-04-21", @@ -1210,8 +1542,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -1295,7 +1633,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Medicaid Expansion CHIP" }, + { + "contents": "Medicaid Expansion CHIP" + }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1318,7 +1658,9 @@ } ], [ - { "contents": "Separate CHIP" }, + { + "contents": "Separate CHIP" + }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1342,14 +1684,18 @@ ] ], "headers": [ - { "contents": "Program" }, + { + "contents": "Program" + }, { "contents": "Number of children enrolled in FFY 2022" }, { "contents": "Number of children enrolled in FFY 2023" }, - { "contents": "Percent change" } + { + "contents": "Percent change" + } ] }, "fieldset_type": "synthesized_table" @@ -1358,7 +1704,9 @@ "id": "2023-02-a-01-01", "type": "text_multiline", "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1404,7 +1752,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -1431,7 +1781,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -1458,7 +1810,9 @@ } ], [ - { "contents": "2020" }, + { + "contents": "2020" + }, { "lookupAcs": { "ffy": "2020", @@ -1485,7 +1839,9 @@ } ], [ - { "contents": "2021" }, + { + "contents": "2021" + }, { "lookupAcs": { "ffy": "2021", @@ -1512,7 +1868,9 @@ } ], [ - { "contents": "2022" }, + { + "contents": "2022" + }, { "lookupAcs": { "ffy": "2022", @@ -1540,13 +1898,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "fieldset_type": "synthesized_table" @@ -1590,7 +1956,9 @@ "id": "2023-02-a-02-01", "type": "text_multiline", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1626,8 +1994,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1635,7 +2009,9 @@ "id": "2023-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1659,8 +2035,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1671,7 +2053,9 @@ "id": "2023-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-b", @@ -1686,37 +2070,49 @@ "id": "2023-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -1739,13 +2135,17 @@ "id": "2023-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -1785,8 +2185,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1794,7 +2200,9 @@ "id": "2023-03-a-01-01-a", "type": "text_multiline", "label": "What are you doing differently?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1819,8 +2227,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -1828,7 +2242,9 @@ "id": "2023-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1850,19 +2266,25 @@ "hint": "For example: TV, school outreach, or word of mouth.", "type": "text_multiline", "label": "What methods have been most effective in reaching low-income, uninsured children?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -1885,9 +2307,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -1895,7 +2326,9 @@ "id": "2023-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1919,9 +2352,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -1929,7 +2371,9 @@ "id": "2023-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -1950,7 +2394,9 @@ "id": "2023-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -1962,9 +2408,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -1975,7 +2430,9 @@ "id": "2023-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -1996,7 +2453,9 @@ "id": "2023-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2015,7 +2474,9 @@ "id": "2023-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2034,7 +2495,9 @@ "id": "2023-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2064,13 +2527,17 @@ "id": "2023-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -2094,9 +2561,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -2107,13 +2583,17 @@ "id": "2023-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -2139,8 +2619,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -2151,8 +2637,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -2163,13 +2655,17 @@ "id": "2023-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-03-b", "type": "text", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -2192,25 +2688,33 @@ "id": "2023-03-c-01-04", "type": "text_multiline", "label": "What else have you done to simplify the eligibility renewal process for families?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-05", "type": "text_multiline", "label": "Which retention strategies have you found to be most effective?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-06", "type": "text_multiline", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -2224,47 +2728,54 @@ "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2023? This number should be equal to the total of reported numbers for questions 2-4 below.", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "questions": [ { "id": "2023-03-c-02-03-a", "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } - ], - "mask": "lessThanEleven" + ] }, { "id": "2023-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-02-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This table is auto-populated with the data you entered above.", @@ -2274,7 +2785,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-01')].answer.entry" @@ -2289,7 +2802,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-02')].answer.entry" @@ -2304,7 +2819,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-03')].answer.entry" @@ -2319,7 +2836,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-04')].answer.entry" @@ -2335,9 +2854,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2354,29 +2879,34 @@ "id": "2023-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2397,32 +2927,36 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } - ], - "mask": "lessThanEleven" + ] }, { "id": "2023-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -2484,9 +3018,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2568,9 +3108,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2587,29 +3133,34 @@ "id": "2023-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2630,32 +3181,36 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } - ], - "mask": "lessThanEleven" + ] }, { "id": "2023-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -2717,9 +3272,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2801,9 +3362,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -2848,8 +3415,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -2866,7 +3439,9 @@ "id": "2023-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2878,8 +3453,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -2903,29 +3477,33 @@ "id": "2023-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -2943,7 +3521,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-03" }, + "fieldset_info": { + "id": "2023-03-c-05-03" + }, "fieldset_type": "marked" }, { @@ -2960,7 +3540,9 @@ "id": "2023-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2972,8 +3554,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -2997,29 +3578,33 @@ "id": "2023-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3037,7 +3622,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-04" }, + "fieldset_info": { + "id": "2023-03-c-05-04" + }, "fieldset_type": "marked" }, { @@ -3048,7 +3635,9 @@ "id": "2023-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3060,8 +3649,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3085,29 +3673,33 @@ "id": "2023-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3125,7 +3717,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-05" }, + "fieldset_info": { + "id": "2023-03-c-05-05" + }, "fieldset_type": "marked" }, { @@ -3136,7 +3730,9 @@ "id": "2023-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3148,8 +3744,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3173,29 +3768,33 @@ "id": "2023-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3213,7 +3812,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-06" }, + "fieldset_info": { + "id": "2023-03-c-05-06" + }, "fieldset_type": "marked" }, { @@ -3225,7 +3826,9 @@ "id": "2023-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3237,8 +3840,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3262,29 +3864,33 @@ "id": "2023-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3302,7 +3908,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-07" }, + "fieldset_info": { + "id": "2023-03-c-05-07" + }, "fieldset_type": "marked" }, { @@ -3313,7 +3921,9 @@ "id": "2023-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3325,8 +3935,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3350,29 +3959,33 @@ "id": "2023-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3390,14 +4003,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-08" }, + "fieldset_info": { + "id": "2023-03-c-05-08" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This year, please report data about your cohort for this section.", @@ -3414,7 +4031,9 @@ "id": "2023-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3426,8 +4045,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3451,29 +4069,33 @@ "id": "2023-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3491,7 +4113,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-10" }, + "fieldset_info": { + "id": "2023-03-c-05-10" + }, "fieldset_type": "marked" }, { @@ -3502,7 +4126,9 @@ "id": "2023-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3514,8 +4140,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3539,29 +4164,33 @@ "id": "2023-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3579,7 +4208,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-11" }, + "fieldset_info": { + "id": "2023-03-c-05-11" + }, "fieldset_type": "marked" }, { @@ -3590,7 +4221,9 @@ "id": "2023-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3602,8 +4235,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3627,29 +4259,33 @@ "id": "2023-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3667,7 +4303,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-12" }, + "fieldset_info": { + "id": "2023-03-c-05-12" + }, "fieldset_type": "marked" }, { @@ -3679,7 +4317,9 @@ "id": "2023-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3691,8 +4331,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3716,29 +4355,33 @@ "id": "2023-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3756,7 +4399,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-13" }, + "fieldset_info": { + "id": "2023-03-c-05-13" + }, "fieldset_type": "marked" }, { @@ -3767,7 +4412,9 @@ "id": "2023-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3779,8 +4426,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3804,29 +4450,33 @@ "id": "2023-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3844,7 +4494,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-14" }, + "fieldset_info": { + "id": "2023-03-c-05-14" + }, "fieldset_type": "marked" }, { @@ -3862,7 +4514,9 @@ "id": "2023-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3874,8 +4528,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3899,29 +4552,33 @@ "id": "2023-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -3939,7 +4596,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-15" }, + "fieldset_info": { + "id": "2023-03-c-05-15" + }, "fieldset_type": "marked" }, { @@ -3950,7 +4609,9 @@ "id": "2023-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3962,8 +4623,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -3987,29 +4647,33 @@ "id": "2023-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4027,7 +4691,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-16" }, + "fieldset_info": { + "id": "2023-03-c-05-16" + }, "fieldset_type": "marked" }, { @@ -4038,7 +4704,9 @@ "id": "2023-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4050,8 +4718,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4075,29 +4742,33 @@ "id": "2023-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4115,7 +4786,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-17" }, + "fieldset_info": { + "id": "2023-03-c-05-17" + }, "fieldset_type": "marked" }, { @@ -4127,7 +4800,9 @@ "id": "2023-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4139,8 +4814,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4164,29 +4838,33 @@ "id": "2023-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4204,7 +4882,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-18" }, + "fieldset_info": { + "id": "2023-03-c-05-18" + }, "fieldset_type": "marked" }, { @@ -4215,7 +4895,10 @@ "id": "2023-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4227,8 +4910,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4252,29 +4934,33 @@ "id": "2023-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4292,14 +4978,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-05-19" }, + "fieldset_info": { + "id": "2023-03-c-05-19" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -4341,8 +5031,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -4359,7 +5055,9 @@ "id": "2023-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4371,8 +5069,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4396,29 +5093,33 @@ "id": "2023-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4436,7 +5137,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-03" }, + "fieldset_info": { + "id": "2023-03-c-06-03" + }, "fieldset_type": "marked" }, { @@ -4453,7 +5156,9 @@ "id": "2023-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4465,8 +5170,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4490,29 +5194,33 @@ "id": "2023-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4530,7 +5238,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-04" }, + "fieldset_info": { + "id": "2023-03-c-06-04" + }, "fieldset_type": "marked" }, { @@ -4541,7 +5251,9 @@ "id": "2023-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4553,8 +5265,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4578,29 +5289,33 @@ "id": "2023-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4618,7 +5333,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-05" }, + "fieldset_info": { + "id": "2023-03-c-06-05" + }, "fieldset_type": "marked" }, { @@ -4629,7 +5346,9 @@ "id": "2023-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4641,8 +5360,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4666,29 +5384,33 @@ "id": "2023-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4706,7 +5428,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-06" }, + "fieldset_info": { + "id": "2023-03-c-06-06" + }, "fieldset_type": "marked" }, { @@ -4718,7 +5442,9 @@ "id": "2023-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4730,8 +5456,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4755,29 +5480,33 @@ "id": "2023-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4795,7 +5524,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-07" }, + "fieldset_info": { + "id": "2023-03-c-06-07" + }, "fieldset_type": "marked" }, { @@ -4806,7 +5537,9 @@ "id": "2023-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4818,8 +5551,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4843,29 +5575,33 @@ "id": "2023-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4883,14 +5619,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-08" }, + "fieldset_info": { + "id": "2023-03-c-06-08" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "hint": "This year, please report data about your cohort for this section.", @@ -4907,7 +5647,10 @@ "id": "2023-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4919,8 +5662,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -4944,29 +5686,33 @@ "id": "2023-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -4984,7 +5730,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-10" }, + "fieldset_info": { + "id": "2023-03-c-06-10" + }, "fieldset_type": "marked" }, { @@ -4995,7 +5743,10 @@ "id": "2023-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5007,8 +5758,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5032,29 +5782,33 @@ "id": "2023-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5072,7 +5826,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-11" }, + "fieldset_info": { + "id": "2023-03-c-06-11" + }, "fieldset_type": "marked" }, { @@ -5083,7 +5839,10 @@ "id": "2023-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5095,8 +5854,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5120,29 +5878,33 @@ "id": "2023-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5160,7 +5922,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-12" }, + "fieldset_info": { + "id": "2023-03-c-06-12" + }, "fieldset_type": "marked" }, { @@ -5172,7 +5936,10 @@ "id": "2023-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5184,8 +5951,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5209,29 +5975,33 @@ "id": "2023-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5249,7 +6019,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-13" }, + "fieldset_info": { + "id": "2023-03-c-06-13" + }, "fieldset_type": "marked" }, { @@ -5260,7 +6032,10 @@ "id": "2023-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5272,8 +6047,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5297,29 +6071,33 @@ "id": "2023-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5337,7 +6115,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-14" }, + "fieldset_info": { + "id": "2023-03-c-06-14" + }, "fieldset_type": "marked" }, { @@ -5355,7 +6135,10 @@ "id": "2023-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5367,8 +6150,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5392,29 +6174,33 @@ "id": "2023-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5432,7 +6218,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-15" }, + "fieldset_info": { + "id": "2023-03-c-06-15" + }, "fieldset_type": "marked" }, { @@ -5443,7 +6231,10 @@ "id": "2023-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5455,8 +6246,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5480,29 +6270,33 @@ "id": "2023-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5520,7 +6314,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-16" }, + "fieldset_info": { + "id": "2023-03-c-06-16" + }, "fieldset_type": "marked" }, { @@ -5531,7 +6327,10 @@ "id": "2023-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5543,8 +6342,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5568,29 +6366,33 @@ "id": "2023-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5608,7 +6410,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-17" }, + "fieldset_info": { + "id": "2023-03-c-06-17" + }, "fieldset_type": "marked" }, { @@ -5620,7 +6424,10 @@ "id": "2023-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5632,8 +6439,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5657,29 +6463,33 @@ "id": "2023-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5697,7 +6507,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-18" }, + "fieldset_info": { + "id": "2023-03-c-06-18" + }, "fieldset_type": "marked" }, { @@ -5708,7 +6520,10 @@ "id": "2023-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5720,8 +6535,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -5745,29 +6559,33 @@ "id": "2023-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -5785,14 +6603,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-c-06-19" }, + "fieldset_info": { + "id": "2023-03-c-06-19" + }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -5815,8 +6637,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -5838,12 +6666,18 @@ "label": "Health plans", "value": "health_plans" }, - { "label": "States", "value": "states" }, + { + "label": "States", + "value": "states" + }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { "label": "Other ", "value": "other" } + { + "label": "Other ", + "value": "other" + } ] }, "questions": [ @@ -5851,7 +6685,9 @@ "id": "2023-03-d-01-02-a", "type": "text_multiline", "label": "What information or tools do you provide families with so they can track cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5881,7 +6717,9 @@ "id": "2023-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5912,13 +6750,17 @@ "id": "2023-03-d-01-03", "type": "text_multiline", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-d-01-05", @@ -5927,8 +6769,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -5936,7 +6784,9 @@ "id": "2023-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5960,8 +6810,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -5969,7 +6825,9 @@ "id": "2023-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5990,7 +6848,9 @@ "id": "2023-03-d-01-07", "type": "text_multiline", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6012,13 +6872,17 @@ "id": "2023-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -6061,8 +6925,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -6102,8 +6972,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6112,7 +6988,9 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-04", @@ -6122,8 +7000,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6135,9 +7019,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -6149,8 +7042,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -6158,7 +7057,9 @@ "id": "2023-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6179,7 +7080,9 @@ "id": "2023-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -6188,19 +7091,25 @@ "id": "2023-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-09", "type": "text", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-10", "type": "text", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -6233,9 +7142,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "fieldset_type": "synthesized_table" @@ -6295,31 +7210,41 @@ "id": "2023-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -6356,8 +7281,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6368,8 +7299,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6380,8 +7317,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6389,7 +7332,9 @@ "id": "2023-03-f-01-04", "type": "text_multiline", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-05", @@ -6398,9 +7343,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -6408,7 +7362,9 @@ "id": "2023-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the managed care plans have in place?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6429,15 +7385,17 @@ "id": "2023-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -6446,13 +7404,17 @@ "id": "2023-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -6463,13 +7425,17 @@ "id": "2023-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-11", "type": "integer", "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -6480,15 +7446,17 @@ "id": "2023-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -6499,7 +7467,10 @@ "answer": { "entry": null, "options": [ - { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "CHIP only", + "value": "separate_chip_only" + }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -6514,8 +7485,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -6523,7 +7500,9 @@ "id": "2023-03-f-01-15-a", "type": "text_multiline", "label": "How do you provide oversight of the contractors? ", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6547,8 +7526,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -6556,7 +7541,9 @@ "id": "2023-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6577,13 +7564,17 @@ "id": "2023-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -6617,8 +7608,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -6630,7 +7627,9 @@ "id": "2023-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6642,8 +7641,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6669,43 +7667,49 @@ "id": "2023-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -6723,7 +7727,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-02" }, + "fieldset_info": { + "id": "2023-03-g-01-02" + }, "fieldset_type": "marked" }, { @@ -6734,7 +7740,9 @@ "id": "2023-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6746,8 +7754,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6773,43 +7780,49 @@ "id": "2023-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -6827,7 +7840,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-03" }, + "fieldset_info": { + "id": "2023-03-g-01-03" + }, "fieldset_type": "marked" }, { @@ -6844,7 +7859,9 @@ "id": "2023-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6856,8 +7873,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6883,43 +7899,49 @@ "id": "2023-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -6937,7 +7959,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-04" }, + "fieldset_info": { + "id": "2023-03-g-01-04" + }, "fieldset_type": "marked" }, { @@ -6955,7 +7979,9 @@ "id": "2023-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6967,8 +7993,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -6994,43 +8019,49 @@ "id": "2023-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "context_data": { @@ -7048,7 +8079,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-03-g-01-05" }, + "fieldset_info": { + "id": "2023-03-g-01-05" + }, "fieldset_type": "marked" }, { @@ -7061,8 +8094,9 @@ "id": "2023-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2023?", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -7077,8 +8111,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -7089,14 +8129,18 @@ "id": "2023-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -7130,7 +8174,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table" @@ -7156,13 +8202,17 @@ "id": "2023-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -7189,8 +8239,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -7202,8 +8258,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -7233,7 +8295,9 @@ "id": "2023-03-h-02-01", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results. This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-h-02-02", @@ -7246,12 +8310,18 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid_exp_chip" }, - { "label": "Separate CHIP", "value": "separate_chip" }, + { + "label": "Separate CHIP", + "value": "separate_chip" + }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combo" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -7262,9 +8332,18 @@ "answer": { "entry": null, "options": [ - { "label": "CAHPS 5.1", "value": "CAHPS 5.1" }, - { "label": "CAHPS 5.1H", "value": "CAHPS 5.1H" }, - { "label": "Other", "value": "Other" } + { + "label": "CAHPS 5.1", + "value": "CAHPS 5.1" + }, + { + "label": "CAHPS 5.1H", + "value": "CAHPS 5.1H" + }, + { + "label": "Other", + "value": "Other" + } ] } }, @@ -7275,12 +8354,18 @@ "answer": { "entry": null, "options": [ - { "label": "None", "value": "None" }, + { + "label": "None", + "value": "None" + }, { "label": "Children with Chronic Conditions", "value": "Children with Chronic Conditions" }, - { "label": "Other", "value": "Other" } + { + "label": "Other", + "value": "Other" + } ] } }, @@ -7295,8 +8380,14 @@ "label": "NCQA HEDIS CAHPS 5.1H", "value": "NCQA HEDIS CAHPS 5.1H" }, - { "label": "HRQ CAHPS", "value": "HRQ CAHPS" }, - { "label": "Other", "value": "Other" } + { + "label": "HRQ CAHPS", + "value": "HRQ CAHPS" + }, + { + "label": "Other", + "value": "Other" + } ] } }, @@ -7304,7 +8395,9 @@ "id": "2023-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -7376,7 +8469,10 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -7384,7 +8480,9 @@ "id": "2023-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -7412,7 +8510,7 @@ "parts": [ { "id": "2023-03-i-01", - "title": " ", + "title": "\u00A0", "type": "part", "questions": [ { @@ -7423,8 +8521,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -7432,7 +8536,7 @@ }, { "id": "2023-03-i-02", - "title": " ", + "title": "\u00A0", "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", "type": "part", "questions": [ @@ -7450,7 +8554,9 @@ "id": "2023-03-i-02-01-01-01", "type": "text", "label": "What is the name of your HSI program?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-03-i-02-01-01-02", @@ -7459,8 +8565,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -7486,7 +8598,9 @@ "id": "2023-03-i-02-01-01-03", "type": "text_multiline", "label": "Which populations does the HSI program serve?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7505,7 +8619,9 @@ "id": "2023-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7518,14 +8634,15 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "id": "2023-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7538,8 +8655,7 @@ } } } - }, - "mask": "lessThanEleven" + } }, { "type": "fieldset", @@ -7589,7 +8705,9 @@ "id": "2023-03-i-02-01-01-06", "type": "text_multiline", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7608,7 +8726,9 @@ "id": "2023-03-i-02-01-01-07", "type": "text_multiline", "label": "What outcomes have you found when measuring the impact?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7627,7 +8747,9 @@ "id": "2023-03-i-02-01-01-08", "type": "text_multiline", "label": "Is there anything else you'd like to add about this HSI program?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7646,7 +8768,9 @@ "id": "2023-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7746,7 +8870,9 @@ "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", "type": "text_multiline", "label": "Briefly describe your goal.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-02", @@ -7775,7 +8901,9 @@ "id": "2023-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7808,14 +8936,17 @@ "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -7828,14 +8959,17 @@ "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -7886,26 +9020,34 @@ "id": "2023-04-a-01-01-01-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -7923,7 +9065,9 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": "Increase access to care" } + "answer": { + "entry": "Increase access to care" + } }, { "id": "2023-04-a-01-01-02-02", @@ -7938,7 +9082,9 @@ "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-02", @@ -7967,7 +9113,9 @@ "id": "2023-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8000,14 +9148,17 @@ "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8020,14 +9171,17 @@ "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8078,26 +9232,34 @@ "id": "2023-04-a-01-01-02-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8132,7 +9294,9 @@ "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-02", @@ -8161,7 +9325,9 @@ "id": "2023-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8194,14 +9360,17 @@ "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8214,14 +9383,17 @@ "hint": "For example: The total number of rural children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8272,26 +9444,34 @@ "id": "2023-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8308,7 +9488,9 @@ "id": "2023-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02", @@ -8322,7 +9504,9 @@ "id": "2023-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-02", @@ -8351,7 +9535,9 @@ "id": "2023-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8384,14 +9570,17 @@ "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8404,14 +9593,17 @@ "hint": "For example: The total number of children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8462,26 +9654,34 @@ "id": "2023-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8498,7 +9698,9 @@ "id": "2023-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02", @@ -8512,7 +9714,9 @@ "id": "2023-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-02", @@ -8541,7 +9745,9 @@ "id": "2023-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8573,14 +9779,17 @@ "id": "2023-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8592,14 +9801,17 @@ "id": "2023-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8650,26 +9862,34 @@ "id": "2023-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8686,7 +9906,9 @@ "id": "2023-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02", @@ -8700,7 +9922,9 @@ "id": "2023-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-02", @@ -8729,7 +9953,9 @@ "id": "2023-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8761,14 +9987,17 @@ "id": "2023-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8781,14 +10010,17 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ] }, @@ -8839,26 +10071,34 @@ "id": "2023-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8880,26 +10120,34 @@ "id": "2023-04-a-02-01", "type": "text_multiline", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-02-03", "type": "text_multiline", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-04-a-02-04", "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -8945,26 +10193,34 @@ "id": "2023-05-a-01-01-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-01-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-01-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-01" }, + "fieldset_info": { + "id": "2023-05-a-01-01" + }, "fieldset_type": "marked" }, { @@ -8978,26 +10234,34 @@ "id": "2023-05-a-01-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-02" }, + "fieldset_info": { + "id": "2023-05-a-01-02" + }, "fieldset_type": "marked" }, { @@ -9011,26 +10275,34 @@ "id": "2023-05-a-01-03-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-03-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-03-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-03" }, + "fieldset_info": { + "id": "2023-05-a-01-03" + }, "fieldset_type": "marked" }, { @@ -9044,26 +10316,34 @@ "id": "2023-05-a-01-04-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-04-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-01-04-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-01-04" }, + "fieldset_info": { + "id": "2023-05-a-01-04" + }, "fieldset_type": "marked" }, { @@ -9074,7 +10354,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -9095,7 +10377,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -9116,7 +10400,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -9160,7 +10446,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3>", @@ -9197,10 +10485,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -9224,26 +10520,34 @@ "id": "2023-05-a-02-01-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-01-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-01-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-01" }, + "fieldset_info": { + "id": "2023-05-a-02-01" + }, "fieldset_type": "marked" }, { @@ -9257,26 +10561,34 @@ "id": "2023-05-a-02-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-02" }, + "fieldset_info": { + "id": "2023-05-a-02-02" + }, "fieldset_type": "marked" }, { @@ -9290,26 +10602,34 @@ "id": "2023-05-a-02-03-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-03-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-03-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-03" }, + "fieldset_info": { + "id": "2023-05-a-02-03" + }, "fieldset_type": "marked" }, { @@ -9323,26 +10643,34 @@ "id": "2023-05-a-02-04-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-04-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-04-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-04" }, + "fieldset_info": { + "id": "2023-05-a-02-04" + }, "fieldset_type": "marked" }, { @@ -9356,26 +10684,34 @@ "id": "2023-05-a-02-05-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-05-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-05-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-05" }, + "fieldset_info": { + "id": "2023-05-a-02-05" + }, "fieldset_type": "marked" }, { @@ -9389,26 +10725,34 @@ "id": "2023-05-a-02-06-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-06-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-06-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-06" }, + "fieldset_info": { + "id": "2023-05-a-02-06" + }, "fieldset_type": "marked" }, { @@ -9422,26 +10766,34 @@ "id": "2023-05-a-02-07-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-07-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-02-07-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-02-07" }, + "fieldset_info": { + "id": "2023-05-a-02-07" + }, "fieldset_type": "marked" }, { @@ -9452,7 +10804,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -9473,7 +10827,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -9494,7 +10850,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -9515,7 +10873,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -9536,7 +10896,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -9557,7 +10919,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -9578,7 +10942,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -9599,7 +10965,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -9638,7 +11006,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -9675,10 +11045,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -9691,7 +11069,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -9748,30 +11128,48 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2023" }], + "targets": [ + { + "lookupFmapFy": "2023" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY23)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2024" }], + "targets": [ + { + "lookupFmapFy": "2024" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2025" }], + "targets": [ + { + "lookupFmapFy": "2025" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -9790,7 +11188,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -9809,7 +11209,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2025" }, + { + "lookupFmapFy": "2025" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -9826,7 +11228,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -9842,7 +11246,9 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -9872,7 +11278,9 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -9902,7 +11310,9 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2025" }, + { + "lookupFmapFy": "2025" + }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -9920,10 +11330,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -9960,7 +11378,10 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -9968,7 +11389,9 @@ "id": "2023-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9992,8 +11415,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -10001,7 +11430,9 @@ "id": "2023-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -10037,29 +11468,34 @@ "id": "2023-05-a-03-01-a", "type": "integer", "label": "2023", - "answer": { "entry": null }, - "comment": "This is the first real question so far in this part…", - "mask": "lessThanEleven" + "answer": { + "entry": null + }, + "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-01-b", "type": "integer", "label": "2024", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-05-a-03-01-c", "type": "integer", "label": "2025", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-03-01" }, + "fieldset_info": { + "id": "2023-05-a-03-01" + }, "fieldset_type": "marked" }, { @@ -10074,26 +11510,34 @@ "id": "2023-05-a-03-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-03-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-03-02" }, + "fieldset_info": { + "id": "2023-05-a-03-02" + }, "fieldset_type": "marked" }, { @@ -10102,7 +11546,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -10123,7 +11569,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -10145,10 +11593,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -10172,29 +11628,34 @@ "id": "2023-05-a-04-01-a", "type": "integer", "label": "2023", - "answer": { "entry": null }, - "comment": "This is the first real question so far in this part…", - "mask": "lessThanEleven" + "answer": { + "entry": null + }, + "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-01-b", "type": "integer", "label": "2024", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } }, { "id": "2023-05-a-04-01-c", "type": "integer", "label": "2025", - "answer": { "entry": null }, - "mask": "lessThanEleven" + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-04-01" }, + "fieldset_info": { + "id": "2023-05-a-04-01" + }, "fieldset_type": "marked" }, { @@ -10209,26 +11670,34 @@ "id": "2023-05-a-04-02-a", "type": "money", "label": "2023", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-02-b", "type": "money", "label": "2024", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-04-02-c", "type": "money", "label": "2025", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2023-05-a-04-02" }, + "fieldset_info": { + "id": "2023-05-a-04-02" + }, "fieldset_type": "marked" }, { @@ -10237,7 +11706,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -10258,7 +11729,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -10280,10 +11753,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" }, - { "contents": "FFY 2025" } + { + "contents": "" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + }, + { + "contents": "FFY 2025" + } ] }, "fieldset_type": "synthesized_table" @@ -10298,13 +11779,17 @@ "id": "2023-05-a-05-01", "type": "text_multiline", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -10341,37 +11826,49 @@ "id": "2023-06-a-01-01", "type": "text_multiline", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-02", "type": "text_multiline", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-03", "type": "text_multiline", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2023?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-04", "type": "text_multiline", "label": "What changes have you made to your CHIP program in FFY 2023 or plan to make in FFY 2024? Why have you decided to make these changes?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2023-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -10452,32 +11949,42 @@ "id": "2022-00-a-01-04", "label": "Contact name:", "type": "text", - "answer": { "entry": "Haley Gov" } + "answer": { + "entry": "Haley Gov" + } }, { "id": "2022-00-a-01-05", "label": "Job title:", "type": "text", - "answer": { "entry": "Lead" } + "answer": { + "entry": "Lead" + } }, { "id": "2022-00-a-01-06", "label": "Email:", "type": "email", - "answer": { "entry": "haley@cms.gov" } + "answer": { + "entry": "haley@cms.gov" + } }, { "id": "2022-00-a-01-07", "label": "Full mailing address:", "type": "mailing_address", - "answer": { "entry": "address here" }, + "answer": { + "entry": "address here" + }, "hint": "Include city, state, and zip code." }, { "id": "2022-00-a-01-08", "label": "Phone number:", "type": "phone_number", - "answer": { "entry": "8004659988" } + "answer": { + "entry": "8004659988" + } }, { "questions": [], @@ -10540,7 +12047,9 @@ "id": "2022-01-a-01-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { "entry": "25" } + "answer": { + "entry": "25" + } } ], "id": "2022-01-a-01-01", @@ -10548,8 +12057,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -10565,8 +12080,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10617,7 +12138,9 @@ "id": "2022-01-a-01-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -10641,8 +12164,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10696,7 +12225,9 @@ "id": "2022-01-a-01-03-b", "label": "What's the maximum premium a family would be charged each year?", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-01-a-01-03", @@ -10704,8 +12235,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10714,7 +12251,9 @@ "id": "2022-01-a-01-04", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { "entry": "no" } + "answer": { + "entry": "no" + } }, { "id": "2022-01-a-01-05", @@ -10722,12 +12261,18 @@ "type": "checkbox", "answer": { "options": [ - { "value": "mco", "label": "Managed Care" }, + { + "value": "mco", + "label": "Managed Care" + }, { "value": "pccm", "label": "Primary Care Case Management" }, - { "value": "ffs", "label": "Fee for Service" } + { + "value": "ffs", + "label": "Fee for Service" + } ], "entry": [null, "mco"] }, @@ -10737,7 +12282,9 @@ "id": "2022-01-a-01-06", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { "entry": "info here" } + "answer": { + "entry": "info here" + } } ], "context_data": { @@ -10772,7 +12319,9 @@ "id": "2022-01-a-02-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-01-a-02-01", @@ -10780,8 +12329,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -10797,8 +12352,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10849,7 +12410,9 @@ "id": "2022-01-a-02-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "context_data": { @@ -10873,8 +12436,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -10928,7 +12497,9 @@ "id": "2022-01-a-02-03-b", "label": "What's the maximum premium fee a family would be charged each year?", "type": "money", - "answer": { "entry": "6" } + "answer": { + "entry": "6" + } } ], "id": "2022-01-a-02-03", @@ -10936,8 +12507,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -10946,7 +12523,9 @@ "id": "2022-01-a-02-04", "label": "Do your premiums differ for different CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { "entry": "no" } + "answer": { + "entry": "no" + } }, { "id": "2022-01-a-02-05", @@ -10954,12 +12533,18 @@ "type": "checkbox", "answer": { "options": [ - { "value": "mco", "label": "Managed Care" }, + { + "value": "mco", + "label": "Managed Care" + }, { "value": "pccm", "label": "Primary Care Case Management" }, - { "value": "ffs", "label": "Fee for Service" } + { + "value": "ffs", + "label": "Fee for Service" + } ], "entry": [null, "mco"] }, @@ -10969,7 +12554,9 @@ "id": "2022-01-a-02-06", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { "entry": "no" } + "answer": { + "entry": "no" + } } ], "context_data": { @@ -10991,9 +12578,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11007,9 +12603,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11023,9 +12628,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11040,9 +12654,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11057,53 +12680,95 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } }, { - "context_data": { "bullet_text": "Outreach efforts" }, + "context_data": { + "bullet_text": "Outreach efforts" + }, "id": "2022-01-a-03-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { "bullet_text": "Delivery system(s)" }, + "context_data": { + "bullet_text": "Delivery system(s)" + }, "id": "2022-01-a-03-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Medicaid Expansion CHIP populations." }, { - "context_data": { "bullet_text": "Cost sharing" }, + "context_data": { + "bullet_text": "Cost sharing" + }, "id": "2022-01-a-03-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11118,9 +12783,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11135,9 +12809,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11151,24 +12834,44 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { "bullet_text": "Premium assistance" }, + "context_data": { + "bullet_text": "Premium assistance" + }, "id": "2022-01-a-03-12", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11183,9 +12886,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11199,9 +12911,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11215,23 +12936,43 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } }, { - "context_data": { "bullet_text": "Other program areas" }, + "context_data": { + "bullet_text": "Other program areas" + }, "id": "2022-01-a-03-16", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "yes" } @@ -11243,7 +12984,9 @@ "id": "2022-01-a-03-17", "label": "Briefly describe why you made these changes to your Medicaid Expansion CHIP program.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-01-a-03-18", @@ -11251,9 +12994,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11315,9 +13067,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11331,9 +13092,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11347,9 +13117,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11364,9 +13143,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11381,68 +13169,121 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } }, { - "context_data": { "bullet_text": "Outreach efforts" }, + "context_data": { + "bullet_text": "Outreach efforts" + }, "id": "2022-01-a-04-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { "bullet_text": "Delivery system(s)" }, + "context_data": { + "bullet_text": "Delivery system(s)" + }, "id": "2022-01-a-04-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Separate CHIP populations." }, { - "context_data": { "bullet_text": "Cost sharing" }, + "context_data": { + "bullet_text": "Cost sharing" + }, "id": "2022-01-a-04-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, "hint": "For example: changing amounts, populations, or the collection process." }, { - "context_data": { "bullet_text": "Crowd-out policies" }, + "context_data": { + "bullet_text": "Crowd-out policies" + }, "id": "2022-01-a-04-09", "label": "Have you made any changes to substitution of coverage policies?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11457,9 +13298,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11473,9 +13323,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "yes" } @@ -11489,24 +13348,44 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { "bullet_text": "Premium assistance" }, + "context_data": { + "bullet_text": "Premium assistance" + }, "id": "2022-01-a-04-13", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" }, @@ -11521,9 +13400,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11537,9 +13425,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "yes" }, @@ -11554,9 +13451,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" }, @@ -11571,9 +13477,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "n/a" } @@ -11587,23 +13502,43 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } }, { - "context_data": { "bullet_text": "Other program areas" }, + "context_data": { + "bullet_text": "Other program areas" + }, "id": "2022-01-a-04-19", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "n/a", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "n/a", + "label": "N/A" + } ], "entry": "no" } @@ -11615,7 +13550,9 @@ "id": "2022-01-a-04-20", "label": "Briefly describe why you made these changes to your Separate CHIP program.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-01-a-04-21", @@ -11623,8 +13560,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -11707,7 +13650,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Medicaid Expansion CHIP" }, + { + "contents": "Medicaid Expansion CHIP" + }, { "lookupChipEnrollments": { "ffy": 2022, @@ -11730,7 +13675,9 @@ } ], [ - { "contents": "Separate CHIP" }, + { + "contents": "Separate CHIP" + }, { "lookupChipEnrollments": { "ffy": 2022, @@ -11754,14 +13701,18 @@ ] ], "headers": [ - { "contents": "Program" }, + { + "contents": "Program" + }, { "contents": "Number of children enrolled in FFY 2021" }, { "contents": "Number of children enrolled in FFY 2022" }, - { "contents": "Percent change" } + { + "contents": "Percent change" + } ] }, "fieldset_type": "synthesized_table", @@ -11799,7 +13750,9 @@ "id": "2022-02-a-01-01", "label": "If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "id": "2022-02-a-01", @@ -11816,7 +13769,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2013" }, + { + "contents": "2013" + }, { "lookupAcs": { "ffy": "2013", @@ -11843,7 +13798,9 @@ } ], [ - { "contents": "2014" }, + { + "contents": "2014" + }, { "lookupAcs": { "ffy": "2014", @@ -11870,7 +13827,9 @@ } ], [ - { "contents": "2015" }, + { + "contents": "2015" + }, { "lookupAcs": { "ffy": "2015", @@ -11897,7 +13856,9 @@ } ], [ - { "contents": "2016" }, + { + "contents": "2016" + }, { "lookupAcs": { "ffy": "2016", @@ -11924,7 +13885,9 @@ } ], [ - { "contents": "2017" }, + { + "contents": "2017" + }, { "lookupAcs": { "ffy": "2017", @@ -11951,7 +13914,9 @@ } ], [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -11978,7 +13943,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -12005,7 +13972,9 @@ } ], [ - { "contents": "2020" }, + { + "contents": "2020" + }, { "lookupAcs": { "ffy": "2020", @@ -12032,7 +14001,9 @@ } ], [ - { "contents": "2021" }, + { + "contents": "2021" + }, { "lookupAcs": { "ffy": "2021", @@ -12060,13 +14031,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "label": "", @@ -12088,7 +14067,9 @@ ] ], "headers": [ - { "contents": "Percent change between 2019 and 2021" } + { + "contents": "Percent change between 2019 and 2021" + } ] }, "fieldset_type": "synthesized_table", @@ -12126,7 +14107,9 @@ "id": "2022-02-a-02-01", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [ @@ -12147,7 +14130,9 @@ "id": "2022-02-a-02-02-a", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-02-a-02-02", @@ -12155,8 +14140,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12170,7 +14161,9 @@ "id": "2022-02-a-02-03-a", "label": "What is the alternate data source or methodology?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-b", @@ -12185,37 +14178,49 @@ "id": "2022-02-a-02-03-c", "label": "Define the population you’re measuring, including ages and federal poverty levels.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-d", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-e", "label": "Why did your state choose to adopt this alternate data source?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-f", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-g", "label": "What are the limitations of this alternate data source or methodology?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-02-a-02-03-h", "label": "How do you use this alternate data source in CHIP program planning?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12238,8 +14243,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12248,13 +14259,17 @@ "id": "2022-02-a-02-04", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-02-a-02-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-02-a-02", @@ -12308,7 +14323,9 @@ "id": "2022-03-a-01-01-a", "label": "What are you doing differently?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-a-01-01", @@ -12316,8 +14333,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12341,7 +14364,9 @@ "id": "2022-03-a-01-02-a", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-a-01-02", @@ -12349,8 +14374,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -12360,20 +14391,26 @@ "id": "2022-03-a-01-03", "label": "What methods have been most effective in reaching low-income, uninsured children?", "type": "text_multiline", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: TV, school outreach, or word of mouth." }, { "id": "2022-03-a-01-04", "label": "Is there anything else you’d like to add about your outreach efforts?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-a-01-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-a-01" @@ -12407,7 +14444,9 @@ "id": "2022-03-b-01-01-a", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-b-01-01", @@ -12415,9 +14454,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12441,7 +14489,9 @@ "id": "2022-03-b-01-02-a", "label": "Which database do you use?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-b-01-02", @@ -12449,9 +14499,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12460,7 +14519,9 @@ "id": "2022-03-b-01-03", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", "type": "percentage", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "type": "fieldset", @@ -12474,7 +14535,9 @@ "id": "2022-03-b-01-04-a", "label": "How long is the waiting period?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12508,7 +14571,9 @@ "id": "2022-03-b-01-04-b", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -12527,7 +14592,9 @@ "id": "2022-03-b-01-04-c", "label": "What exemptions apply to the waiting period?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -12546,7 +14613,9 @@ "id": "2022-03-b-01-04-d", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12561,9 +14630,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12574,13 +14652,17 @@ "id": "2022-03-b-01-05", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-b-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-b-01" @@ -12604,13 +14686,17 @@ "id": "2022-03-c-01-01-a", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", "type": "percentage", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-01-01-b", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", "type": "percentage", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12633,9 +14719,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "no" } @@ -12646,8 +14741,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12661,13 +14762,17 @@ "id": "2022-03-c-01-03-a", "label": "How many notices do you send to families before disenrolling a child from the program?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-01-03-b", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -12690,8 +14795,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -12700,25 +14811,33 @@ "id": "2022-03-c-01-04", "label": "What else have you done to simplify the eligibility renewal process for families?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-c-01-05", "label": "Which retention strategies have you found to be most effective?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-c-01-06", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-c-01-07", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "id": "2022-03-c-01", @@ -12731,14 +14850,18 @@ "id": "2022-03-c-02-01", "label": "How many applicants were denied CHIP coverage in FFY 2022?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "Don’t include applicants being considered for redetermination — these data will be collected in Part 3." }, { "id": "2022-03-c-02-02", "label": "How many applicants were denied CHIP coverage for procedural reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee." }, { @@ -12747,33 +14870,43 @@ "id": "2022-03-c-02-03-a", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-03-c-02-03", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available." }, { "id": "2022-03-c-02-04", "label": "How many applicants were denied CHIP coverage for other reasons?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-c-02-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-01')].answer.entry" @@ -12788,7 +14921,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-02')].answer.entry" @@ -12803,7 +14938,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-03')].answer.entry" @@ -12818,7 +14955,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-04')].answer.entry" @@ -12834,9 +14973,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "label": "Table: CHIP Eligibility Denials (Not Redetermination)", @@ -12855,19 +15000,25 @@ "id": "2022-03-c-03-01", "label": "How many children were eligible for redetermination in CHIP in FFY 2022?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2022-03-c-03-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2022-03-c-03-03", "label": "How many children were retained in CHIP after redetermination?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "questions": [ @@ -12889,34 +15040,44 @@ "id": "2022-03-c-03-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { "entry": "8" }, + "answer": { + "entry": "8" + }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-03-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { "entry": "8" }, + "answer": { + "entry": "8" + }, "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage." }, { "id": "2022-03-c-03-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } } ], "id": "2022-03-c-03-04", "label": "How many children were disenrolled in CHIP after the redetermination process?", "type": "integer", - "answer": { "entry": "8" }, + "answer": { + "entry": "8" + }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-03-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], @@ -12975,9 +15136,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "label": "Table: Redetermination in CHIP ", @@ -13059,9 +15226,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -13081,19 +15254,25 @@ "id": "2022-03-c-04-01", "label": "How many children were eligible for redetermination in Medicaid in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-c-04-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-c-04-03", "label": "How many children were retained in Medicaid after redetermination?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13115,34 +15294,44 @@ "id": "2022-03-c-04-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-04-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead." }, { "id": "2022-03-c-04-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-03-c-04-04", "label": "How many children were disenrolled in Medicaid after the redetermination process?", "type": "integer", - "answer": { "entry": "5" }, + "answer": { + "entry": "5" + }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-04-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], @@ -13201,9 +15390,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "label": "Table: Redetermination in Medicaid ", @@ -13285,9 +15480,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -13333,8 +15534,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -13363,7 +15570,9 @@ "id": "2022-03-c-05-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13386,25 +15595,33 @@ "id": "2022-03-c-05-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13423,7 +15640,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-03" }, + "fieldset_info": { + "id": "2022-03-c-05-03" + }, "label": "How many children were newly enrolled in CHIP between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -13451,7 +15670,9 @@ "id": "2022-03-c-05-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13474,25 +15695,33 @@ "id": "2022-03-c-05-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13511,7 +15740,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-04" }, + "fieldset_info": { + "id": "2022-03-c-05-04" + }, "label": "How many children were continuously enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -13535,7 +15766,9 @@ "id": "2022-03-c-05-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13558,25 +15791,33 @@ "id": "2022-03-c-05-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13595,7 +15836,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-05" }, + "fieldset_info": { + "id": "2022-03-c-05-05" + }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -13618,7 +15861,9 @@ "id": "2022-03-c-05-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13641,25 +15886,33 @@ "id": "2022-03-c-05-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13678,7 +15931,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-06" }, + "fieldset_info": { + "id": "2022-03-c-05-06" + }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -13701,7 +15956,9 @@ "id": "2022-03-c-05-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13724,25 +15981,33 @@ "id": "2022-03-c-05-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13761,7 +16026,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-07" }, + "fieldset_info": { + "id": "2022-03-c-05-07" + }, "label": "How many children were no longer enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -13785,7 +16052,9 @@ "id": "2022-03-c-05-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -13808,25 +16077,33 @@ "id": "2022-03-c-05-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-05-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -13845,7 +16122,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-08" }, + "fieldset_info": { + "id": "2022-03-c-05-08" + }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -13854,7 +16133,9 @@ "id": "2022-03-c-05-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [], @@ -13880,7 +16161,10 @@ "id": "2022-03-c-05-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -13903,25 +16187,37 @@ "id": "2022-03-c-05-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -13940,7 +16236,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-10" }, + "fieldset_info": { + "id": "2022-03-c-05-10" + }, "label": "How many children were continuously enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -13964,7 +16262,10 @@ "id": "2022-03-c-05-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -13987,25 +16288,37 @@ "id": "2022-03-c-05-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14024,7 +16337,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-11" }, + "fieldset_info": { + "id": "2022-03-c-05-11" + }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14047,7 +16362,10 @@ "id": "2022-03-c-05-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14070,25 +16388,37 @@ "id": "2022-03-c-05-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14107,7 +16437,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-12" }, + "fieldset_info": { + "id": "2022-03-c-05-12" + }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -14130,7 +16462,10 @@ "id": "2022-03-c-05-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14153,25 +16488,37 @@ "id": "2022-03-c-05-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14190,7 +16537,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-13" }, + "fieldset_info": { + "id": "2022-03-c-05-13" + }, "label": "How many children were no longer enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14214,7 +16563,10 @@ "id": "2022-03-c-05-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14237,25 +16589,37 @@ "id": "2022-03-c-05-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14274,7 +16638,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-14" }, + "fieldset_info": { + "id": "2022-03-c-05-14" + }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14303,7 +16669,10 @@ "id": "2022-03-c-05-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14326,25 +16695,37 @@ "id": "2022-03-c-05-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14363,7 +16744,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-15" }, + "fieldset_info": { + "id": "2022-03-c-05-15" + }, "label": "How many children were continuously enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14387,7 +16770,10 @@ "id": "2022-03-c-05-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14410,25 +16796,37 @@ "id": "2022-03-c-05-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14447,7 +16845,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-16" }, + "fieldset_info": { + "id": "2022-03-c-05-16" + }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14470,7 +16870,10 @@ "id": "2022-03-c-05-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14493,25 +16896,37 @@ "id": "2022-03-c-05-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14530,7 +16945,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-17" }, + "fieldset_info": { + "id": "2022-03-c-05-17" + }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -14553,7 +16970,10 @@ "id": "2022-03-c-05-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14576,25 +16996,37 @@ "id": "2022-03-c-05-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14613,7 +17045,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-18" }, + "fieldset_info": { + "id": "2022-03-c-05-18" + }, "label": "How many children were no longer enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14637,7 +17071,10 @@ "id": "2022-03-c-05-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -14660,25 +17097,37 @@ "id": "2022-03-c-05-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-05-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -14697,7 +17146,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-05-19" }, + "fieldset_info": { + "id": "2022-03-c-05-19" + }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -14706,7 +17157,9 @@ "id": "2022-03-c-05-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "id": "2022-03-c-05", @@ -14746,8 +17199,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -14776,7 +17235,9 @@ "id": "2022-03-c-06-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -14799,25 +17260,33 @@ "id": "2022-03-c-06-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -14836,7 +17305,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-03" }, + "fieldset_info": { + "id": "2022-03-c-06-03" + }, "label": "How many children were newly enrolled in Medicaid between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -14864,7 +17335,9 @@ "id": "2022-03-c-06-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -14887,25 +17360,33 @@ "id": "2022-03-c-06-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -14924,7 +17405,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-04" }, + "fieldset_info": { + "id": "2022-03-c-06-04" + }, "label": "How many children were continuously enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -14948,7 +17431,9 @@ "id": "2022-03-c-06-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -14971,25 +17456,33 @@ "id": "2022-03-c-06-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15008,7 +17501,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-05" }, + "fieldset_info": { + "id": "2022-03-c-06-05" + }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15031,7 +17526,9 @@ "id": "2022-03-c-06-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -15054,25 +17551,33 @@ "id": "2022-03-c-06-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15091,7 +17596,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-06" }, + "fieldset_info": { + "id": "2022-03-c-06-06" + }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15114,7 +17621,9 @@ "id": "2022-03-c-06-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -15137,25 +17646,33 @@ "id": "2022-03-c-06-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15174,7 +17691,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-07" }, + "fieldset_info": { + "id": "2022-03-c-06-07" + }, "label": "How many children were no longer enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15198,7 +17717,9 @@ "id": "2022-03-c-06-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -15221,25 +17742,33 @@ "id": "2022-03-c-06-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-c-06-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -15258,7 +17787,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-08" }, + "fieldset_info": { + "id": "2022-03-c-06-08" + }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15267,7 +17798,9 @@ "id": "2022-03-c-06-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [], @@ -15293,7 +17826,10 @@ "id": "2022-03-c-06-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15316,25 +17852,37 @@ "id": "2022-03-c-06-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15353,7 +17901,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-10" }, + "fieldset_info": { + "id": "2022-03-c-06-10" + }, "label": "How many children were continuously enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15377,7 +17927,10 @@ "id": "2022-03-c-06-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15400,25 +17953,37 @@ "id": "2022-03-c-06-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15437,7 +18002,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-11" }, + "fieldset_info": { + "id": "2022-03-c-06-11" + }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15460,7 +18027,10 @@ "id": "2022-03-c-06-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15483,25 +18053,37 @@ "id": "2022-03-c-06-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15520,7 +18102,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-12" }, + "fieldset_info": { + "id": "2022-03-c-06-12" + }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15543,7 +18127,10 @@ "id": "2022-03-c-06-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15566,25 +18153,37 @@ "id": "2022-03-c-06-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15603,7 +18202,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-13" }, + "fieldset_info": { + "id": "2022-03-c-06-13" + }, "label": "How many children were no longer enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15627,7 +18228,10 @@ "id": "2022-03-c-06-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15650,25 +18254,37 @@ "id": "2022-03-c-06-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15687,7 +18303,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-14" }, + "fieldset_info": { + "id": "2022-03-c-06-14" + }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15716,7 +18334,10 @@ "id": "2022-03-c-06-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15739,25 +18360,37 @@ "id": "2022-03-c-06-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15776,7 +18409,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-15" }, + "fieldset_info": { + "id": "2022-03-c-06-15" + }, "label": "How many children were continuously enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15800,7 +18435,10 @@ "id": "2022-03-c-06-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15823,25 +18461,37 @@ "id": "2022-03-c-06-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15860,7 +18510,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-16" }, + "fieldset_info": { + "id": "2022-03-c-06-16" + }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15883,7 +18535,10 @@ "id": "2022-03-c-06-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15906,25 +18561,37 @@ "id": "2022-03-c-06-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -15943,7 +18610,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-17" }, + "fieldset_info": { + "id": "2022-03-c-06-17" + }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15966,7 +18635,10 @@ "id": "2022-03-c-06-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -15989,25 +18661,37 @@ "id": "2022-03-c-06-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -16026,7 +18710,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-18" }, + "fieldset_info": { + "id": "2022-03-c-06-18" + }, "label": "How many children were no longer enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16050,7 +18736,10 @@ "id": "2022-03-c-06-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "questions": [ @@ -16073,25 +18762,37 @@ "id": "2022-03-c-06-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } }, { "id": "2022-03-c-06-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { "readonly": true, "entry": null } + "answer": { + "readonly": true, + "entry": null + } } ], "context_data": { @@ -16110,7 +18811,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-c-06-19" }, + "fieldset_info": { + "id": "2022-03-c-06-19" + }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16119,7 +18822,9 @@ "id": "2022-03-c-06-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "id": "2022-03-c-06", @@ -16143,8 +18848,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -16182,7 +18893,9 @@ "id": "2022-03-d-01-02-a", "label": "What information or tools do you provide families with so they can track cost sharing?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -16211,7 +18924,9 @@ "id": "2022-03-d-01-02-b", "label": "Who tracks cost sharing?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-d-01-02", @@ -16227,12 +18942,18 @@ "value": "health_plans", "label": "Health plans" }, - { "value": "states", "label": "States" }, + { + "value": "states", + "label": "States" + }, { "value": "third_party_administrator", "label": "Third party administrator" }, - { "value": "other", "label": "Other " } + { + "value": "other", + "label": "Other " + } ], "entry": "health_plans" } @@ -16241,13 +18962,17 @@ "id": "2022-03-d-01-03", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-d-01-04", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [ @@ -16268,7 +18993,9 @@ "id": "2022-03-d-01-05-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-d-01-05", @@ -16276,8 +19003,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16301,7 +19034,9 @@ "id": "2022-03-d-01-06-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-d-01-06", @@ -16309,8 +19044,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16335,19 +19076,25 @@ "id": "2022-03-d-01-07", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-d-01-08", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-d-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -16390,8 +19137,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16430,8 +19183,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -16440,7 +19199,9 @@ "id": "2022-03-e-02-03", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", "type": "text_multiline", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "This only applies to states operating an 1115 demo." }, { @@ -16449,8 +19210,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null }, @@ -16462,9 +19229,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": null }, @@ -16489,7 +19265,9 @@ "id": "2022-03-e-02-06-a", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-e-02-06", @@ -16497,8 +19275,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null }, @@ -16508,7 +19292,9 @@ "id": "2022-03-e-02-07", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2022?", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -16517,19 +19303,25 @@ "id": "2022-03-e-02-08", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-09", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-10", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", "type": "money", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -16559,9 +19351,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "label": "Child", @@ -16624,31 +19422,41 @@ "id": "2022-03-e-02-14", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-15", "label": "What challenges did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-16", "label": "What accomplishments did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-e-02-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -16684,8 +19492,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "yes" } @@ -16696,8 +19510,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16708,8 +19528,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16718,7 +19544,9 @@ "id": "2022-03-f-01-04", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "questions": [ @@ -16739,7 +19567,9 @@ "id": "2022-03-f-01-05-a", "label": "What safeguards and procedures do the Managed Care plans have in place?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-f-01-05", @@ -16747,9 +19577,18 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" }, - { "value": "na", "label": "N/A" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + }, + { + "value": "na", + "label": "N/A" + } ], "entry": "na" } @@ -16758,13 +19597,17 @@ "id": "2022-03-f-01-06", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-07", "label": "How many cases have been found in favor of the beneficiary in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "type": "fieldset", @@ -16773,13 +19616,17 @@ "id": "2022-03-f-01-08", "label": "How many cases related to provider credentialing were investigated in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-09", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ] }, @@ -16790,13 +19637,17 @@ "id": "2022-03-f-01-10", "label": "How many cases related to provider billing were investigated in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-11", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ] }, @@ -16807,13 +19658,17 @@ "id": "2022-03-f-01-12", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-03-f-01-13", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ] }, @@ -16823,7 +19678,10 @@ "type": "radio", "answer": { "options": [ - { "value": "separate_chip_only", "label": "CHIP only" }, + { + "value": "separate_chip_only", + "label": "CHIP only" + }, { "value": "medicaid_separate_chip_combined", "label": "Medicaid and CHIP combined" @@ -16851,7 +19709,9 @@ "id": "2022-03-f-01-15-a", "label": "How do you provide oversight of the contractors? ", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-f-01-15", @@ -16859,8 +19719,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16884,7 +19750,9 @@ "id": "2022-03-f-01-16-a", "label": "What specifically are the contractors responsible for in terms of oversight?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-f-01-16", @@ -16892,8 +19760,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -16902,13 +19776,17 @@ "id": "2022-03-f-01-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-f-01-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -16940,8 +19818,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -16965,7 +19849,9 @@ "id": "2022-03-g-01-02-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -16990,37 +19876,49 @@ "id": "2022-03-g-01-02-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-02-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17039,7 +19937,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-02" }, + "fieldset_info": { + "id": "2022-03-g-01-02" + }, "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17062,7 +19962,9 @@ "id": "2022-03-g-01-03-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -17087,37 +19989,49 @@ "id": "2022-03-g-01-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-03-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17136,7 +20050,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-03" }, + "fieldset_info": { + "id": "2022-03-g-01-03" + }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17165,7 +20081,9 @@ "id": "2022-03-g-01-04-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -17190,37 +20108,49 @@ "id": "2022-03-g-01-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-04-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17239,7 +20169,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-04" }, + "fieldset_info": { + "id": "2022-03-g-01-04" + }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one preventative dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17268,7 +20200,9 @@ "id": "2022-03-g-01-05-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [ @@ -17293,37 +20227,49 @@ "id": "2022-03-g-01-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-c", "label": "Ages 1-2", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-d", "label": "Ages 3-5", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-e", "label": "Ages 6-9", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-f", "label": "Ages 10-14", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-05-g", "label": "Ages 15-18", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17342,7 +20288,9 @@ "type": "fieldset" } ], - "fieldset_info": { "id": "2022-03-g-01-05" }, + "fieldset_info": { + "id": "2022-03-g-01-05" + }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2022?", "fieldset_type": "marked", "type": "fieldset", @@ -17358,7 +20306,9 @@ "id": "2022-03-g-01-06", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2022?", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "questions": [], @@ -17375,13 +20325,17 @@ "id": "2022-03-g-01-07-a", "label": "How many children were enrolled in supplemental dental coverage during FFY 2022?", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-g-01-07-b", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "type": "integer", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "This is the total number for all children between 0-18 years from question 1." }, { @@ -17415,7 +20369,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table", @@ -17442,8 +20398,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -17452,13 +20414,17 @@ "id": "2022-03-g-01-08", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-03-g-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -17500,8 +20466,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -17512,8 +20484,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" } @@ -17569,7 +20547,10 @@ "value": "Sample size was too small (fewer than 30)", "label": "Sample size was too small (fewer than 30)" }, - { "value": "other", "label": "Other" } + { + "value": "other", + "label": "Other" + } ], "entry": [ null, @@ -17582,7 +20563,9 @@ "id": "2022-03-h-02-02", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } } ], "context_data": { @@ -17621,8 +20604,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": "no" }, @@ -17642,7 +20631,9 @@ "id": "2022-03-i-02-01-01-01", "label": "What is the name of your HSI program?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-03-i-02-01-01-02", @@ -17650,8 +20641,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -17691,7 +20688,9 @@ "id": "2022-03-i-02-01-01-03", "label": "Which populations does the HSI program serve?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17710,7 +20709,9 @@ "id": "2022-03-i-02-01-01-04", "label": "How many children do you estimate are being served by the HSI program?", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17729,7 +20730,9 @@ "id": "2022-03-i-02-01-01-05", "label": "How many children in the HSI program are below your state's FPL threshold? ", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [], @@ -17791,7 +20794,9 @@ "id": "2022-03-i-02-01-01-06", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17810,7 +20815,9 @@ "id": "2022-03-i-02-01-01-07", "label": "What outcomes have you found when measuring the impact?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17829,7 +20836,9 @@ "id": "2022-03-i-02-01-01-08", "label": "Is there anything else you'd like to add about this HSI program?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "context_data": { @@ -17848,7 +20857,9 @@ "id": "2022-03-i-02-01-01-09", "label": "Optional: Attach any additional documents.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-03-i-02-01-01" @@ -17933,7 +20944,9 @@ "id": "2022-04-a-01-01-01-02-01-01", "label": "Briefly describe your goal.", "type": "text_multiline", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program." }, { @@ -17962,7 +20975,9 @@ "id": "2022-04-a-01-01-01-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-01-02-01-02", @@ -17994,14 +21009,18 @@ "id": "2022-04-a-01-01-01-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the numerator you're measuring" @@ -18013,14 +21032,18 @@ "id": "2022-04-a-01-01-01-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the denominator you're measuring" @@ -18072,25 +21095,33 @@ "id": "2022-04-a-01-01-01-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-01-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-01-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-01-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18111,7 +21142,9 @@ "id": "2022-04-a-01-01-02-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": "Increase access to care" }, + "answer": { + "entry": "Increase access to care" + }, "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan." }, { @@ -18123,7 +21156,9 @@ "id": "2022-04-a-01-01-02-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: In an effort to increase access to care for underserved populations, our goal is to increase the number of children of Hispanic ethnicity who have visited a primary care physician by 5% annually over the next five years (ending in 2028)." }, { @@ -18152,7 +21187,9 @@ "id": "2022-04-a-01-01-02-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-02-02-01-02", @@ -18184,14 +21221,18 @@ "id": "2022-04-a-01-01-02-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the numerator you're measuring" @@ -18203,14 +21244,18 @@ "id": "2022-04-a-01-01-02-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": "test" }, + "answer": { + "entry": "test" + }, "hint": "For example: The total number of children of Hispanic ethnicity enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "label": "Define the denominator you're measuring" @@ -18262,25 +21307,33 @@ "id": "2022-04-a-01-01-02-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-02-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-02-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-01-01-02-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18315,7 +21368,9 @@ "id": "2022-04-a-01-01-03-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state." }, { @@ -18344,7 +21399,9 @@ "id": "2022-04-a-01-01-03-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-03-02-01-02", @@ -18376,14 +21433,18 @@ "id": "2022-04-a-01-01-03-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year." }, { "id": "2022-04-a-01-01-03-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18395,14 +21456,18 @@ "id": "2022-04-a-01-01-03-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: The total number of rural children enrolled in CHIP." }, { "id": "2022-04-a-01-01-03-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -18454,25 +21519,33 @@ "id": "2022-04-a-01-01-03-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-03-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-03-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-03-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18493,7 +21566,9 @@ "id": "2022-04-a-01-01-04-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18504,7 +21579,9 @@ "id": "2022-04-a-01-01-04-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18532,7 +21609,9 @@ "id": "2022-04-a-01-01-04-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-04-02-01-02", @@ -18564,13 +21643,17 @@ "id": "2022-04-a-01-01-04-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18582,13 +21665,17 @@ "id": "2022-04-a-01-01-04-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -18640,25 +21727,33 @@ "id": "2022-04-a-01-01-04-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-04-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18679,7 +21774,9 @@ "id": "2022-04-a-01-01-05-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18690,7 +21787,9 @@ "id": "2022-04-a-01-01-05-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18718,7 +21817,9 @@ "id": "2022-04-a-01-01-05-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-05-02-01-02", @@ -18750,13 +21851,17 @@ "id": "2022-04-a-01-01-05-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18768,13 +21873,17 @@ "id": "2022-04-a-01-01-05-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -18826,25 +21935,33 @@ "id": "2022-04-a-01-01-05-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-05-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -18865,7 +21982,9 @@ "id": "2022-04-a-01-01-06-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18876,7 +21995,9 @@ "id": "2022-04-a-01-01-06-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "questions": [ @@ -18904,7 +22025,9 @@ "id": "2022-04-a-01-01-06-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-04-a-01-01-06-02-01-02", @@ -18936,13 +22059,17 @@ "id": "2022-04-a-01-01-06-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the numerator you're measuring" @@ -18954,14 +22081,18 @@ "id": "2022-04-a-01-01-06-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: The total number of eligible children in the last federal fiscal year." }, { "id": "2022-04-a-01-01-06-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "label": "Define the denominator you're measuring" @@ -19013,25 +22144,33 @@ "id": "2022-04-a-01-01-06-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2022-04-a-01-01-06-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "Optional" } ], @@ -19060,25 +22199,33 @@ "id": "2022-04-a-02-01", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-02-02", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-02-03", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care equity, special health care needs, or other emerging health care needs.) What have you discovered through this research?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-04-a-02-04", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "hint": "For example: studies, analyses, or any other documents that address your performance goals." } ], @@ -19130,25 +22277,33 @@ "id": "2022-05-a-01-01-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-01-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-01-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-01" }, + "fieldset_info": { + "id": "2022-05-a-01-01" + }, "label": "How much did you spend on Managed Care in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19163,25 +22318,33 @@ "id": "2022-05-a-01-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-02-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-02" }, + "fieldset_info": { + "id": "2022-05-a-01-02" + }, "label": "How much did you spend on Fee for Service in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19196,25 +22359,33 @@ "id": "2022-05-a-01-03-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-03-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-03-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-03" }, + "fieldset_info": { + "id": "2022-05-a-01-03" + }, "label": "How much did you spend on anything else related to benefit costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19229,25 +22400,33 @@ "id": "2022-05-a-01-04-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-04-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-01-04-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-01-04" }, + "fieldset_info": { + "id": "2022-05-a-01-04" + }, "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19257,7 +22436,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -19278,7 +22459,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -19299,7 +22482,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -19343,7 +22528,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["sum"], "targets": [ @@ -19374,10 +22561,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "label": "Table 1: Benefits Costs", @@ -19402,25 +22597,33 @@ "id": "2022-05-a-02-01-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-01-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-01-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-01" }, + "fieldset_info": { + "id": "2022-05-a-02-01" + }, "label": "How much did you spend on personnel in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -19436,25 +22639,33 @@ "id": "2022-05-a-02-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-02-b", "label": "2023", "type": "money", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } }, { "id": "2022-05-a-02-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-02" }, + "fieldset_info": { + "id": "2022-05-a-02-02" + }, "label": "How much did you spend on general administration in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19469,25 +22680,33 @@ "id": "2022-05-a-02-03-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-03-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-03-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-03" }, + "fieldset_info": { + "id": "2022-05-a-02-03" + }, "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19502,25 +22721,33 @@ "id": "2022-05-a-02-04-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-04-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-04-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-04" }, + "fieldset_info": { + "id": "2022-05-a-02-04" + }, "label": "How much did you spend on claims processing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19535,25 +22762,33 @@ "id": "2022-05-a-02-05-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-05-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-05-c", "label": "2024", "type": "money", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-05" }, + "fieldset_info": { + "id": "2022-05-a-02-05" + }, "label": "How much did you spend on outreach and marketing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19568,25 +22803,33 @@ "id": "2022-05-a-02-06-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-06-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-06-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-06" }, + "fieldset_info": { + "id": "2022-05-a-02-06" + }, "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19601,25 +22844,33 @@ "id": "2022-05-a-02-07-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-07-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-02-07-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-02-07" }, + "fieldset_info": { + "id": "2022-05-a-02-07" + }, "label": "How much did you spend on anything else related to administrative costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -19629,7 +22880,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -19650,7 +22903,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -19671,7 +22926,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -19692,7 +22949,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -19713,7 +22972,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -19734,7 +22995,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -19755,7 +23018,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -19776,7 +23041,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -19815,7 +23082,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "formula": "(<0> + <1> + <2> - <3>) / 9", "$comment": "This should equal the total benefit cost calculated above, then divided by 9", @@ -19852,10 +23121,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "label": "Table 2: Administrative Costs", @@ -19868,7 +23145,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", "$comment": "Total benefit costs 2022 + total admin costs 2022", @@ -19925,31 +23204,49 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2022" }], + "targets": [ + { + "lookupFmapFy": "2022" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2023" }], + "targets": [ + { + "lookupFmapFy": "2023" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2024" }], + "targets": [ + { + "lookupFmapFy": "2024" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -19968,7 +23265,9 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -19987,7 +23286,9 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -20003,7 +23304,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", "$comment": "Total program costs - federal share", @@ -20020,7 +23323,9 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -20050,7 +23355,9 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2023" }, + { + "lookupFmapFy": "2023" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -20080,7 +23387,9 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2024" }, + { + "lookupFmapFy": "2024" + }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -20097,10 +23406,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "label": "Table 3: Federal and State Shares", @@ -20127,7 +23444,9 @@ "id": "2022-05-a-02-08-a", "label": "What other type of funding did you receive?", "type": "text", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-05-a-02-08", @@ -20159,7 +23478,10 @@ "value": "tobacco settlement", "label": "Tobacco settlement" }, - { "value": "other", "label": "Other" } + { + "value": "other", + "label": "Other" + } ], "entry": [null, "state appropriations"] }, @@ -20184,7 +23506,9 @@ "id": "2022-05-a-02-09-a", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", "type": "text_multiline", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-05-a-02-09", @@ -20192,8 +23516,14 @@ "type": "radio", "answer": { "options": [ - { "value": "yes", "label": "Yes" }, - { "value": "no", "label": "No" } + { + "value": "yes", + "label": "Yes" + }, + { + "value": "no", + "label": "No" + } ], "entry": null } @@ -20215,25 +23545,33 @@ "id": "2022-05-a-03-01-a", "label": "2022", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-01-b", "label": "2023", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-01-c", "label": "2024", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-03-01" }, + "fieldset_info": { + "id": "2022-05-a-03-01" + }, "label": "How many children were eligible for managed care in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -20248,25 +23586,33 @@ "id": "2022-05-a-03-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-02-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-03-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-03-02" }, + "fieldset_info": { + "id": "2022-05-a-03-02" + }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -20277,7 +23623,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -20298,7 +23646,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -20320,10 +23670,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "fieldset_type": "synthesized_table", @@ -20347,25 +23705,33 @@ "id": "2022-05-a-04-01-a", "label": "2022", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-01-b", "label": "2023", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-01-c", "label": "2024", "type": "integer", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-04-01" }, + "fieldset_info": { + "id": "2022-05-a-04-01" + }, "label": "How many children were eligible for fee for service in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -20380,25 +23746,33 @@ "id": "2022-05-a-04-02-a", "label": "2022", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-02-b", "label": "2023", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-04-02-c", "label": "2024", "type": "money", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2022-05-a-04-02" }, + "fieldset_info": { + "id": "2022-05-a-04-02" + }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee for service in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -20409,7 +23783,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -20430,7 +23806,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -20452,10 +23830,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2022" }, - { "contents": "FFY 2023" }, - { "contents": "FFY 2024" } + { + "contents": "" + }, + { + "contents": "FFY 2022" + }, + { + "contents": "FFY 2023" + }, + { + "contents": "FFY 2024" + } ] }, "fieldset_type": "synthesized_table", @@ -20474,13 +23860,17 @@ "id": "2022-05-a-05-01", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", "type": "text_multiline", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2022-05-a-05-02", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-05-a-05" @@ -20519,37 +23909,49 @@ "id": "2022-06-a-01-01", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-02", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2022?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-03", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2022?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-04", "label": "What changes have you made to your CHIP program in FFY 2022 or plan to make in FFY 2023? Why have you decided to make these changes?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-05", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", "type": "text_multiline", - "answer": { "entry": "test" } + "answer": { + "entry": "test" + } }, { "id": "2022-06-a-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "id": "2022-06-a-01" @@ -20638,19 +24040,25 @@ "id": "2021-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { "entry": "Tester" } + "answer": { + "entry": "Tester" + } }, { "id": "2021-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { "entry": "Director" } + "answer": { + "entry": "Director" + } }, { "id": "2021-00-a-01-06", "type": "email", "label": "Email:", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2021-00-a-01-07", @@ -20665,7 +24073,9 @@ "id": "2021-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { "entry": "123-456-7890" } + "answer": { + "entry": "123-456-7890" + } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -20714,8 +24124,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20723,7 +24139,9 @@ "id": "2021-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20747,8 +24165,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20762,8 +24186,14 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -20800,7 +24230,9 @@ "id": "2021-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20840,8 +24272,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20879,7 +24317,9 @@ "id": "2021-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20900,7 +24340,9 @@ "id": "2021-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } }, { "id": "2021-01-a-01-05", @@ -20910,12 +24352,18 @@ "answer": { "entry": [null, "pccm"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -20923,7 +24371,9 @@ "id": "2021-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -20946,8 +24396,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20955,7 +24411,9 @@ "id": "2021-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -20979,8 +24437,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -20994,8 +24458,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -21037,7 +24507,9 @@ "id": "2021-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -21077,8 +24549,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -21121,7 +24599,9 @@ "id": "2021-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { "entry": "312" }, + "answer": { + "entry": "312" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -21154,12 +24634,18 @@ "answer": { "entry": [null, "ffs"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -21167,7 +24653,9 @@ "id": "2021-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -21188,9 +24676,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21204,9 +24701,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21221,9 +24727,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21238,9 +24753,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21254,9 +24778,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21271,12 +24804,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2021-01-a-03-07", @@ -21286,12 +24830,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2021-01-a-03-08", @@ -21301,12 +24856,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2021-01-a-03-09", @@ -21316,9 +24882,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21332,9 +24907,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21349,9 +24933,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21366,12 +24959,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2021-01-a-03-13", @@ -21380,9 +24984,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21396,9 +25009,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21412,9 +25034,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21428,12 +25059,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -21453,9 +25095,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] } } @@ -21514,9 +25165,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21530,9 +25190,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21547,9 +25216,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21564,9 +25242,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21580,9 +25267,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21597,12 +25293,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2021-01-a-04-07", @@ -21612,12 +25319,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2021-01-a-04-08", @@ -21627,12 +25345,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2021-01-a-04-09", @@ -21642,12 +25371,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Crowd-out policies" } + "context_data": { + "bullet_text": "Crowd-out policies" + } }, { "id": "2021-01-a-04-10", @@ -21656,9 +25396,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21672,9 +25421,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21689,9 +25447,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21706,12 +25473,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2021-01-a-04-14", @@ -21720,9 +25498,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21737,9 +25524,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21754,9 +25550,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21770,9 +25575,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21786,9 +25600,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -21802,12 +25625,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -21827,8 +25661,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -21956,7 +25796,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2015" }, + { + "contents": "2015" + }, { "lookupAcs": { "ffy": "2015", @@ -21983,7 +25825,9 @@ } ], [ - { "contents": "2016" }, + { + "contents": "2016" + }, { "lookupAcs": { "ffy": "2016", @@ -22010,7 +25854,9 @@ } ], [ - { "contents": "2017" }, + { + "contents": "2017" + }, { "lookupAcs": { "ffy": "2017", @@ -22037,7 +25883,9 @@ } ], [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -22064,7 +25912,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -22092,13 +25942,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "fieldset_type": "synthesized_table" @@ -22119,7 +25977,9 @@ ] ], "headers": [ - { "contents": "Percent change between 2018 and 2019" } + { + "contents": "Percent change between 2018 and 2019" + } ] }, "fieldset_type": "synthesized_table" @@ -22139,8 +25999,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22148,7 +26014,9 @@ "id": "2021-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22172,8 +26040,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22184,7 +26058,9 @@ "id": "2021-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-b", @@ -22199,37 +26075,49 @@ "id": "2021-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -22252,13 +26140,17 @@ "id": "2021-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -22298,8 +26190,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22334,8 +26232,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22343,7 +26247,9 @@ "id": "2021-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22373,13 +26279,17 @@ "id": "2021-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -22402,9 +26312,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22412,7 +26331,9 @@ "id": "2021-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22436,9 +26357,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22446,7 +26376,9 @@ "id": "2021-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { "entry": "BCBS of AL enrollment database" }, + "answer": { + "entry": "BCBS of AL enrollment database" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22467,7 +26399,9 @@ "id": "2021-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { "entry": "4.11" } + "answer": { + "entry": "4.11" + } }, { "type": "fieldset", @@ -22479,9 +26413,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22492,7 +26435,9 @@ "id": "2021-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -22513,7 +26458,9 @@ "id": "2021-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22532,7 +26479,9 @@ "id": "2021-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22551,7 +26500,9 @@ "id": "2021-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -22581,13 +26532,17 @@ "id": "2021-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } }, { "id": "2021-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -22612,9 +26567,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -22625,13 +26589,17 @@ "id": "2021-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -22657,8 +26625,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -22669,8 +26643,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -22681,7 +26661,9 @@ "id": "2021-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-c-01-03-b", @@ -22736,7 +26718,9 @@ "id": "2021-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } } ] }, @@ -22750,27 +26734,35 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { "entry": "4283" } + "answer": { + "entry": "4283" + } }, { "id": "2021-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { "entry": "500" } + "answer": { + "entry": "500" + } }, { "id": "2021-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { "entry": "3484" }, + "answer": { + "entry": "3484" + }, "questions": [ { "id": "2021-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { "entry": "299" } + "answer": { + "entry": "299" + } } ] }, @@ -22778,7 +26770,9 @@ "id": "2021-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2021-03-c-02-05", @@ -22796,7 +26790,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-01')].answer.entry" @@ -22811,7 +26807,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-02')].answer.entry" @@ -22826,7 +26824,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-03')].answer.entry" @@ -22841,7 +26841,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-04')].answer.entry" @@ -22857,9 +26859,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -22876,26 +26884,34 @@ "id": "2021-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { "entry": "145390" } + "answer": { + "entry": "145390" + } }, { "id": "2021-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "131011" } + "answer": { + "entry": "131011" + } }, { "id": "2021-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { "entry": "113009" } + "answer": { + "entry": "113009" + } }, { "id": "2021-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { "entry": "17989" }, + "answer": { + "entry": "17989" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -22916,20 +26932,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "id": "2021-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "15242" } + "answer": { + "entry": "15242" + } }, { "id": "2021-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "854" } + "answer": { + "entry": "854" + } } ] }, @@ -22937,7 +26959,9 @@ "id": "2021-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -22999,9 +27023,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23083,9 +27113,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23102,26 +27138,34 @@ "id": "2021-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { "entry": "463373" } + "answer": { + "entry": "463373" + } }, { "id": "2021-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "438232" } + "answer": { + "entry": "438232" + } }, { "id": "2021-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { "entry": "413500" } + "answer": { + "entry": "413500" + } }, { "id": "2021-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { "entry": "24718" }, + "answer": { + "entry": "24718" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -23142,20 +27186,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "559" } + "answer": { + "entry": "559" + } }, { "id": "2021-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "23489" } + "answer": { + "entry": "23489" + } }, { "id": "2021-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "670" } + "answer": { + "entry": "670" + } } ] }, @@ -23163,7 +27213,9 @@ "id": "2021-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -23225,9 +27277,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23309,9 +27367,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -23356,8 +27420,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -23374,7 +27444,9 @@ "id": "2021-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23410,25 +27482,33 @@ "id": "2021-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "919" } + "answer": { + "entry": "919" + } }, { "id": "2021-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "2265" } + "answer": { + "entry": "2265" + } }, { "id": "2021-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5710" } + "answer": { + "entry": "5710" + } }, { "id": "2021-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4958" } + "answer": { + "entry": "4958" + } } ], "context_data": { @@ -23446,7 +27526,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-03" }, + "fieldset_info": { + "id": "2021-03-c-05-03" + }, "fieldset_type": "marked" }, { @@ -23463,7 +27545,9 @@ "id": "2021-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23499,25 +27583,33 @@ "id": "2021-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "909" } + "answer": { + "entry": "909" + } }, { "id": "2021-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "22213" } + "answer": { + "entry": "22213" + } }, { "id": "2021-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5451" } + "answer": { + "entry": "5451" + } }, { "id": "2021-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4445" } + "answer": { + "entry": "4445" + } } ], "context_data": { @@ -23535,7 +27627,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-04" }, + "fieldset_info": { + "id": "2021-03-c-05-04" + }, "fieldset_type": "marked" }, { @@ -23546,7 +27640,9 @@ "id": "2021-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23582,25 +27678,33 @@ "id": "2021-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -23618,7 +27722,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-05" }, + "fieldset_info": { + "id": "2021-03-c-05-05" + }, "fieldset_type": "marked" }, { @@ -23629,7 +27735,9 @@ "id": "2021-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23665,25 +27773,33 @@ "id": "2021-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -23701,7 +27817,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-06" }, + "fieldset_info": { + "id": "2021-03-c-05-06" + }, "fieldset_type": "marked" }, { @@ -23713,7 +27831,9 @@ "id": "2021-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23749,25 +27869,33 @@ "id": "2021-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "10" } + "answer": { + "entry": "10" + } }, { "id": "2021-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "44" } + "answer": { + "entry": "44" + } }, { "id": "2021-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "257" } + "answer": { + "entry": "257" + } }, { "id": "2021-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "510" } + "answer": { + "entry": "510" + } } ], "context_data": { @@ -23785,7 +27913,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-07" }, + "fieldset_info": { + "id": "2021-03-c-05-07" + }, "fieldset_type": "marked" }, { @@ -23796,7 +27926,9 @@ "id": "2021-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23832,25 +27964,33 @@ "id": "2021-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "145" } + "answer": { + "entry": "145" + } }, { "id": "2021-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "447" } + "answer": { + "entry": "447" + } } ], "context_data": { @@ -23868,14 +28008,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-08" }, + "fieldset_info": { + "id": "2021-03-c-05-08" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -23892,7 +28036,10 @@ "id": "2021-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -23928,25 +28075,37 @@ "id": "2021-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -23964,7 +28123,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-10" }, + "fieldset_info": { + "id": "2021-03-c-05-10" + }, "fieldset_type": "marked" }, { @@ -23975,90 +28136,110 @@ "id": "2021-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["yes", null], - "noninteractive": ["yes", null] - } - } - } - } - }, - { - "type": "fieldset", - "questions": [ - { - "type": "fieldset", - "label": "Total for all ages (0-16)", - "questions": [], - "fieldset_info": { - "actions": ["sum"], - "targets": [ - "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-03-c-05-11-b", - "type": "integer", - "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } - }, - { - "id": "2021-03-c-05-11-c", - "type": "integer", - "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } - }, - { - "id": "2021-03-c-05-11-d", - "type": "integer", - "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } - }, - { - "id": "2021-03-c-05-11-e", - "type": "integer", - "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } - } - ], - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["no"], - "noninteractive": ["no", null] - } - } - } + "answer": { + "entry": null, + "readonly": true + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + } + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { + "entry": null, + "readonly": true + } + }, + { + "id": "2021-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { + "entry": null, + "readonly": true + } + }, + { + "id": "2021-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { + "entry": null, + "readonly": true + } + }, + { + "id": "2021-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { + "entry": null, + "readonly": true + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { + "id": "2021-03-c-05-11" + }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2021-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { + "entry": null, + "readonly": true }, - "fieldset_type": "datagrid" - } - ], - "fieldset_info": { "id": "2021-03-c-05-11" }, - "fieldset_type": "marked" - }, - { - "type": "fieldset", - "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", - "questions": [ - { - "id": "2021-03-c-05-12-a", - "type": "integer", - "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24094,25 +28275,37 @@ "id": "2021-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24130,7 +28323,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-12" }, + "fieldset_info": { + "id": "2021-03-c-05-12" + }, "fieldset_type": "marked" }, { @@ -24142,7 +28337,10 @@ "id": "2021-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24178,25 +28376,37 @@ "id": "2021-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24214,7 +28424,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-13" }, + "fieldset_info": { + "id": "2021-03-c-05-13" + }, "fieldset_type": "marked" }, { @@ -24225,7 +28437,10 @@ "id": "2021-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24261,25 +28476,37 @@ "id": "2021-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24297,7 +28524,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-14" }, + "fieldset_info": { + "id": "2021-03-c-05-14" + }, "fieldset_type": "marked" }, { @@ -24315,7 +28544,10 @@ "id": "2021-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24351,25 +28583,37 @@ "id": "2021-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24387,7 +28631,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-15" }, + "fieldset_info": { + "id": "2021-03-c-05-15" + }, "fieldset_type": "marked" }, { @@ -24398,7 +28644,10 @@ "id": "2021-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24434,25 +28683,37 @@ "id": "2021-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24470,7 +28731,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-16" }, + "fieldset_info": { + "id": "2021-03-c-05-16" + }, "fieldset_type": "marked" }, { @@ -24481,7 +28744,10 @@ "id": "2021-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24517,25 +28783,37 @@ "id": "2021-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24553,7 +28831,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-17" }, + "fieldset_info": { + "id": "2021-03-c-05-17" + }, "fieldset_type": "marked" }, { @@ -24565,7 +28845,10 @@ "id": "2021-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24601,25 +28884,37 @@ "id": "2021-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24637,7 +28932,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-18" }, + "fieldset_info": { + "id": "2021-03-c-05-18" + }, "fieldset_type": "marked" }, { @@ -24648,7 +28945,10 @@ "id": "2021-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24684,25 +28984,37 @@ "id": "2021-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -24720,14 +29032,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-05-19" }, + "fieldset_info": { + "id": "2021-03-c-05-19" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -24769,8 +29085,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -24787,7 +29109,9 @@ "id": "2021-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24823,25 +29147,33 @@ "id": "2021-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "127630" } + "answer": { + "entry": "127630" + } }, { "id": "2021-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "7311" } + "answer": { + "entry": "7311" + } }, { "id": "2021-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9418" } + "answer": { + "entry": "9418" + } }, { "id": "2021-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4527" } + "answer": { + "entry": "4527" + } } ], "context_data": { @@ -24859,7 +29191,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-03" }, + "fieldset_info": { + "id": "2021-03-c-06-03" + }, "fieldset_type": "marked" }, { @@ -24876,7 +29210,9 @@ "id": "2021-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24912,25 +29248,33 @@ "id": "2021-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12237" } + "answer": { + "entry": "12237" + } }, { "id": "2021-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "70464" } + "answer": { + "entry": "70464" + } }, { "id": "2021-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9159" } + "answer": { + "entry": "9159" + } }, { "id": "2021-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3821" } + "answer": { + "entry": "3821" + } } ], "context_data": { @@ -24948,7 +29292,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-04" }, + "fieldset_info": { + "id": "2021-03-c-06-04" + }, "fieldset_type": "marked" }, { @@ -24959,7 +29305,9 @@ "id": "2021-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24995,25 +29343,33 @@ "id": "2021-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2021-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2021-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2021-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } } ], "context_data": { @@ -25031,7 +29387,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-05" }, + "fieldset_info": { + "id": "2021-03-c-06-05" + }, "fieldset_type": "marked" }, { @@ -25042,7 +29400,9 @@ "id": "2021-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25078,25 +29438,33 @@ "id": "2021-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2021-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2021-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2021-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "88" } + "answer": { + "entry": "88" + } } ], "context_data": { @@ -25114,7 +29482,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-06" }, + "fieldset_info": { + "id": "2021-03-c-06-06" + }, "fieldset_type": "marked" }, { @@ -25126,7 +29496,9 @@ "id": "2021-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25162,25 +29534,33 @@ "id": "2021-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "439" } + "answer": { + "entry": "439" + } }, { "id": "2021-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "229" } + "answer": { + "entry": "229" + } }, { "id": "2021-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "236" } + "answer": { + "entry": "236" + } }, { "id": "2021-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "698" } + "answer": { + "entry": "698" + } } ], "context_data": { @@ -25198,7 +29578,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-07" }, + "fieldset_info": { + "id": "2021-03-c-06-07" + }, "fieldset_type": "marked" }, { @@ -25209,7 +29591,9 @@ "id": "2021-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25245,25 +29629,33 @@ "id": "2021-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2021-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2021-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "46" } + "answer": { + "entry": "46" + } }, { "id": "2021-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } } ], "context_data": { @@ -25281,14 +29673,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-08" }, + "fieldset_info": { + "id": "2021-03-c-06-08" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "No. yes added more " } + "answer": { + "entry": "No. yes added more " + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -25305,7 +29701,10 @@ "id": "2021-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25341,25 +29740,37 @@ "id": "2021-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25377,7 +29788,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-10" }, + "fieldset_info": { + "id": "2021-03-c-06-10" + }, "fieldset_type": "marked" }, { @@ -25388,7 +29801,10 @@ "id": "2021-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25424,25 +29840,37 @@ "id": "2021-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25460,7 +29888,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-11" }, + "fieldset_info": { + "id": "2021-03-c-06-11" + }, "fieldset_type": "marked" }, { @@ -25471,7 +29901,10 @@ "id": "2021-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25507,25 +29940,37 @@ "id": "2021-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25543,7 +29988,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-12" }, + "fieldset_info": { + "id": "2021-03-c-06-12" + }, "fieldset_type": "marked" }, { @@ -25555,7 +30002,10 @@ "id": "2021-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25591,25 +30041,37 @@ "id": "2021-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25627,7 +30089,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-13" }, + "fieldset_info": { + "id": "2021-03-c-06-13" + }, "fieldset_type": "marked" }, { @@ -25638,7 +30102,10 @@ "id": "2021-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25674,25 +30141,37 @@ "id": "2021-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25710,7 +30189,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-14" }, + "fieldset_info": { + "id": "2021-03-c-06-14" + }, "fieldset_type": "marked" }, { @@ -25728,7 +30209,10 @@ "id": "2021-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25764,25 +30248,37 @@ "id": "2021-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25800,7 +30296,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-15" }, + "fieldset_info": { + "id": "2021-03-c-06-15" + }, "fieldset_type": "marked" }, { @@ -25811,7 +30309,10 @@ "id": "2021-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25847,25 +30348,37 @@ "id": "2021-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25883,7 +30396,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-16" }, + "fieldset_info": { + "id": "2021-03-c-06-16" + }, "fieldset_type": "marked" }, { @@ -25894,7 +30409,10 @@ "id": "2021-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -25930,25 +30448,37 @@ "id": "2021-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -25966,7 +30496,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-17" }, + "fieldset_info": { + "id": "2021-03-c-06-17" + }, "fieldset_type": "marked" }, { @@ -25978,7 +30510,10 @@ "id": "2021-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26014,25 +30549,37 @@ "id": "2021-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -26050,7 +30597,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-18" }, + "fieldset_info": { + "id": "2021-03-c-06-18" + }, "fieldset_type": "marked" }, { @@ -26061,7 +30610,10 @@ "id": "2021-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26097,25 +30649,37 @@ "id": "2021-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2021-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -26133,14 +30697,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-c-06-19" }, + "fieldset_info": { + "id": "2021-03-c-06-19" + }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -26163,8 +30731,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26186,12 +30760,18 @@ "label": "Health plans", "value": "health_plans" }, - { "label": "States", "value": "states" }, + { + "label": "States", + "value": "states" + }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { "label": "Other ", "value": "other" } + { + "label": "Other ", + "value": "other" + } ] }, "questions": [ @@ -26231,7 +30811,9 @@ "id": "2021-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26270,7 +30852,9 @@ "id": "2021-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-d-01-05", @@ -26279,8 +30863,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26288,7 +30878,9 @@ "id": "2021-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26312,8 +30904,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26321,7 +30919,9 @@ "id": "2021-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26366,13 +30966,17 @@ "id": "2021-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -26415,8 +31019,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -26456,8 +31066,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26466,7 +31082,9 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-04", @@ -26476,9 +31094,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -26490,9 +31117,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -26504,9 +31140,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -26514,7 +31159,9 @@ "id": "2021-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26535,7 +31182,9 @@ "id": "2021-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -26544,19 +31193,25 @@ "id": "2021-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -26589,9 +31244,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "fieldset_type": "synthesized_table" @@ -26651,31 +31312,41 @@ "id": "2021-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -26712,8 +31383,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26724,8 +31401,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26736,8 +31419,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26756,9 +31445,18 @@ "answer": { "entry": "na", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -26766,7 +31464,9 @@ "id": "2021-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26787,13 +31487,17 @@ "id": "2021-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2021-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "type": "fieldset", @@ -26802,13 +31506,17 @@ "id": "2021-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2021-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -26819,13 +31527,17 @@ "id": "2021-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { "entry": "19" } + "answer": { + "entry": "19" + } }, { "id": "2021-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -26836,13 +31548,17 @@ "id": "2021-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2021-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -26853,7 +31569,10 @@ "answer": { "entry": "separate_chip_only", "options": [ - { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "CHIP only", + "value": "separate_chip_only" + }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -26868,8 +31587,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26903,8 +31628,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -26912,7 +31643,9 @@ "id": "2021-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26933,13 +31666,17 @@ "id": "2021-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "Only Separate CHIP reported." } + "answer": { + "entry": "Only Separate CHIP reported." + } }, { "id": "2021-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -26973,8 +31710,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -26986,7 +31729,9 @@ "id": "2021-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27024,37 +31769,49 @@ "id": "2021-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "1915" } + "answer": { + "entry": "1915" + } }, { "id": "2021-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "8659" } + "answer": { + "entry": "8659" + } }, { "id": "2021-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "15546" } + "answer": { + "entry": "15546" + } }, { "id": "2021-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "21088" } + "answer": { + "entry": "21088" + } }, { "id": "2021-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "26998" } + "answer": { + "entry": "26998" + } }, { "id": "2021-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "19934" } + "answer": { + "entry": "19934" + } } ], "context_data": { @@ -27072,7 +31829,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-02" }, + "fieldset_info": { + "id": "2021-03-g-01-02" + }, "fieldset_type": "marked" }, { @@ -27083,7 +31842,9 @@ "id": "2021-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27121,37 +31882,49 @@ "id": "2021-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "24" } + "answer": { + "entry": "24" + } }, { "id": "2021-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "2238" } + "answer": { + "entry": "2238" + } }, { "id": "2021-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8868" } + "answer": { + "entry": "8868" + } }, { "id": "2021-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "14543" } + "answer": { + "entry": "14543" + } }, { "id": "2021-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "17462" } + "answer": { + "entry": "17462" + } }, { "id": "2021-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "11415" } + "answer": { + "entry": "11415" + } } ], "context_data": { @@ -27169,7 +31942,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-03" }, + "fieldset_info": { + "id": "2021-03-g-01-03" + }, "fieldset_type": "marked" }, { @@ -27186,7 +31961,9 @@ "id": "2021-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27224,37 +32001,49 @@ "id": "2021-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2021-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "1997" } + "answer": { + "entry": "1997" + } }, { "id": "2021-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8504" } + "answer": { + "entry": "8504" + } }, { "id": "2021-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "13966" } + "answer": { + "entry": "13966" + } }, { "id": "2021-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "16828" } + "answer": { + "entry": "16828" + } }, { "id": "2021-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "10639" } + "answer": { + "entry": "10639" + } } ], "context_data": { @@ -27272,7 +32061,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-04" }, + "fieldset_info": { + "id": "2021-03-g-01-04" + }, "fieldset_type": "marked" }, { @@ -27289,7 +32080,9 @@ "id": "2021-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27327,37 +32120,49 @@ "id": "2021-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12" } + "answer": { + "entry": "12" + } }, { "id": "2021-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "117" } + "answer": { + "entry": "117" + } }, { "id": "2021-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "2133" } + "answer": { + "entry": "2133" + } }, { "id": "2021-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "5991" } + "answer": { + "entry": "5991" + } }, { "id": "2021-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "5931" } + "answer": { + "entry": "5931" + } }, { "id": "2021-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "4883" } + "answer": { + "entry": "4883" + } } ], "context_data": { @@ -27375,7 +32180,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-03-g-01-05" }, + "fieldset_info": { + "id": "2021-03-g-01-05" + }, "fieldset_type": "marked" }, { @@ -27388,7 +32195,9 @@ "id": "2021-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -27403,8 +32212,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -27415,14 +32230,18 @@ "id": "2021-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -27456,7 +32275,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table" @@ -27482,13 +32303,17 @@ "id": "2021-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27515,8 +32340,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -27527,8 +32358,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -27560,7 +32397,9 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-h-02-02", @@ -27573,12 +32412,18 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { "label": "Separate CHIP", "value": "separate chip" }, + { + "label": "Separate CHIP", + "value": "separate chip" + }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27590,13 +32435,17 @@ "id": "2021-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27631,9 +32480,18 @@ "answer": { "entry": "5.0H", "options": [ - { "label": "CAHPS 5.0", "value": "5.0" }, - { "label": "CAHPS 5.0H", "value": "5.0H" }, - { "label": "Other", "value": "other" } + { + "label": "CAHPS 5.0", + "value": "5.0" + }, + { + "label": "CAHPS 5.0H", + "value": "5.0H" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27645,7 +32503,9 @@ "id": "2021-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27672,12 +32532,18 @@ "answer": { "entry": [null, "chronic"], "options": [ - { "label": "None", "value": "none" }, + { + "label": "None", + "value": "none" + }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27685,7 +32551,9 @@ "id": "2021-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27714,8 +32582,14 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { "label": "HRQ CAHPS", "value": "hrq cahps" }, - { "label": "Other", "value": "other" } + { + "label": "HRQ CAHPS", + "value": "hrq cahps" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -27727,7 +32601,9 @@ "id": "2021-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27750,7 +32626,9 @@ "id": "2021-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } } ], "context_data": { @@ -27822,7 +32700,10 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -27830,7 +32711,9 @@ "id": "2021-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -27868,8 +32751,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -27903,8 +32792,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -27951,7 +32846,9 @@ "id": "2021-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27970,7 +32867,9 @@ "id": "2021-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28095,7 +32994,9 @@ "id": "2021-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28226,7 +33127,9 @@ "id": "2021-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28267,7 +33170,9 @@ "id": "2021-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "30669" } + "answer": { + "entry": "30669" + } } ] }, @@ -28288,7 +33193,9 @@ "id": "2021-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1127906" } + "answer": { + "entry": "1127906" + } } ] }, @@ -28355,14 +33262,18 @@ "id": "2021-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -28406,7 +33317,9 @@ "id": "2021-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28447,7 +33360,9 @@ "id": "2021-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "13922" } + "answer": { + "entry": "13922" + } } ] }, @@ -28468,7 +33383,9 @@ "id": "2021-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "359680" } + "answer": { + "entry": "359680" + } } ] }, @@ -28535,14 +33452,18 @@ "id": "2021-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -28586,7 +33507,9 @@ "id": "2021-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28627,7 +33550,9 @@ "id": "2021-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "16747" } + "answer": { + "entry": "16747" + } } ] }, @@ -28648,7 +33573,9 @@ "id": "2021-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "351278" } + "answer": { + "entry": "351278" + } } ] }, @@ -28715,14 +33642,18 @@ "id": "2021-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -28740,7 +33671,9 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": "Increase Access to Care" } + "answer": { + "entry": "Increase Access to Care" + } }, { "id": "2021-04-a-01-01-02-02", @@ -28786,7 +33719,9 @@ "id": "2021-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28827,7 +33762,9 @@ "id": "2021-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "78593" } + "answer": { + "entry": "78593" + } } ] }, @@ -28848,7 +33785,9 @@ "id": "2021-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "78908" } + "answer": { + "entry": "78908" + } } ] }, @@ -28915,14 +33854,18 @@ "id": "2021-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -28966,7 +33909,9 @@ "id": "2021-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29007,7 +33952,9 @@ "id": "2021-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "1329" } + "answer": { + "entry": "1329" + } } ] }, @@ -29028,7 +33975,9 @@ "id": "2021-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1338" } + "answer": { + "entry": "1338" + } } ] }, @@ -29095,14 +34044,18 @@ "id": "2021-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -29146,7 +34099,9 @@ "id": "2021-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29187,7 +34142,9 @@ "id": "2021-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "10464" } + "answer": { + "entry": "10464" + } } ] }, @@ -29208,7 +34165,9 @@ "id": "2021-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "10776" } + "answer": { + "entry": "10776" + } } ] }, @@ -29275,14 +34234,18 @@ "id": "2021-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -29326,193 +34289,205 @@ "id": "2021-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", - "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", - "values": { - "interactive": [ - null, - "goal_continuing", - "goal_new" - ], - "noninteractive": [ - "goal_continuing", - "goal_new" - ] - } - } - } - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the numerator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-03", - "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-04", - "type": "integer", - "label": "Numerator (total number)", - "answer": { "entry": "53395" } - } - ] - }, - { - "type": "fieldset", - "label": "Define the denominator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-05", - "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the denominator?", "answer": { - "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-06", - "type": "integer", - "label": "Denominator (total number)", - "answer": { "entry": "66741" } - } - ] - }, - { - "type": "fieldset", - "questions": [], - "fieldset_info": { - "actions": ["percentage"], - "targets": [ - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-04-a-01-01-02-02-04-07", - "type": "daterange", - "label": "What is the date range of your data?", - "answer": { - "entry": ["2019-10-01", "2021-09-01"], - "labels": ["Start", "End"] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-08", - "type": "radio", - "label": "Which data source did you use?", - "answer": { - "entry": "goal_survey_data", - "options": [ - { - "label": "Eligibility or enrollment data", - "value": "goal_enrollment_data" - }, - { - "label": "Survey data", - "value": "goal_survey_data" + "entry": null }, - { - "label": "Another data source", - "value": "goal_other_data" - } - ] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-09", - "type": "text_multiline", - "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-10", - "type": "text_multiline", - "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-11", - "type": "text_multiline", - "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } - }, - { - "id": "2021-04-a-01-01-02-02-04-12", - "hint": "Optional", - "type": "file_upload", - "label": "Do you have any supporting documentation?", - "answer": { "entry": null } - } - ] - }, - { - "id": "2021-04-a-01-01-02-02-05", - "type": "repeatable", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-01", - "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", - "type": "text_multiline", - "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " - } - }, - { - "id": "2021-04-a-01-01-02-02-05-02", - "type": "radio", - "label": "What type of goal is it?", - "answer": { - "entry": "goal_new", - "options": [ - { - "label": "New goal", - "value": "goal_new" - }, - { - "label": "Continuing goal", - "value": "goal_continuing" - }, - { - "label": "Discontinued goal", - "value": "goal_discontinued" - } - ], - "default_entry": "goal_new" - }, - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-02-a", - "type": "text_multiline", - "label": "Why was this goal discontinued?", - "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-03", + "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { + "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { + "entry": "53395" + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { + "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { + "entry": "66741" + } + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-04-a-01-01-02-02-04-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": ["2019-10-01", "2021-09-01"], + "labels": ["Start", "End"] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": "goal_survey_data", + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { + "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { + "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-11", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { + "entry": "No." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-12", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { + "entry": null + } + } + ] + }, + { + "id": "2021-04-a-01-01-02-02-05", + "type": "repeatable", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", + "type": "text_multiline", + "label": "Briefly describe your goal for this objective.", + "answer": { + "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " + } + }, + { + "id": "2021-04-a-01-01-02-02-05-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": "goal_new", + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", "values": { "interactive": [ null, @@ -29547,7 +34522,9 @@ "id": "2021-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "43656" } + "answer": { + "entry": "43656" + } } ] }, @@ -29568,7 +34545,9 @@ "id": "2021-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "46439" } + "answer": { + "entry": "46439" + } } ] }, @@ -29619,7 +34598,9 @@ "id": "2021-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal." } + "answer": { + "entry": "This is a new goal." + } }, { "id": "2021-04-a-01-01-02-02-05-10", @@ -29633,14 +34614,18 @@ "id": "2021-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -29706,7 +34691,9 @@ "id": "2021-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29747,7 +34734,9 @@ "id": "2021-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "367" } + "answer": { + "entry": "367" + } } ] }, @@ -29768,7 +34757,9 @@ "id": "2021-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "378" } + "answer": { + "entry": "378" + } } ] }, @@ -29819,7 +34810,9 @@ "id": "2021-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal" } + "answer": { + "entry": "This is a new goal" + } }, { "id": "2021-04-a-01-01-03-02-01-10", @@ -29833,14 +34826,18 @@ "id": "2021-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -29884,7 +34881,9 @@ "id": "2021-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29925,7 +34924,9 @@ "id": "2021-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "369" } + "answer": { + "entry": "369" + } } ] }, @@ -29946,7 +34947,9 @@ "id": "2021-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "401" } + "answer": { + "entry": "401" + } } ] }, @@ -30013,14 +35016,18 @@ "id": "2021-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30064,7 +35071,9 @@ "id": "2021-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30105,7 +35114,9 @@ "id": "2021-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "41565" } + "answer": { + "entry": "41565" + } } ] }, @@ -30126,7 +35137,9 @@ "id": "2021-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "54080" } + "answer": { + "entry": "54080" + } } ] }, @@ -30193,14 +35206,18 @@ "id": "2021-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30217,7 +35234,9 @@ "id": "2021-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02", @@ -30231,7 +35250,9 @@ "id": "2021-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-02", @@ -30260,7 +35281,9 @@ "id": "2021-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30292,13 +35315,17 @@ "id": "2021-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30310,13 +35337,17 @@ "id": "2021-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30367,26 +35398,34 @@ "id": "2021-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30403,7 +35442,9 @@ "id": "2021-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02", @@ -30417,7 +35458,9 @@ "id": "2021-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-02", @@ -30446,7 +35489,9 @@ "id": "2021-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30478,13 +35523,17 @@ "id": "2021-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30496,13 +35545,17 @@ "id": "2021-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30553,26 +35606,34 @@ "id": "2021-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30589,7 +35650,9 @@ "id": "2021-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02", @@ -30603,7 +35666,9 @@ "id": "2021-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-02", @@ -30632,7 +35697,9 @@ "id": "2021-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30664,13 +35731,17 @@ "id": "2021-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30683,13 +35754,17 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -30740,26 +35815,34 @@ "id": "2021-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30789,7 +35872,9 @@ "id": "2021-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2021-04-a-02-03", @@ -30804,7 +35889,9 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -30859,26 +35946,34 @@ "id": "2021-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-01" }, + "fieldset_info": { + "id": "2021-05-a-01-01" + }, "fieldset_type": "marked" }, { @@ -30892,26 +35987,34 @@ "id": "2021-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { "entry": "356487608" }, + "answer": { + "entry": "356487608" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { "entry": "411883043" } + "answer": { + "entry": "411883043" + } }, { "id": "2021-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { "entry": "443317001" } + "answer": { + "entry": "443317001" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-02" }, + "fieldset_info": { + "id": "2021-05-a-01-02" + }, "fieldset_type": "marked" }, { @@ -30925,26 +36028,34 @@ "id": "2021-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-03" }, + "fieldset_info": { + "id": "2021-05-a-01-03" + }, "fieldset_type": "marked" }, { @@ -30958,26 +36069,34 @@ "id": "2021-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { "entry": "6343194" }, + "answer": { + "entry": "6343194" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } }, { "id": "2021-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-01-04" }, + "fieldset_info": { + "id": "2021-05-a-01-04" + }, "fieldset_type": "marked" }, { @@ -30988,7 +36107,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -31009,7 +36130,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -31030,7 +36153,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -31074,7 +36199,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["sum"], "targets": [ @@ -31105,10 +36232,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -31133,26 +36268,34 @@ "id": "2021-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { "entry": "5005640" }, + "answer": { + "entry": "5005640" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { "entry": "5716281" } + "answer": { + "entry": "5716281" + } }, { "id": "2021-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { "entry": "6287909" } + "answer": { + "entry": "6287909" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-01" }, + "fieldset_info": { + "id": "2021-05-a-02-01" + }, "fieldset_type": "marked" }, { @@ -31166,26 +36309,34 @@ "id": "2021-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { "entry": "5839005" }, + "answer": { + "entry": "5839005" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { "entry": "6923267" } + "answer": { + "entry": "6923267" + } }, { "id": "2021-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { "entry": "7555964" } + "answer": { + "entry": "7555964" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-02" }, + "fieldset_info": { + "id": "2021-05-a-02-02" + }, "fieldset_type": "marked" }, { @@ -31199,26 +36350,34 @@ "id": "2021-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-03" }, + "fieldset_info": { + "id": "2021-05-a-02-03" + }, "fieldset_type": "marked" }, { @@ -31232,26 +36391,34 @@ "id": "2021-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2021-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-04" }, + "fieldset_info": { + "id": "2021-05-a-02-04" + }, "fieldset_type": "marked" }, { @@ -31265,26 +36432,34 @@ "id": "2021-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { "entry": "201056" }, + "answer": { + "entry": "201056" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } }, { "id": "2021-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-05" }, + "fieldset_info": { + "id": "2021-05-a-02-05" + }, "fieldset_type": "marked" }, { @@ -31298,26 +36473,34 @@ "id": "2021-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { "entry": "230094" }, + "answer": { + "entry": "230094" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } }, { "id": "2021-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-06" }, + "fieldset_info": { + "id": "2021-05-a-02-06" + }, "fieldset_type": "marked" }, { @@ -31331,26 +36514,34 @@ "id": "2021-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { "entry": "885410" }, + "answer": { + "entry": "885410" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { "entry": "1371907" } + "answer": { + "entry": "1371907" + } }, { "id": "2021-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { "entry": "1509098" } + "answer": { + "entry": "1509098" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-02-07" }, + "fieldset_info": { + "id": "2021-05-a-02-07" + }, "fieldset_type": "marked" }, { @@ -31361,7 +36552,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -31382,7 +36575,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -31403,7 +36598,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -31424,7 +36621,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -31445,7 +36644,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -31466,7 +36667,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -31487,7 +36690,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -31508,7 +36713,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -31547,7 +36754,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -31584,10 +36793,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -31600,7 +36817,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -31657,30 +36876,48 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2020" }], + "targets": [ + { + "lookupFmapFy": "2020" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2021" }], + "targets": [ + { + "lookupFmapFy": "2021" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2022" }], + "targets": [ + { + "lookupFmapFy": "2022" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -31699,7 +36936,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -31718,7 +36957,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -31735,7 +36976,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -31751,7 +36994,9 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -31781,7 +37026,9 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -31811,7 +37058,9 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -31829,10 +37078,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -31873,7 +37130,10 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -31881,7 +37141,9 @@ "id": "2021-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31905,8 +37167,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -31914,7 +37182,9 @@ "id": "2021-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31950,26 +37220,34 @@ "id": "2021-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "53253" }, + "answer": { + "entry": "53253" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2021-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-03-01" }, + "fieldset_info": { + "id": "2021-05-a-03-01" + }, "fieldset_type": "marked" }, { @@ -31984,26 +37262,34 @@ "id": "2021-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2021-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-03-02" }, + "fieldset_info": { + "id": "2021-05-a-03-02" + }, "fieldset_type": "marked" }, { @@ -32012,7 +37298,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -32033,7 +37321,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -32055,10 +37345,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -32082,26 +37380,34 @@ "id": "2021-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "174401" }, + "answer": { + "entry": "174401" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "80722" } + "answer": { + "entry": "80722" + } }, { "id": "2021-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { "entry": "84885" } + "answer": { + "entry": "84885" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-04-01" }, + "fieldset_info": { + "id": "2021-05-a-04-01" + }, "fieldset_type": "marked" }, { @@ -32116,26 +37422,34 @@ "id": "2021-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { "entry": "233" }, + "answer": { + "entry": "233" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } }, { "id": "2021-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { "entry": "252" } + "answer": { + "entry": "252" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2021-05-a-04-02" }, + "fieldset_info": { + "id": "2021-05-a-04-02" + }, "fieldset_type": "marked" }, { @@ -32144,7 +37458,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -32165,7 +37481,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -32187,10 +37505,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -32213,7 +37539,9 @@ "id": "2021-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -32290,7 +37618,9 @@ "id": "2021-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -32377,19 +37707,25 @@ "id": "2020-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { "entry": "Tester" } + "answer": { + "entry": "Tester" + } }, { "id": "2020-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { "entry": "Director" } + "answer": { + "entry": "Director" + } }, { "id": "2020-00-a-01-06", "type": "email", "label": "Email:", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2020-00-a-01-07", @@ -32404,7 +37740,9 @@ "id": "2020-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { "entry": "123-456-7890" } + "answer": { + "entry": "123-456-7890" + } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -32453,8 +37791,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32462,7 +37806,9 @@ "id": "2020-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32486,8 +37832,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32501,8 +37853,14 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -32539,7 +37897,9 @@ "id": "2020-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32579,8 +37939,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32618,7 +37984,9 @@ "id": "2020-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32639,7 +38007,9 @@ "id": "2020-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } }, { "id": "2020-01-a-01-05", @@ -32649,12 +38019,18 @@ "answer": { "entry": [null, "pccm"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -32662,7 +38038,9 @@ "id": "2020-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -32685,8 +38063,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32694,7 +38078,9 @@ "id": "2020-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32718,8 +38104,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32733,8 +38125,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -32776,7 +38174,9 @@ "id": "2020-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32816,8 +38216,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -32860,7 +38266,9 @@ "id": "2020-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { "entry": "312" }, + "answer": { + "entry": "312" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32893,12 +38301,18 @@ "answer": { "entry": [null, "ffs"], "options": [ - { "label": "Managed Care", "value": "mco" }, + { + "label": "Managed Care", + "value": "mco" + }, { "label": "Primary Care Case Management", "value": "pccm" }, - { "label": "Fee for Service", "value": "ffs" } + { + "label": "Fee for Service", + "value": "ffs" + } ] } }, @@ -32906,7 +38320,9 @@ "id": "2020-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { "entry": "N/A" } + "answer": { + "entry": "N/A" + } } ], "context_data": { @@ -32927,9 +38343,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32943,9 +38368,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32960,9 +38394,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32977,9 +38420,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -32993,9 +38445,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33010,12 +38471,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2020-01-a-03-07", @@ -33025,12 +38497,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2020-01-a-03-08", @@ -33040,12 +38523,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2020-01-a-03-09", @@ -33055,9 +38549,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33071,9 +38574,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33088,9 +38600,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33105,12 +38626,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2020-01-a-03-13", @@ -33119,9 +38651,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33135,9 +38676,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33151,9 +38701,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33167,12 +38726,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -33192,9 +38762,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] } } @@ -33253,9 +38832,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33269,9 +38857,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33286,9 +38883,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33303,9 +38909,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33319,9 +38934,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33336,12 +38960,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Outreach efforts" } + "context_data": { + "bullet_text": "Outreach efforts" + } }, { "id": "2020-01-a-04-07", @@ -33351,12 +38986,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Delivery system(s)" } + "context_data": { + "bullet_text": "Delivery system(s)" + } }, { "id": "2020-01-a-04-08", @@ -33366,12 +39012,23 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Cost sharing" } + "context_data": { + "bullet_text": "Cost sharing" + } }, { "id": "2020-01-a-04-09", @@ -33381,12 +39038,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Crowd-out policies" } + "context_data": { + "bullet_text": "Crowd-out policies" + } }, { "id": "2020-01-a-04-10", @@ -33395,9 +39063,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33411,9 +39088,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33428,9 +39114,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33445,12 +39140,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Premium assistance" } + "context_data": { + "bullet_text": "Premium assistance" + } }, { "id": "2020-01-a-04-14", @@ -33459,9 +39165,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33476,9 +39191,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33493,9 +39217,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33509,9 +39242,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33525,9 +39267,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, "context_data": { @@ -33541,12 +39292,23 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "n/a" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "n/a" + } ] }, - "context_data": { "bullet_text": "Other program areas" } + "context_data": { + "bullet_text": "Other program areas" + } }, { "type": "fieldset", @@ -33566,8 +39328,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -33695,7 +39463,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "2015" }, + { + "contents": "2015" + }, { "lookupAcs": { "ffy": "2015", @@ -33722,7 +39492,9 @@ } ], [ - { "contents": "2016" }, + { + "contents": "2016" + }, { "lookupAcs": { "ffy": "2016", @@ -33749,7 +39521,9 @@ } ], [ - { "contents": "2017" }, + { + "contents": "2017" + }, { "lookupAcs": { "ffy": "2017", @@ -33776,7 +39550,9 @@ } ], [ - { "contents": "2018" }, + { + "contents": "2018" + }, { "lookupAcs": { "ffy": "2018", @@ -33803,7 +39579,9 @@ } ], [ - { "contents": "2019" }, + { + "contents": "2019" + }, { "lookupAcs": { "ffy": "2019", @@ -33831,13 +39609,21 @@ ] ], "headers": [ - { "contents": "Year" }, - { "contents": "Number of uninsured children" }, - { "contents": "Margin of error" }, + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { "contents": "Margin of error" } + { + "contents": "Margin of error" + } ] }, "fieldset_type": "synthesized_table" @@ -33858,7 +39644,9 @@ ] ], "headers": [ - { "contents": "Percent change between 2018 and 2019" } + { + "contents": "Percent change between 2018 and 2019" + } ] }, "fieldset_type": "synthesized_table" @@ -33878,8 +39666,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -33887,7 +39681,9 @@ "id": "2020-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33911,8 +39707,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -33923,7 +39725,9 @@ "id": "2020-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-b", @@ -33938,37 +39742,49 @@ "id": "2020-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -33991,13 +39807,17 @@ "id": "2020-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -34037,8 +39857,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -34073,8 +39899,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -34082,7 +39914,9 @@ "id": "2020-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34112,13 +39946,17 @@ "id": "2020-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -34141,9 +39979,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34151,7 +39998,9 @@ "id": "2020-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34175,9 +40024,18 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34185,7 +40043,9 @@ "id": "2020-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { "entry": "BCBS of AL enrollment database" }, + "answer": { + "entry": "BCBS of AL enrollment database" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34206,7 +40066,9 @@ "id": "2020-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { "entry": "4.11" } + "answer": { + "entry": "4.11" + } }, { "type": "fieldset", @@ -34218,9 +40080,18 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34231,7 +40102,9 @@ "id": "2020-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -34252,7 +40125,9 @@ "id": "2020-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34271,7 +40146,9 @@ "id": "2020-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34290,7 +40167,9 @@ "id": "2020-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34320,13 +40199,17 @@ "id": "2020-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } }, { "id": "2020-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -34351,9 +40234,18 @@ "answer": { "entry": "", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -34364,13 +40256,17 @@ "id": "2020-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -34396,8 +40292,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -34408,8 +40310,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -34420,7 +40328,9 @@ "id": "2020-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-c-01-03-b", @@ -34475,7 +40385,9 @@ "id": "2020-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No. " } + "answer": { + "entry": "No. " + } } ] }, @@ -34489,27 +40401,35 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { "entry": "4283" } + "answer": { + "entry": "4283" + } }, { "id": "2020-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { "entry": "500" } + "answer": { + "entry": "500" + } }, { "id": "2020-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { "entry": "3484" }, + "answer": { + "entry": "3484" + }, "questions": [ { "id": "2020-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { "entry": "299" } + "answer": { + "entry": "299" + } } ] }, @@ -34517,7 +40437,9 @@ "id": "2020-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2020-03-c-02-05", @@ -34535,7 +40457,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total denials" }, + { + "contents": "Total denials" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-01')].answer.entry" @@ -34550,7 +40474,9 @@ } ], [ - { "contents": "Denied for procedural reasons" }, + { + "contents": "Denied for procedural reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-02')].answer.entry" @@ -34565,7 +40491,9 @@ } ], [ - { "contents": "Denied for eligibility reasons" }, + { + "contents": "Denied for eligibility reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-03')].answer.entry" @@ -34580,7 +40508,9 @@ } ], [ - { "contents": "Denials for other reasons" }, + { + "contents": "Denials for other reasons" + }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-04')].answer.entry" @@ -34596,9 +40526,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -34615,26 +40551,34 @@ "id": "2020-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { "entry": "145390" } + "answer": { + "entry": "145390" + } }, { "id": "2020-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "131011" } + "answer": { + "entry": "131011" + } }, { "id": "2020-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { "entry": "113009" } + "answer": { + "entry": "113009" + } }, { "id": "2020-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { "entry": "17989" }, + "answer": { + "entry": "17989" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -34655,20 +40599,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "id": "2020-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "15242" } + "answer": { + "entry": "15242" + } }, { "id": "2020-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "854" } + "answer": { + "entry": "854" + } } ] }, @@ -34676,7 +40626,9 @@ "id": "2020-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -34738,9 +40690,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -34822,9 +40780,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -34841,26 +40805,34 @@ "id": "2020-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { "entry": "463373" } + "answer": { + "entry": "463373" + } }, { "id": "2020-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { "entry": "438232" } + "answer": { + "entry": "438232" + } }, { "id": "2020-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { "entry": "413500" } + "answer": { + "entry": "413500" + } }, { "id": "2020-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { "entry": "24718" }, + "answer": { + "entry": "24718" + }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -34881,20 +40853,26 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { "entry": "559" } + "answer": { + "entry": "559" + } }, { "id": "2020-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { "entry": "23489" } + "answer": { + "entry": "23489" + } }, { "id": "2020-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { "entry": "670" } + "answer": { + "entry": "670" + } } ] }, @@ -34902,7 +40880,9 @@ "id": "2020-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -34964,9 +40944,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -35048,9 +41034,15 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "Number" }, - { "contents": "Percent" } + { + "contents": "" + }, + { + "contents": "Number" + }, + { + "contents": "Percent" + } ] }, "fieldset_type": "synthesized_table" @@ -35095,8 +41087,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -35113,7 +41111,9 @@ "id": "2020-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35149,25 +41149,33 @@ "id": "2020-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "919" } + "answer": { + "entry": "919" + } }, { "id": "2020-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "2265" } + "answer": { + "entry": "2265" + } }, { "id": "2020-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5710" } + "answer": { + "entry": "5710" + } }, { "id": "2020-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4958" } + "answer": { + "entry": "4958" + } } ], "context_data": { @@ -35185,7 +41193,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-03" }, + "fieldset_info": { + "id": "2020-03-c-05-03" + }, "fieldset_type": "marked" }, { @@ -35202,7 +41212,9 @@ "id": "2020-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35238,25 +41250,33 @@ "id": "2020-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "909" } + "answer": { + "entry": "909" + } }, { "id": "2020-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "22213" } + "answer": { + "entry": "22213" + } }, { "id": "2020-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "5451" } + "answer": { + "entry": "5451" + } }, { "id": "2020-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4445" } + "answer": { + "entry": "4445" + } } ], "context_data": { @@ -35274,7 +41294,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-04" }, + "fieldset_info": { + "id": "2020-03-c-05-04" + }, "fieldset_type": "marked" }, { @@ -35285,7 +41307,9 @@ "id": "2020-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35321,25 +41345,33 @@ "id": "2020-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -35357,7 +41389,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-05" }, + "fieldset_info": { + "id": "2020-03-c-05-05" + }, "fieldset_type": "marked" }, { @@ -35368,7 +41402,9 @@ "id": "2020-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35404,25 +41440,33 @@ "id": "2020-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } } ], "context_data": { @@ -35440,7 +41484,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-06" }, + "fieldset_info": { + "id": "2020-03-c-05-06" + }, "fieldset_type": "marked" }, { @@ -35452,7 +41498,9 @@ "id": "2020-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35488,25 +41536,33 @@ "id": "2020-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "10" } + "answer": { + "entry": "10" + } }, { "id": "2020-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "44" } + "answer": { + "entry": "44" + } }, { "id": "2020-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "257" } + "answer": { + "entry": "257" + } }, { "id": "2020-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "510" } + "answer": { + "entry": "510" + } } ], "context_data": { @@ -35524,7 +41580,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-07" }, + "fieldset_info": { + "id": "2020-03-c-05-07" + }, "fieldset_type": "marked" }, { @@ -35535,7 +41593,9 @@ "id": "2020-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35571,25 +41631,33 @@ "id": "2020-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "145" } + "answer": { + "entry": "145" + } }, { "id": "2020-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "447" } + "answer": { + "entry": "447" + } } ], "context_data": { @@ -35607,14 +41675,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-08" }, + "fieldset_info": { + "id": "2020-03-c-05-08" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -35631,7 +41703,10 @@ "id": "2020-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35667,25 +41742,37 @@ "id": "2020-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35703,7 +41790,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-10" }, + "fieldset_info": { + "id": "2020-03-c-05-10" + }, "fieldset_type": "marked" }, { @@ -35714,7 +41803,10 @@ "id": "2020-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35750,25 +41842,37 @@ "id": "2020-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35786,7 +41890,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-11" }, + "fieldset_info": { + "id": "2020-03-c-05-11" + }, "fieldset_type": "marked" }, { @@ -35797,7 +41903,10 @@ "id": "2020-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35833,25 +41942,37 @@ "id": "2020-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35869,7 +41990,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-12" }, + "fieldset_info": { + "id": "2020-03-c-05-12" + }, "fieldset_type": "marked" }, { @@ -35881,7 +42004,10 @@ "id": "2020-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35917,25 +42043,37 @@ "id": "2020-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -35953,7 +42091,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-13" }, + "fieldset_info": { + "id": "2020-03-c-05-13" + }, "fieldset_type": "marked" }, { @@ -35964,7 +42104,10 @@ "id": "2020-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36000,25 +42143,37 @@ "id": "2020-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36036,7 +42191,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-14" }, + "fieldset_info": { + "id": "2020-03-c-05-14" + }, "fieldset_type": "marked" }, { @@ -36054,7 +42211,10 @@ "id": "2020-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36090,25 +42250,37 @@ "id": "2020-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36126,7 +42298,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-15" }, + "fieldset_info": { + "id": "2020-03-c-05-15" + }, "fieldset_type": "marked" }, { @@ -36137,7 +42311,10 @@ "id": "2020-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36173,25 +42350,37 @@ "id": "2020-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36209,7 +42398,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-16" }, + "fieldset_info": { + "id": "2020-03-c-05-16" + }, "fieldset_type": "marked" }, { @@ -36220,7 +42411,10 @@ "id": "2020-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36256,25 +42450,37 @@ "id": "2020-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36292,7 +42498,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-17" }, + "fieldset_info": { + "id": "2020-03-c-05-17" + }, "fieldset_type": "marked" }, { @@ -36304,7 +42512,10 @@ "id": "2020-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36340,25 +42551,37 @@ "id": "2020-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36376,7 +42599,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-18" }, + "fieldset_info": { + "id": "2020-03-c-05-18" + }, "fieldset_type": "marked" }, { @@ -36387,7 +42612,10 @@ "id": "2020-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36423,25 +42651,37 @@ "id": "2020-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -36459,14 +42699,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-05-19" }, + "fieldset_info": { + "id": "2020-03-c-05-19" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -36508,8 +42752,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -36526,7 +42776,9 @@ "id": "2020-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36562,25 +42814,33 @@ "id": "2020-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "127630" } + "answer": { + "entry": "127630" + } }, { "id": "2020-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "7311" } + "answer": { + "entry": "7311" + } }, { "id": "2020-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9418" } + "answer": { + "entry": "9418" + } }, { "id": "2020-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "4527" } + "answer": { + "entry": "4527" + } } ], "context_data": { @@ -36598,7 +42858,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-03" }, + "fieldset_info": { + "id": "2020-03-c-06-03" + }, "fieldset_type": "marked" }, { @@ -36615,7 +42877,9 @@ "id": "2020-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36651,25 +42915,33 @@ "id": "2020-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12237" } + "answer": { + "entry": "12237" + } }, { "id": "2020-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "70464" } + "answer": { + "entry": "70464" + } }, { "id": "2020-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "9159" } + "answer": { + "entry": "9159" + } }, { "id": "2020-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "3821" } + "answer": { + "entry": "3821" + } } ], "context_data": { @@ -36687,7 +42959,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-04" }, + "fieldset_info": { + "id": "2020-03-c-06-04" + }, "fieldset_type": "marked" }, { @@ -36698,7 +42972,9 @@ "id": "2020-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36734,25 +43010,33 @@ "id": "2020-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2020-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2020-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2020-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } } ], "context_data": { @@ -36770,7 +43054,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-05" }, + "fieldset_info": { + "id": "2020-03-c-06-05" + }, "fieldset_type": "marked" }, { @@ -36781,7 +43067,9 @@ "id": "2020-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36817,25 +43105,33 @@ "id": "2020-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "87" } + "answer": { + "entry": "87" + } }, { "id": "2020-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "36" } + "answer": { + "entry": "36" + } }, { "id": "2020-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "23" } + "answer": { + "entry": "23" + } }, { "id": "2020-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "88" } + "answer": { + "entry": "88" + } } ], "context_data": { @@ -36853,7 +43149,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-06" }, + "fieldset_info": { + "id": "2020-03-c-06-06" + }, "fieldset_type": "marked" }, { @@ -36865,7 +43163,9 @@ "id": "2020-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36901,25 +43201,33 @@ "id": "2020-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "439" } + "answer": { + "entry": "439" + } }, { "id": "2020-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "229" } + "answer": { + "entry": "229" + } }, { "id": "2020-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "236" } + "answer": { + "entry": "236" + } }, { "id": "2020-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "698" } + "answer": { + "entry": "698" + } } ], "context_data": { @@ -36937,7 +43245,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-07" }, + "fieldset_info": { + "id": "2020-03-c-06-07" + }, "fieldset_type": "marked" }, { @@ -36948,7 +43258,9 @@ "id": "2020-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -36984,25 +43296,33 @@ "id": "2020-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2020-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2020-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": "46" } + "answer": { + "entry": "46" + } }, { "id": "2020-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": "55" } + "answer": { + "entry": "55" + } } ], "context_data": { @@ -37020,14 +43340,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-08" }, + "fieldset_info": { + "id": "2020-03-c-06-08" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": "No. yes added more " } + "answer": { + "entry": "No. yes added more " + } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -37044,7 +43368,10 @@ "id": "2020-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37080,25 +43407,37 @@ "id": "2020-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37116,7 +43455,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-10" }, + "fieldset_info": { + "id": "2020-03-c-06-10" + }, "fieldset_type": "marked" }, { @@ -37127,7 +43468,10 @@ "id": "2020-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37163,25 +43507,37 @@ "id": "2020-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37199,7 +43555,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-11" }, + "fieldset_info": { + "id": "2020-03-c-06-11" + }, "fieldset_type": "marked" }, { @@ -37210,7 +43568,10 @@ "id": "2020-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37246,25 +43607,37 @@ "id": "2020-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37282,7 +43655,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-12" }, + "fieldset_info": { + "id": "2020-03-c-06-12" + }, "fieldset_type": "marked" }, { @@ -37294,7 +43669,10 @@ "id": "2020-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37330,25 +43708,37 @@ "id": "2020-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37366,7 +43756,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-13" }, + "fieldset_info": { + "id": "2020-03-c-06-13" + }, "fieldset_type": "marked" }, { @@ -37377,7 +43769,10 @@ "id": "2020-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37413,25 +43808,37 @@ "id": "2020-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37449,7 +43856,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-14" }, + "fieldset_info": { + "id": "2020-03-c-06-14" + }, "fieldset_type": "marked" }, { @@ -37467,7 +43876,10 @@ "id": "2020-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37503,25 +43915,37 @@ "id": "2020-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37539,7 +43963,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-15" }, + "fieldset_info": { + "id": "2020-03-c-06-15" + }, "fieldset_type": "marked" }, { @@ -37550,7 +43976,10 @@ "id": "2020-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37586,25 +44015,37 @@ "id": "2020-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37622,7 +44063,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-16" }, + "fieldset_info": { + "id": "2020-03-c-06-16" + }, "fieldset_type": "marked" }, { @@ -37633,7 +44076,10 @@ "id": "2020-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37669,25 +44115,37 @@ "id": "2020-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37705,7 +44163,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-17" }, + "fieldset_info": { + "id": "2020-03-c-06-17" + }, "fieldset_type": "marked" }, { @@ -37717,7 +44177,10 @@ "id": "2020-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37753,25 +44216,37 @@ "id": "2020-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37789,7 +44264,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-18" }, + "fieldset_info": { + "id": "2020-03-c-06-18" + }, "fieldset_type": "marked" }, { @@ -37800,7 +44277,10 @@ "id": "2020-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { "entry": null, "readonly": true }, + "answer": { + "entry": null, + "readonly": true + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37836,25 +44316,37 @@ "id": "2020-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } }, { "id": "2020-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { "entry": null, "readonly": true } + "answer": { + "entry": null, + "readonly": true + } } ], "context_data": { @@ -37872,14 +44364,18 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-c-06-19" }, + "fieldset_info": { + "id": "2020-03-c-06-19" + }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -37902,8 +44398,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -37925,12 +44427,18 @@ "label": "Health plans", "value": "health_plans" }, - { "label": "States", "value": "states" }, + { + "label": "States", + "value": "states" + }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { "label": "Other ", "value": "other" } + { + "label": "Other ", + "value": "other" + } ] }, "questions": [ @@ -37970,7 +44478,9 @@ "id": "2020-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38009,7 +44519,9 @@ "id": "2020-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-d-01-05", @@ -38018,8 +44530,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38027,7 +44545,9 @@ "id": "2020-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38051,8 +44571,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38060,7 +44586,9 @@ "id": "2020-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38105,13 +44633,17 @@ "id": "2020-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -38154,8 +44686,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -38195,8 +44733,14 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38205,7 +44749,9 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-04", @@ -38215,9 +44761,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -38229,9 +44784,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] } }, @@ -38243,9 +44807,18 @@ "answer": { "entry": null, "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -38253,7 +44826,9 @@ "id": "2020-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38274,7 +44849,9 @@ "id": "2020-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -38283,19 +44860,25 @@ "id": "2020-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -38328,9 +44911,15 @@ ] ], "headers": [ - { "contents": "State" }, - { "contents": "Employer" }, - { "contents": "Employee" } + { + "contents": "State" + }, + { + "contents": "Employer" + }, + { + "contents": "Employee" + } ] }, "fieldset_type": "synthesized_table" @@ -38390,31 +44979,41 @@ "id": "2020-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -38451,8 +45050,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38463,8 +45068,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38475,8 +45086,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38495,9 +45112,18 @@ "answer": { "entry": "na", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" }, - { "label": "N/A", "value": "na" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + }, + { + "label": "N/A", + "value": "na" + } ] }, "questions": [ @@ -38505,7 +45131,9 @@ "id": "2020-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38526,13 +45154,17 @@ "id": "2020-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "id": "2020-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } }, { "type": "fieldset", @@ -38541,13 +45173,17 @@ "id": "2020-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { "entry": "2" } + "answer": { + "entry": "2" + } }, { "id": "2020-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -38558,13 +45194,17 @@ "id": "2020-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { "entry": "19" } + "answer": { + "entry": "19" + } }, { "id": "2020-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -38575,13 +45215,17 @@ "id": "2020-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { "entry": "4" } + "answer": { + "entry": "4" + } }, { "id": "2020-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { "entry": "0" } + "answer": { + "entry": "0" + } } ] }, @@ -38592,7 +45236,10 @@ "answer": { "entry": "separate_chip_only", "options": [ - { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "CHIP only", + "value": "separate_chip_only" + }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -38607,8 +45254,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38642,8 +45295,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -38651,7 +45310,9 @@ "id": "2020-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38672,13 +45333,17 @@ "id": "2020-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { "entry": "Only Separate CHIP reported." } + "answer": { + "entry": "Only Separate CHIP reported." + } }, { "id": "2020-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -38712,8 +45377,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -38725,7 +45396,9 @@ "id": "2020-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38763,37 +45436,49 @@ "id": "2020-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "1915" } + "answer": { + "entry": "1915" + } }, { "id": "2020-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "8659" } + "answer": { + "entry": "8659" + } }, { "id": "2020-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "15546" } + "answer": { + "entry": "15546" + } }, { "id": "2020-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "21088" } + "answer": { + "entry": "21088" + } }, { "id": "2020-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "26998" } + "answer": { + "entry": "26998" + } }, { "id": "2020-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "19934" } + "answer": { + "entry": "19934" + } } ], "context_data": { @@ -38811,7 +45496,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-02" }, + "fieldset_info": { + "id": "2020-03-g-01-02" + }, "fieldset_type": "marked" }, { @@ -38822,7 +45509,9 @@ "id": "2020-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38860,37 +45549,49 @@ "id": "2020-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "24" } + "answer": { + "entry": "24" + } }, { "id": "2020-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "2238" } + "answer": { + "entry": "2238" + } }, { "id": "2020-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8868" } + "answer": { + "entry": "8868" + } }, { "id": "2020-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "14543" } + "answer": { + "entry": "14543" + } }, { "id": "2020-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "17462" } + "answer": { + "entry": "17462" + } }, { "id": "2020-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "11415" } + "answer": { + "entry": "11415" + } } ], "context_data": { @@ -38908,7 +45609,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-03" }, + "fieldset_info": { + "id": "2020-03-g-01-03" + }, "fieldset_type": "marked" }, { @@ -38925,7 +45628,9 @@ "id": "2020-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38963,37 +45668,49 @@ "id": "2020-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "8" } + "answer": { + "entry": "8" + } }, { "id": "2020-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "1997" } + "answer": { + "entry": "1997" + } }, { "id": "2020-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "8504" } + "answer": { + "entry": "8504" + } }, { "id": "2020-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "13966" } + "answer": { + "entry": "13966" + } }, { "id": "2020-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "16828" } + "answer": { + "entry": "16828" + } }, { "id": "2020-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "10639" } + "answer": { + "entry": "10639" + } } ], "context_data": { @@ -39011,7 +45728,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-04" }, + "fieldset_info": { + "id": "2020-03-g-01-04" + }, "fieldset_type": "marked" }, { @@ -39028,7 +45747,9 @@ "id": "2020-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39066,37 +45787,49 @@ "id": "2020-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { "entry": "12" } + "answer": { + "entry": "12" + } }, { "id": "2020-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { "entry": "117" } + "answer": { + "entry": "117" + } }, { "id": "2020-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { "entry": "2133" } + "answer": { + "entry": "2133" + } }, { "id": "2020-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { "entry": "5991" } + "answer": { + "entry": "5991" + } }, { "id": "2020-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { "entry": "5931" } + "answer": { + "entry": "5931" + } }, { "id": "2020-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { "entry": "4883" } + "answer": { + "entry": "4883" + } } ], "context_data": { @@ -39114,7 +45847,9 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-03-g-01-05" }, + "fieldset_info": { + "id": "2020-03-g-01-05" + }, "fieldset_type": "marked" }, { @@ -39127,7 +45862,9 @@ "id": "2020-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { "entry": "1893" } + "answer": { + "entry": "1893" + } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -39142,8 +45879,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -39154,14 +45897,18 @@ "id": "2020-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "type": "fieldset", @@ -39195,7 +45942,9 @@ { "contents": "Children enrolled in Separate CHIP" }, - { "contents": "Percentage" } + { + "contents": "Percentage" + } ] }, "fieldset_type": "synthesized_table" @@ -39221,13 +45970,17 @@ "id": "2020-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39254,8 +46007,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -39266,8 +46025,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "context_data": { @@ -39299,7 +46064,9 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-h-02-02", @@ -39312,12 +46079,18 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { "label": "Separate CHIP", "value": "separate chip" }, + { + "label": "Separate CHIP", + "value": "separate chip" + }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39329,13 +46102,17 @@ "id": "2020-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39370,9 +46147,18 @@ "answer": { "entry": "5.0H", "options": [ - { "label": "CAHPS 5.0", "value": "5.0" }, - { "label": "CAHPS 5.0H", "value": "5.0H" }, - { "label": "Other", "value": "other" } + { + "label": "CAHPS 5.0", + "value": "5.0" + }, + { + "label": "CAHPS 5.0H", + "value": "5.0H" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39384,7 +46170,9 @@ "id": "2020-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39411,12 +46199,18 @@ "answer": { "entry": [null, "chronic"], "options": [ - { "label": "None", "value": "none" }, + { + "label": "None", + "value": "none" + }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39424,7 +46218,9 @@ "id": "2020-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39453,8 +46249,14 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { "label": "HRQ CAHPS", "value": "hrq cahps" }, - { "label": "Other", "value": "other" } + { + "label": "HRQ CAHPS", + "value": "hrq cahps" + }, + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -39466,7 +46268,9 @@ "id": "2020-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39489,7 +46293,9 @@ "id": "2020-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } } ], "context_data": { @@ -39561,7 +46367,10 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] } }, @@ -39569,7 +46378,9 @@ "id": "2020-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "context_data": { @@ -39607,8 +46418,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } } @@ -39642,8 +46459,14 @@ "answer": { "entry": "yes", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] } }, @@ -39690,7 +46513,9 @@ "id": "2020-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39709,7 +46534,9 @@ "id": "2020-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { "entry": "112" }, + "answer": { + "entry": "112" + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39834,7 +46661,9 @@ "id": "2020-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39965,7 +46794,9 @@ "id": "2020-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40006,7 +46837,9 @@ "id": "2020-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "30669" } + "answer": { + "entry": "30669" + } } ] }, @@ -40027,7 +46860,9 @@ "id": "2020-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1127906" } + "answer": { + "entry": "1127906" + } } ] }, @@ -40094,14 +46929,18 @@ "id": "2020-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40145,7 +46984,9 @@ "id": "2020-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40186,7 +47027,9 @@ "id": "2020-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "13922" } + "answer": { + "entry": "13922" + } } ] }, @@ -40207,7 +47050,9 @@ "id": "2020-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "359680" } + "answer": { + "entry": "359680" + } } ] }, @@ -40274,14 +47119,18 @@ "id": "2020-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40325,7 +47174,9 @@ "id": "2020-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40366,7 +47217,9 @@ "id": "2020-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "16747" } + "answer": { + "entry": "16747" + } } ] }, @@ -40387,7 +47240,9 @@ "id": "2020-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "351278" } + "answer": { + "entry": "351278" + } } ] }, @@ -40454,14 +47309,18 @@ "id": "2020-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -40479,7 +47338,9 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": "Increase Access to Care" } + "answer": { + "entry": "Increase Access to Care" + } }, { "id": "2020-04-a-01-01-02-02", @@ -40525,7 +47386,9 @@ "id": "2020-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40566,7 +47429,9 @@ "id": "2020-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "78593" } + "answer": { + "entry": "78593" + } } ] }, @@ -40587,7 +47452,9 @@ "id": "2020-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "78908" } + "answer": { + "entry": "78908" + } } ] }, @@ -40654,14 +47521,18 @@ "id": "2020-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40705,7 +47576,9 @@ "id": "2020-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40746,7 +47619,9 @@ "id": "2020-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "1329" } + "answer": { + "entry": "1329" + } } ] }, @@ -40767,7 +47642,9 @@ "id": "2020-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "1338" } + "answer": { + "entry": "1338" + } } ] }, @@ -40834,14 +47711,18 @@ "id": "2020-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -40885,7 +47766,9 @@ "id": "2020-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40926,7 +47809,9 @@ "id": "2020-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "10464" } + "answer": { + "entry": "10464" + } } ] }, @@ -40947,7 +47832,9 @@ "id": "2020-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "10776" } + "answer": { + "entry": "10776" + } } ] }, @@ -41014,14 +47901,18 @@ "id": "2020-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41065,7 +47956,9 @@ "id": "2020-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41106,7 +47999,9 @@ "id": "2020-04-a-01-01-02-02-04-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "53395" } + "answer": { + "entry": "53395" + } } ] }, @@ -41127,7 +48022,9 @@ "id": "2020-04-a-01-01-02-02-04-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "66741" } + "answer": { + "entry": "66741" + } } ] }, @@ -41194,14 +48091,18 @@ "id": "2020-04-a-01-01-02-02-04-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-04-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41245,7 +48146,9 @@ "id": "2020-04-a-01-01-02-02-05-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41286,7 +48189,9 @@ "id": "2020-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "43656" } + "answer": { + "entry": "43656" + } } ] }, @@ -41307,7 +48212,9 @@ "id": "2020-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "46439" } + "answer": { + "entry": "46439" + } } ] }, @@ -41358,7 +48265,9 @@ "id": "2020-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal." } + "answer": { + "entry": "This is a new goal." + } }, { "id": "2020-04-a-01-01-02-02-05-10", @@ -41372,14 +48281,18 @@ "id": "2020-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -41445,7 +48358,9 @@ "id": "2020-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41486,7 +48401,9 @@ "id": "2020-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "367" } + "answer": { + "entry": "367" + } } ] }, @@ -41507,7 +48424,9 @@ "id": "2020-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "378" } + "answer": { + "entry": "378" + } } ] }, @@ -41558,7 +48477,9 @@ "id": "2020-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": "This is a new goal" } + "answer": { + "entry": "This is a new goal" + } }, { "id": "2020-04-a-01-01-03-02-01-10", @@ -41572,14 +48493,18 @@ "id": "2020-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41623,7 +48548,9 @@ "id": "2020-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41664,7 +48591,9 @@ "id": "2020-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "369" } + "answer": { + "entry": "369" + } } ] }, @@ -41685,7 +48614,9 @@ "id": "2020-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "401" } + "answer": { + "entry": "401" + } } ] }, @@ -41752,14 +48683,18 @@ "id": "2020-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -41803,7 +48738,9 @@ "id": "2020-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41844,7 +48781,9 @@ "id": "2020-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": "41565" } + "answer": { + "entry": "41565" + } } ] }, @@ -41865,7 +48804,9 @@ "id": "2020-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": "54080" } + "answer": { + "entry": "54080" + } } ] }, @@ -41932,14 +48873,18 @@ "id": "2020-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -41956,7 +48901,9 @@ "id": "2020-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02", @@ -41970,7 +48917,9 @@ "id": "2020-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-02", @@ -41999,7 +48948,9 @@ "id": "2020-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42031,13 +48982,17 @@ "id": "2020-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42049,13 +49004,17 @@ "id": "2020-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42106,26 +49065,34 @@ "id": "2020-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42142,7 +49109,9 @@ "id": "2020-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02", @@ -42156,7 +49125,9 @@ "id": "2020-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-02", @@ -42185,7 +49156,9 @@ "id": "2020-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42217,13 +49190,17 @@ "id": "2020-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42235,13 +49212,17 @@ "id": "2020-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42292,26 +49273,34 @@ "id": "2020-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42328,7 +49317,9 @@ "id": "2020-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02", @@ -42342,7 +49333,9 @@ "id": "2020-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-02", @@ -42371,7 +49364,9 @@ "id": "2020-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42403,13 +49398,17 @@ "id": "2020-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42422,13 +49421,17 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] }, @@ -42479,26 +49482,34 @@ "id": "2020-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42528,7 +49539,9 @@ "id": "2020-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { "entry": "No." } + "answer": { + "entry": "No." + } }, { "id": "2020-04-a-02-03", @@ -42543,7 +49556,9 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -42598,26 +49613,34 @@ "id": "2020-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-01" }, + "fieldset_info": { + "id": "2020-05-a-01-01" + }, "fieldset_type": "marked" }, { @@ -42631,26 +49654,34 @@ "id": "2020-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { "entry": "356487608" }, + "answer": { + "entry": "356487608" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { "entry": "411883043" } + "answer": { + "entry": "411883043" + } }, { "id": "2020-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { "entry": "443317001" } + "answer": { + "entry": "443317001" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-02" }, + "fieldset_info": { + "id": "2020-05-a-01-02" + }, "fieldset_type": "marked" }, { @@ -42664,26 +49695,34 @@ "id": "2020-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-03" }, + "fieldset_info": { + "id": "2020-05-a-01-03" + }, "fieldset_type": "marked" }, { @@ -42697,26 +49736,34 @@ "id": "2020-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { "entry": "6343194" }, + "answer": { + "entry": "6343194" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } }, { "id": "2020-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { "entry": "7000000" } + "answer": { + "entry": "7000000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-01-04" }, + "fieldset_info": { + "id": "2020-05-a-01-04" + }, "fieldset_type": "marked" }, { @@ -42727,7 +49774,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Managed Care" }, + { + "contents": "Managed Care" + }, { "actions": ["identity"], "targets": [ @@ -42748,7 +49797,9 @@ } ], [ - { "contents": "Fee for Service" }, + { + "contents": "Fee for Service" + }, { "actions": ["identity"], "targets": [ @@ -42769,7 +49820,9 @@ } ], [ - { "contents": "Other benefit costs" }, + { + "contents": "Other benefit costs" + }, { "actions": ["identity"], "targets": [ @@ -42813,7 +49866,9 @@ } ], [ - { "contents": "Total benefit costs" }, + { + "contents": "Total benefit costs" + }, { "actions": ["sum"], "targets": [ @@ -42844,10 +49899,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -42872,26 +49935,34 @@ "id": "2020-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { "entry": "5005640" }, + "answer": { + "entry": "5005640" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { "entry": "5716281" } + "answer": { + "entry": "5716281" + } }, { "id": "2020-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { "entry": "6287909" } + "answer": { + "entry": "6287909" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-01" }, + "fieldset_info": { + "id": "2020-05-a-02-01" + }, "fieldset_type": "marked" }, { @@ -42905,26 +49976,34 @@ "id": "2020-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { "entry": "5839005" }, + "answer": { + "entry": "5839005" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { "entry": "6923267" } + "answer": { + "entry": "6923267" + } }, { "id": "2020-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { "entry": "7555964" } + "answer": { + "entry": "7555964" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-02" }, + "fieldset_info": { + "id": "2020-05-a-02-02" + }, "fieldset_type": "marked" }, { @@ -42938,26 +50017,34 @@ "id": "2020-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-03" }, + "fieldset_info": { + "id": "2020-05-a-02-03" + }, "fieldset_type": "marked" }, { @@ -42971,26 +50058,34 @@ "id": "2020-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { "entry": null } + "answer": { + "entry": null + } }, { "id": "2020-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-04" }, + "fieldset_info": { + "id": "2020-05-a-02-04" + }, "fieldset_type": "marked" }, { @@ -43004,26 +50099,34 @@ "id": "2020-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { "entry": "201056" }, + "answer": { + "entry": "201056" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } }, { "id": "2020-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { "entry": "500000" } + "answer": { + "entry": "500000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-05" }, + "fieldset_info": { + "id": "2020-05-a-02-05" + }, "fieldset_type": "marked" }, { @@ -43037,26 +50140,34 @@ "id": "2020-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { "entry": "230094" }, + "answer": { + "entry": "230094" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } }, { "id": "2020-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { "entry": "200000" } + "answer": { + "entry": "200000" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-06" }, + "fieldset_info": { + "id": "2020-05-a-02-06" + }, "fieldset_type": "marked" }, { @@ -43070,26 +50181,34 @@ "id": "2020-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { "entry": "885410" }, + "answer": { + "entry": "885410" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { "entry": "1371907" } + "answer": { + "entry": "1371907" + } }, { "id": "2020-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { "entry": "1509098" } + "answer": { + "entry": "1509098" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-02-07" }, + "fieldset_info": { + "id": "2020-05-a-02-07" + }, "fieldset_type": "marked" }, { @@ -43100,7 +50219,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Personnel" }, + { + "contents": "Personnel" + }, { "actions": ["identity"], "targets": [ @@ -43121,7 +50242,9 @@ } ], [ - { "contents": "General administration" }, + { + "contents": "General administration" + }, { "actions": ["identity"], "targets": [ @@ -43142,7 +50265,9 @@ } ], [ - { "contents": "Contractors and brokers" }, + { + "contents": "Contractors and brokers" + }, { "actions": ["identity"], "targets": [ @@ -43163,7 +50288,9 @@ } ], [ - { "contents": "Claims processing" }, + { + "contents": "Claims processing" + }, { "actions": ["identity"], "targets": [ @@ -43184,7 +50311,9 @@ } ], [ - { "contents": "Outreach and marketing" }, + { + "contents": "Outreach and marketing" + }, { "actions": ["identity"], "targets": [ @@ -43205,7 +50334,9 @@ } ], [ - { "contents": "Health Services Initiatives (HSI)" }, + { + "contents": "Health Services Initiatives (HSI)" + }, { "actions": ["identity"], "targets": [ @@ -43226,7 +50357,9 @@ } ], [ - { "contents": "Other administrative costs" }, + { + "contents": "Other administrative costs" + }, { "actions": ["identity"], "targets": [ @@ -43247,7 +50380,9 @@ } ], [ - { "contents": "Total administrative costs" }, + { + "contents": "Total administrative costs" + }, { "actions": ["sum"], "targets": [ @@ -43286,7 +50421,9 @@ } ], [ - { "contents": "10% administrative cap" }, + { + "contents": "10% administrative cap" + }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -43323,10 +50460,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43339,7 +50484,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Total program costs " }, + { + "contents": "Total program costs " + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -43396,30 +50543,48 @@ } ], [ - { "contents": "eFMAP" }, + { + "contents": "eFMAP" + }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2020" }], + "targets": [ + { + "lookupFmapFy": "2020" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2021" }], + "targets": [ + { + "lookupFmapFy": "2021" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [{ "lookupFmapFy": "2022" }], + "targets": [ + { + "lookupFmapFy": "2022" + } + ], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { "contents": "Federal share" }, + { + "contents": "Federal share" + }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -43438,7 +50603,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -43457,7 +50624,9 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -43474,7 +50643,9 @@ } ], [ - { "contents": "State share" }, + { + "contents": "State share" + }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -43490,7 +50661,9 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-a')].answer.entry", - { "lookupFmapFy": "2020" }, + { + "lookupFmapFy": "2020" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -43520,7 +50693,9 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-b')].answer.entry", - { "lookupFmapFy": "2021" }, + { + "lookupFmapFy": "2021" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -43550,7 +50725,9 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-c')].answer.entry", - { "lookupFmapFy": "2022" }, + { + "lookupFmapFy": "2022" + }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -43568,10 +50745,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43612,7 +50797,10 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { "label": "Other", "value": "other" } + { + "label": "Other", + "value": "other" + } ] }, "questions": [ @@ -43620,7 +50808,9 @@ "id": "2020-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43644,8 +50834,14 @@ "answer": { "entry": "no", "options": [ - { "label": "Yes", "value": "yes" }, - { "label": "No", "value": "no" } + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } ] }, "questions": [ @@ -43653,7 +50849,9 @@ "id": "2020-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43689,26 +50887,34 @@ "id": "2020-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "53253" }, + "answer": { + "entry": "53253" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "" } + "answer": { + "entry": "" + } }, { "id": "2020-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-03-01" }, + "fieldset_info": { + "id": "2020-05-a-03-01" + }, "fieldset_type": "marked" }, { @@ -43723,26 +50929,34 @@ "id": "2020-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { "entry": null }, + "answer": { + "entry": null + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { "entry": "5" } + "answer": { + "entry": "5" + } }, { "id": "2020-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { "entry": null } + "answer": { + "entry": null + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-03-02" }, + "fieldset_info": { + "id": "2020-05-a-03-02" + }, "fieldset_type": "marked" }, { @@ -43751,7 +50965,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -43772,7 +50988,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -43794,10 +51012,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43821,26 +51047,34 @@ "id": "2020-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { "entry": "174401" }, + "answer": { + "entry": "174401" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { "entry": "80722" } + "answer": { + "entry": "80722" + } }, { "id": "2020-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { "entry": "84885" } + "answer": { + "entry": "84885" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-04-01" }, + "fieldset_info": { + "id": "2020-05-a-04-01" + }, "fieldset_type": "marked" }, { @@ -43855,26 +51089,34 @@ "id": "2020-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { "entry": "233" }, + "answer": { + "entry": "233" + }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { "entry": "3" } + "answer": { + "entry": "3" + } }, { "id": "2020-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { "entry": "252" } + "answer": { + "entry": "252" + } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { "id": "2020-05-a-04-02" }, + "fieldset_info": { + "id": "2020-05-a-04-02" + }, "fieldset_type": "marked" }, { @@ -43883,7 +51125,9 @@ "fieldset_info": { "rows": [ [ - { "contents": "Eligible children" }, + { + "contents": "Eligible children" + }, { "actions": ["identity"], "targets": [ @@ -43904,7 +51148,9 @@ } ], [ - { "contents": "PMPM cost" }, + { + "contents": "PMPM cost" + }, { "actions": ["identity"], "targets": [ @@ -43926,10 +51172,18 @@ ] ], "headers": [ - { "contents": "" }, - { "contents": "FFY 2020" }, - { "contents": "FFY 2021" }, - { "contents": "FFY 2022" } + { + "contents": "" + }, + { + "contents": "FFY 2020" + }, + { + "contents": "FFY 2021" + }, + { + "contents": "FFY 2022" + } ] }, "fieldset_type": "synthesized_table" @@ -43952,7 +51206,9 @@ "id": "2020-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } @@ -44029,7 +51285,9 @@ "id": "2020-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { "entry": null } + "answer": { + "entry": null + } } ] } diff --git a/services/database/data/seed/seed-section-base-2023.json b/services/database/data/seed/seed-section-base-2023.json index f8d6c8d01..bba4ec5ad 100644 --- a/services/database/data/seed/seed-section-base-2023.json +++ b/services/database/data/seed/seed-section-base-2023.json @@ -4888,7 +4888,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -5639,7 +5640,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -5734,7 +5736,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -5829,7 +5832,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -5925,7 +5929,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -6020,7 +6025,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -6122,7 +6128,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -6217,7 +6224,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -6312,7 +6320,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -6408,7 +6417,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { @@ -6503,7 +6513,8 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null + "entry": null, + "readonly": true }, "context_data": { "conditional_display": { diff --git a/services/database/package.json b/services/database/package.json index 1464e68c3..a43b99aeb 100644 --- a/services/database/package.json +++ b/services/database/package.json @@ -13,8 +13,8 @@ "serverless-dynamodb": "^0.2.53" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.621.0", - "@aws-sdk/lib-dynamodb": "^3.621.0", + "@aws-sdk/client-dynamodb": "^3.596.0", + "@aws-sdk/lib-dynamodb": "^3.596.0", "pg": "^8.11.4" } } diff --git a/services/database/scripts/remove-readonly-in-section-3c.js b/services/database/scripts/remove-readonly-in-section-3c.js deleted file mode 100644 index 22bead5f1..000000000 --- a/services/database/scripts/remove-readonly-in-section-3c.js +++ /dev/null @@ -1,99 +0,0 @@ -/* eslint-disable no-console */ -/* - * Local: - * `DYNAMODB_URL="http://localhost:8000" dynamoPrefix="local" node services/database/scripts/remove-readonly-in-section-3c.js` - * Branch: - * dynamoPrefix="YOUR BRANCH NAME" node services/database/scripts/remove-readonly-in-section-3c.js - */ - -const { buildDynamoClient, scan, update } = require("./utils/dynamodb.js"); - -const isLocal = !!process.env.DYNAMODB_URL; - -const sectionTable = isLocal - ? "local-section" - : process.env.dynamoPrefix + "-section"; - -async function handler() { - try { - console.log("Searching for 2023 Forms"); - - buildDynamoClient(); - - console.log(`Processing table ${sectionTable}`); - const existingItems = await scan({ - TableName: sectionTable, - }); - const filteredItems = filter(existingItems); - const transformedItems = await transform(filteredItems); - await update(sectionTable, transformedItems); - console.log(`Touched ${transformedItems.length} in table ${sectionTable}`); - console.debug("Data fix complete"); - - return { - statusCode: 200, - body: "All done!", - }; - } catch (err) { - console.error(err); - return { - statusCode: 500, - body: err.message, - }; - } -} - -function filter(items) { - return items.filter((item) => item.year === 2023 && item.sectionId === 3); -} - -async function transform(items) { - // Touch sync field only - const transformed = items.map((section) => { - console.log("Transforming section!", section); - return updateSection3(section); - }); - - return transformed; -} - -const updateSection3 = (section) => { - section.contents.section.subsections[2].parts.map((part) => { - return recurseAndUpdateQuestions(part.questions, section.pk); - }); - return section; -}; - -const recurseAndUpdateQuestions = (questions, reportBeingTransformed) => { - const fieldstoRemoveReadonly = [ - "2023-03-c-05-19-a", - "2023-03-c-06-10-a", - "2023-03-c-06-11-a", - "2023-03-c-06-12-a", - "2023-03-c-06-13-a", - "2023-03-c-06-14-a", - "2023-03-c-06-15-a", - "2023-03-c-06-16-a", - "2023-03-c-06-17-a", - "2023-03-c-06-18-a", - "2023-03-c-06-19-a", - ]; - for (let question of questions) { - if ( - fieldstoRemoveReadonly.includes(question?.id) && - question?.answer?.readonly - ) { - console.log( - reportBeingTransformed, - "Found and deleting readonly field from question", - question.id - ); - delete question.answer.readonly; - } - if (question?.questions) { - recurseAndUpdateQuestions(question.questions, reportBeingTransformed); - } - } -}; - -handler(); diff --git a/services/database/serverless.yml b/services/database/serverless.yml index cd23c4b87..4cb11570c 100644 --- a/services/database/serverless.yml +++ b/services/database/serverless.yml @@ -21,6 +21,7 @@ custom: serverlessTerminationProtection: stages: - main + - master - val - production acsTableName: ${self:custom.stage}-acs diff --git a/services/database/yarn.lock b/services/database/yarn.lock index 12d910970..11e44237c 100644 --- a/services/database/yarn.lock +++ b/services/database/yarn.lock @@ -23,19 +23,6 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-crypto/sha256-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" - integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== - dependencies: - "@aws-crypto/sha256-js" "^5.2.0" - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - "@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" @@ -45,15 +32,6 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" -"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" - integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== - dependencies: - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" - "@aws-crypto/supports-web-crypto@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" @@ -61,13 +39,6 @@ dependencies: tslib "^1.11.1" -"@aws-crypto/supports-web-crypto@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" - integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== - dependencies: - tslib "^2.6.2" - "@aws-crypto/util@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" @@ -77,15 +48,6 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-crypto/util@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" - integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== - dependencies: - "@aws-sdk/types" "^3.222.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - "@aws-sdk/client-dynamodb@^3.428.0": version "3.569.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.569.0.tgz#960f0f9d112d883d30361500a82b50c55df25fb8" @@ -136,53 +98,53 @@ tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" - integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-endpoint-discovery" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" + integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-endpoint-discovery" "3.587.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" uuid "^9.0.1" @@ -232,48 +194,49 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso-oidc@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" + integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -321,47 +284,47 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" + integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -411,49 +374,49 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sts@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" + integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -470,19 +433,17 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== +"@aws-sdk/core@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" + integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - fast-xml-parser "4.4.1" + "@smithy/core" "^2.2.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + fast-xml-parser "4.2.5" tslib "^2.6.2" "@aws-sdk/credential-provider-env@3.568.0": @@ -495,14 +456,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== +"@aws-sdk/credential-provider-env@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" + integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/credential-provider-http@3.568.0": @@ -520,19 +481,19 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== +"@aws-sdk/credential-provider-http@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" + integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@aws-sdk/types" "3.577.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" "@aws-sdk/credential-provider-ini@3.568.0": @@ -551,21 +512,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== +"@aws-sdk/credential-provider-ini@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" + integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/credential-provider-node@3.569.0": @@ -586,22 +547,22 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== +"@aws-sdk/credential-provider-node@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" + integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-ini" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/credential-provider-process@3.568.0": @@ -615,15 +576,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== +"@aws-sdk/credential-provider-process@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" + integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/credential-provider-sso@3.568.0": @@ -639,17 +600,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== +"@aws-sdk/credential-provider-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" + integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/client-sso" "3.592.0" + "@aws-sdk/token-providers" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/credential-provider-web-identity@3.568.0": @@ -662,14 +623,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== +"@aws-sdk/credential-provider-web-identity@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" + integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.568.0": @@ -698,14 +659,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" - integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== +"@aws-sdk/lib-dynamodb@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" + integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== dependencies: - "@aws-sdk/util-dynamodb" "3.621.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@aws-sdk/util-dynamodb" "3.596.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/middleware-endpoint-discovery@3.568.0": @@ -720,16 +681,16 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" - integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== +"@aws-sdk/middleware-endpoint-discovery@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" + integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/middleware-host-header@3.567.0": @@ -742,14 +703,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" + integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/middleware-logger@3.568.0": @@ -761,13 +722,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" + integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/middleware-recursion-detection@3.567.0": @@ -780,14 +741,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== +"@aws-sdk/middleware-recursion-detection@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" + integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/middleware-user-agent@3.567.0": @@ -801,15 +762,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" + integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/region-config-resolver@3.567.0": @@ -824,16 +785,16 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" + integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" "@aws-sdk/token-providers@3.568.0": @@ -847,15 +808,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" + integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/types@3.567.0": @@ -866,12 +827,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" + integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -889,10 +850,10 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" - integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== +"@aws-sdk/util-dynamodb@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" + integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== dependencies: tslib "^2.6.2" @@ -906,14 +867,14 @@ "@smithy/util-endpoints" "^1.2.0" tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" + integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" + "@smithy/util-endpoints" "^2.0.1" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -933,13 +894,13 @@ bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" + integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" @@ -953,14 +914,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" + integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/util-utf8-browser@^3.0.0": @@ -978,12 +939,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@smithy/abort-controller@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" + integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/config-resolver@^2.2.0": @@ -997,15 +958,15 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" + integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" "@smithy/core@^1.4.2": @@ -1022,18 +983,18 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== +"@smithy/core@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.0.tgz#f1b0837b7afa5507a9693c1e93da6ca9808022c1" + integrity sha512-ygLZSSKgt9bR8HAxR9mK+U5obvAJBr6zlQuhN5soYWx/amjDoQN4dTkydTypgKe6rIbUjTILyLU+W5XFwXr4kg== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" "@smithy/credential-provider-imds@^2.3.0": @@ -1047,15 +1008,15 @@ "@smithy/url-parser" "^2.2.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" + integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" tslib "^2.6.2" "@smithy/fetch-http-handler@^2.5.0": @@ -1069,14 +1030,14 @@ "@smithy/util-base64" "^2.3.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" + integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" @@ -1090,12 +1051,12 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" + integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1108,12 +1069,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== +"@smithy/invalid-dependency@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" + integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -1139,13 +1100,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== +"@smithy/middleware-content-length@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" + integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/middleware-endpoint@^2.5.1": @@ -1161,17 +1122,17 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== +"@smithy/middleware-endpoint@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" + integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" "@smithy/middleware-retry@^2.3.1": @@ -1189,18 +1150,18 @@ tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== +"@smithy/middleware-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" + integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/service-error-classification" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" tslib "^2.6.2" uuid "^9.0.1" @@ -1212,12 +1173,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-serde@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" + integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/middleware-stack@^2.2.0": @@ -1228,12 +1189,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-stack@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" + integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/node-config-provider@^2.3.0": @@ -1246,14 +1207,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" + integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/node-http-handler@^2.5.0": @@ -1267,15 +1228,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" + integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/property-provider@^2.2.0": @@ -1286,12 +1247,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" + integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/protocol-http@^3.3.0": @@ -1302,12 +1263,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" + integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/querystring-builder@^2.2.0": @@ -1319,12 +1280,12 @@ "@smithy/util-uri-escape" "^2.2.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" + integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" @@ -1336,12 +1297,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" + integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/service-error-classification@^2.1.5": @@ -1351,12 +1312,12 @@ dependencies: "@smithy/types" "^2.12.0" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" + integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/shared-ini-file-loader@^2.4.0": version "2.4.0" @@ -1366,12 +1327,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" + integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/signature-v4@^2.3.0": @@ -1387,16 +1348,15 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" + integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1413,16 +1373,16 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" + integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -1439,10 +1399,10 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" + integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== dependencies: tslib "^2.6.2" @@ -1455,13 +1415,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" + integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-base64@^2.3.0": @@ -1551,14 +1511,14 @@ bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" + integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" @@ -1575,17 +1535,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== +"@smithy/util-defaults-mode-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" + integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-endpoints@^1.2.0": @@ -1597,13 +1557,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" + integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^2.2.0": @@ -1628,12 +1588,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" + integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-retry@^2.2.0": @@ -1645,13 +1605,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" + integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-stream@^2.2.0": @@ -1668,14 +1628,14 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" + integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1696,7 +1656,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.0.0", "@smithy/util-utf8@^2.3.0": +"@smithy/util-utf8@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== @@ -1721,13 +1681,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== +"@smithy/util-waiter@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.0.tgz#26bcc5bbbf1de9360a7aeb3b3919926fc6afa2bc" + integrity sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" ansi-colors@4.1.1: @@ -1922,13 +1882,6 @@ fast-xml-parser@4.2.5: dependencies: strnum "^1.0.5" -fast-xml-parser@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" - integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== - dependencies: - strnum "^1.0.5" - fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" diff --git a/services/ui-auth/package.json b/services/ui-auth/package.json index 38f0cd96a..6435a3920 100644 --- a/services/ui-auth/package.json +++ b/services/ui-auth/package.json @@ -10,6 +10,6 @@ "license": "CC0-1.0", "devDependencies": {}, "dependencies": { - "@aws-sdk/client-cognito-identity-provider": "^3.621.0" + "@aws-sdk/client-cognito-identity-provider": "^3.596.0" } } diff --git a/services/ui-auth/serverless.yml b/services/ui-auth/serverless.yml index b8b50f50b..068112c66 100644 --- a/services/ui-auth/serverless.yml +++ b/services/ui-auth/serverless.yml @@ -29,7 +29,6 @@ plugins: - serverless-bundle - serverless-iam-helper - serverless-s3-bucket-helper - - "@enterprise-cmcs/serverless-waf-plugin" s3BucketHelper: loggingConfiguration: @@ -40,14 +39,10 @@ custom: project: "carts" stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} - wafPlugin: - name: ${self:service}-${self:custom.stage}-webacl-waf - wafExcludeRules: - awsCommon: - - "SizeRestrictions_BODY" serverlessTerminationProtection: stages: - main + - master - val - production sesSourceEmailAddress: ${ssm:/configuration/${self:custom.stage}/sesSourceEmailAddress, ssm:/configuration/default/sesSourceEmailAddress, ""} @@ -121,18 +116,6 @@ resources: StringAttributeConstraints: MinLength: 0 MaxLength: 256 - UserPoolAddOns: - AdvancedSecurityMode: ENFORCED - UserPoolTags: - Name: ${self:custom.stage}-user-pool - - # Associate the WAF Web ACL with the Cognito User Pool - CognitoUserPoolWAFAssociation: - Type: 'AWS::WAFv2::WebACLAssociation' - Properties: - ResourceArn: !GetAtt CognitoUserPool.Arn - WebACLArn: !GetAtt WafPluginAcl.Arn - CognitoUserPoolClient: Type: AWS::Cognito::UserPoolClient Properties: diff --git a/services/ui-auth/yarn.lock b/services/ui-auth/yarn.lock index ac8172516..4c68382e1 100644 --- a/services/ui-auth/yarn.lock +++ b/services/ui-auth/yarn.lock @@ -2,404 +2,411 @@ # yarn lockfile v1 -"@aws-crypto/sha256-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" - integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== - dependencies: - "@aws-crypto/sha256-js" "^5.2.0" - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" +"@aws-crypto/ie11-detection@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" + integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== + dependencies: + tslib "^1.11.1" + +"@aws-crypto/sha256-browser@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" + integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== + dependencies: + "@aws-crypto/ie11-detection" "^3.0.0" + "@aws-crypto/sha256-js" "^3.0.0" + "@aws-crypto/supports-web-crypto" "^3.0.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" -"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" - integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== +"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" + integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== dependencies: - "@aws-crypto/util" "^5.2.0" + "@aws-crypto/util" "^3.0.0" "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/supports-web-crypto@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" - integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== +"@aws-crypto/supports-web-crypto@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" + integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== dependencies: - tslib "^2.6.2" + tslib "^1.11.1" -"@aws-crypto/util@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" - integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== +"@aws-crypto/util@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" + integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== dependencies: "@aws-sdk/types" "^3.222.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-cognito-identity-provider@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.621.0.tgz#7e5d85943fff1cfb0379866c2c3b3c91fd3f4ffa" - integrity sha512-Tu2m18zW87gJwme6J74p/ZrfC5eJ3kv4yXpCAkfOz1JBO0vfxdoZIkkZ94G5tuCpiS5kljwS6GXpsKOojpVXcg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/util-utf8-browser" "^3.0.0" + tslib "^1.11.1" + +"@aws-sdk/client-cognito-identity-provider@^3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.596.0.tgz#ffa1e49bb58e216ed09b43b7fbc8b51dbac243cf" + integrity sha512-4rznKmxVm2HdgSNbHd59G1ahMkyclzQGiEsYxDnG1RZH1oM6Awoxt2laAL0rYEKSUn/+NyDABMpog73xGSvvpQ== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso-oidc@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" + integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sts" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" + integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" +"@aws-sdk/client-sts@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" + integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== + dependencies: + "@aws-crypto/sha256-browser" "3.0.0" + "@aws-crypto/sha256-js" "3.0.0" + "@aws-sdk/client-sso-oidc" "3.596.0" + "@aws-sdk/core" "3.592.0" + "@aws-sdk/credential-provider-node" "3.596.0" + "@aws-sdk/middleware-host-header" "3.577.0" + "@aws-sdk/middleware-logger" "3.577.0" + "@aws-sdk/middleware-recursion-detection" "3.577.0" + "@aws-sdk/middleware-user-agent" "3.587.0" + "@aws-sdk/region-config-resolver" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@aws-sdk/util-user-agent-browser" "3.577.0" + "@aws-sdk/util-user-agent-node" "3.587.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/core" "^2.2.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/hash-node" "^3.0.0" + "@smithy/invalid-dependency" "^3.0.0" + "@smithy/middleware-content-length" "^3.0.0" + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-retry" "^3.0.3" + "@smithy/middleware-serde" "^3.0.0" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.3" + "@smithy/util-defaults-mode-node" "^3.0.3" + "@smithy/util-endpoints" "^2.0.1" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== - dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - fast-xml-parser "4.4.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" +"@aws-sdk/core@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" + integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== + dependencies: + "@smithy/core" "^2.2.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/signature-v4" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + fast-xml-parser "4.2.5" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-env@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" + integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" + integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== +"@aws-sdk/credential-provider-ini@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" + integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== +"@aws-sdk/credential-provider-node@3.596.0": + version "3.596.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" + integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.587.0" + "@aws-sdk/credential-provider-http" "3.596.0" + "@aws-sdk/credential-provider-ini" "3.596.0" + "@aws-sdk/credential-provider-process" "3.587.0" + "@aws-sdk/credential-provider-sso" "3.592.0" + "@aws-sdk/credential-provider-web-identity" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== +"@aws-sdk/credential-provider-process@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" + integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== +"@aws-sdk/credential-provider-sso@3.592.0": + version "3.592.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" + integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/client-sso" "3.592.0" + "@aws-sdk/token-providers" "3.587.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/credential-provider-web-identity@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" + integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-host-header@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" + integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" + integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-recursion-detection@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" + integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== + dependencies: + "@aws-sdk/types" "3.577.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" + integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@aws-sdk/util-endpoints" "3.587.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" + integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" + integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" + integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -410,14 +417,14 @@ "@smithy/types" "^2.5.0" tslib "^2.5.0" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" + integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" + "@smithy/util-endpoints" "^2.0.1" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -427,104 +434,123 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.577.0": + version "3.577.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" + integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.587.0": + version "3.587.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" + integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.577.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@aws-sdk/util-utf8-browser@^3.0.0": + version "3.259.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" + integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== dependencies: - "@smithy/types" "^3.3.0" + tslib "^2.3.1" + +"@smithy/abort-controller@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" + integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== + dependencies: + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/abort-controller@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.1.tgz#bb8debe1c23ca62a61b33a9ee2918f5a79d81928" + integrity sha512-Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/config-resolver@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" + integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== + dependencies: + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== +"@smithy/core@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.1.tgz#92ed71eb96ef16d5ac8b23dbdf913bcb225ab875" + integrity sha512-R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-endpoint" "^3.0.2" + "@smithy/middleware-retry" "^3.0.4" + "@smithy/middleware-serde" "^3.0.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/smithy-client" "^3.1.2" + "@smithy/types" "^3.1.0" + "@smithy/util-middleware" "^3.0.1" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" + integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" + integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/fetch-http-handler@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz#eff4056e819b3591d1c5d472ee58c2981886920a" + integrity sha512-0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ== dependencies: - "@smithy/types" "^3.3.0" - "@smithy/util-buffer-from" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" + "@smithy/protocol-http" "^4.0.1" + "@smithy/querystring-builder" "^3.0.1" + "@smithy/types" "^3.1.0" + "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== +"@smithy/hash-node@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" + integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" + "@smithy/util-buffer-from" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/is-array-buffer@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" - integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== +"@smithy/invalid-dependency@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" + integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== dependencies: + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/is-array-buffer@^3.0.0": @@ -534,152 +560,276 @@ dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== +"@smithy/middleware-content-length@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" + integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== - dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" +"@smithy/middleware-endpoint@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" + integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== + dependencies: + "@smithy/middleware-serde" "^3.0.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + "@smithy/url-parser" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-endpoint@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz#93bb575a25bb0bd5d1d18cd77157ccb2ba15112a" + integrity sha512-gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/middleware-serde" "^3.0.1" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/shared-ini-file-loader" "^3.1.1" + "@smithy/types" "^3.1.0" + "@smithy/url-parser" "^3.0.1" + "@smithy/util-middleware" "^3.0.1" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": +"@smithy/middleware-retry@^3.0.3": version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" + integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/service-error-classification" "^3.0.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" + "@smithy/util-middleware" "^3.0.0" + "@smithy/util-retry" "^3.0.0" tslib "^2.6.2" + uuid "^9.0.1" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/middleware-retry@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz#4f1a23c218fe279659c3d88ec1c18bf19938eba6" + integrity sha512-Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/service-error-classification" "^3.0.1" + "@smithy/smithy-client" "^3.1.2" + "@smithy/types" "^3.1.0" + "@smithy/util-middleware" "^3.0.1" + "@smithy/util-retry" "^3.0.1" tslib "^2.6.2" + uuid "^9.0.1" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/middleware-serde@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" + integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/middleware-serde@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz#566ec46ee84873108c1cea26b3f3bd2899a73249" + integrity sha512-ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/middleware-stack@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" + integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/middleware-stack@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz#9418f1295efda318c181bf3bca65173a75d133e5" + integrity sha512-fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/node-config-provider@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" + integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== + dependencies: + "@smithy/property-provider" "^3.1.0" + "@smithy/shared-ini-file-loader" "^3.1.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/node-config-provider@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz#a361ab228d2229b03cc2fbdfd304055c38127614" + integrity sha512-z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA== + dependencies: + "@smithy/property-provider" "^3.1.1" + "@smithy/shared-ini-file-loader" "^3.1.1" + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/node-http-handler@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" + integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== + dependencies: + "@smithy/abort-controller" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/querystring-builder" "^3.0.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/node-http-handler@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz#40e1ebe00aeb628a46a3a12b14ad6cabb69b576e" + integrity sha512-hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA== + dependencies: + "@smithy/abort-controller" "^3.0.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/querystring-builder" "^3.0.1" + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/property-provider@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" + integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== + dependencies: + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/property-provider@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.1.tgz#4849b69b83ac97e68e80d2dc0c2b98ce5950dffe" + integrity sha512-YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw== + dependencies: + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/protocol-http@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" + integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== + dependencies: + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/protocol-http@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.1.tgz#7b57080565816f229d2391726f537e13371c7e38" + integrity sha512-eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg== + dependencies: + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/querystring-builder@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" + integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== + dependencies: + "@smithy/types" "^3.0.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-builder@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz#8fb20e1d13154661612954c5ba448e0875be6118" + integrity sha512-vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" + "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/querystring-parser@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" + integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/querystring-parser@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz#68589196fedf280aad2c0a69a2a016f78b2137cf" + integrity sha512-Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.1.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/service-error-classification@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" + integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== + dependencies: + "@smithy/types" "^3.0.0" + +"@smithy/service-error-classification@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz#23db475d3cef726e8bf3435229e6e04e4de92430" + integrity sha512-ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA== + dependencies: + "@smithy/types" "^3.1.0" + +"@smithy/shared-ini-file-loader@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" + integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== + dependencies: + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/shared-ini-file-loader@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz#752ecd8962a660ded75d25341a48feb94f145a6f" + integrity sha512-nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g== + dependencies: + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/signature-v4@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" + integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.0" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" + integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== + dependencies: + "@smithy/middleware-endpoint" "^3.0.1" + "@smithy/middleware-stack" "^3.0.0" + "@smithy/protocol-http" "^4.0.0" + "@smithy/types" "^3.0.0" + "@smithy/util-stream" "^3.0.1" + tslib "^2.6.2" + +"@smithy/smithy-client@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.2.tgz#1c27ab4910bbfd6c0bc04ddd8412494e7a7daba7" + integrity sha512-f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.0.2" + "@smithy/middleware-stack" "^3.0.1" + "@smithy/protocol-http" "^4.0.1" + "@smithy/types" "^3.1.0" + "@smithy/util-stream" "^3.0.2" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -689,20 +839,36 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" + integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/types@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.1.0.tgz#e2eb2e2130026a8a0631b2605c17df1975aa99d6" + integrity sha512-qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@smithy/url-parser@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" + integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== + dependencies: + "@smithy/querystring-parser" "^3.0.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/url-parser@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.1.tgz#5451fc7034e9eda112696d1a9508746a7f8b0521" + integrity sha512-G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg== + dependencies: + "@smithy/querystring-parser" "^3.0.1" + "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -728,14 +894,6 @@ dependencies: tslib "^2.6.2" -"@smithy/util-buffer-from@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" - integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== - dependencies: - "@smithy/is-array-buffer" "^2.2.0" - tslib "^2.6.2" - "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -751,37 +909,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" + integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== +"@smithy/util-defaults-mode-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" + integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/config-resolver" "^3.0.1" + "@smithy/credential-provider-imds" "^3.1.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/property-provider" "^3.1.0" + "@smithy/smithy-client" "^3.1.1" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" + integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -791,31 +949,62 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" + integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-middleware@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.1.tgz#3e0eabaf936e62651a0b9a7c7c3bbe43d3971c91" + integrity sha512-WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ== + dependencies: + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/util-retry@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" + integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== + dependencies: + "@smithy/service-error-classification" "^3.0.0" + "@smithy/types" "^3.0.0" + tslib "^2.6.2" + +"@smithy/util-retry@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.1.tgz#24037ff87a314a1ac99f80da43f579ae2352fe18" + integrity sha512-5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw== + dependencies: + "@smithy/service-error-classification" "^3.0.1" + "@smithy/types" "^3.1.0" + tslib "^2.6.2" + +"@smithy/util-stream@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" + integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.0.1" + "@smithy/node-http-handler" "^3.0.0" + "@smithy/types" "^3.0.0" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-buffer-from" "^3.0.0" + "@smithy/util-hex-encoding" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.0.2": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.2.tgz#ed1377bfe824d8acfc105ab2d17ec4f376382cb2" + integrity sha512-n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.0.2" + "@smithy/node-http-handler" "^3.0.1" + "@smithy/types" "^3.1.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -829,14 +1018,6 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.0.0": - version "2.3.0" - resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" - integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== - dependencies: - "@smithy/util-buffer-from" "^2.2.0" - tslib "^2.6.2" - "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -850,10 +1031,10 @@ bowser@^2.11.0: resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== -fast-xml-parser@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" - integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== +fast-xml-parser@4.2.5: + version "4.2.5" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" + integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== dependencies: strnum "^1.0.5" @@ -862,7 +1043,12 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -tslib@^2.5.0, tslib@^2.6.2: +tslib@^1.11.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 39edf88ae..40c10cc74 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -17,11 +17,11 @@ "@testing-library/user-event": "^14.5.1", "@vitejs/plugin-react": "^4.2.1", "aws-amplify": "^5.3.4", - "date-fns": "^3.6.0", "font-awesome": "^4.7.0", "jsonpath": "^1.0.2", "launchdarkly-react-client-sdk": "^3.3.2", "mathjs": "^7.5.0", + "moment": "^2.29.4", "prop-types": "^15.7.2", "react": "^16.13.1", "react-data-table-component": "^6.11.6", @@ -36,7 +36,7 @@ "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0", "sass": "^1.77.1", - "vite": "^5.4.6", + "vite": "^5.2.11", "vite-tsconfig-paths": "^4.3.2" }, "scripts": { diff --git a/services/ui-src/serverless.yml b/services/ui-src/serverless.yml index eff1d6bdf..711d6d61f 100644 --- a/services/ui-src/serverless.yml +++ b/services/ui-src/serverless.yml @@ -29,6 +29,7 @@ custom: serverlessTerminationProtection: stages: - main + - master - val - production api_region: ${param:ApiRegion} diff --git a/services/ui-src/src/AppRoutes.jsx b/services/ui-src/src/AppRoutes.jsx index 93c69821e..d75a296c7 100644 --- a/services/ui-src/src/AppRoutes.jsx +++ b/services/ui-src/src/AppRoutes.jsx @@ -5,7 +5,7 @@ import Home from "./components/layout/Home"; import Footer from "./components/layout/Footer"; import Print from "./components/sections/Print"; import Spinner from "./components/utils/Spinner"; -import UserInfo from "./components/sections/UserInfo"; +import Userinfo from "./components/sections/Userinfo"; import UserProfile from "./components/sections/UserProfile"; import { LocalLogins } from "./components/sections/login/LocalLogins"; import { useUser } from "./hooks/authHooks"; @@ -45,7 +45,7 @@ const AppRoutes = () => { {/* These routes are available to everyone, so define them here */} - + diff --git a/services/ui-src/src/actions/uncertify.js b/services/ui-src/src/actions/uncertify.js index d9bfefc74..b908de0d5 100644 --- a/services/ui-src/src/actions/uncertify.js +++ b/services/ui-src/src/actions/uncertify.js @@ -6,7 +6,7 @@ export const UNCERTIFY = "UNCERTIFY"; export const UNCERTIFY_SUCCESS = "UNCERTIFY_SUCCESS"; export const UNCERTIFY_FAILURE = "UNCERTIFY_FAILURE"; -export const uncertifyReport = +export const theUncertify = (stateCode, reportYear) => async (dispatch, getState) => { const stateObject = getState(); const user = stateObject.stateUser.currentUser; diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 99a40a1ab..4b913d5b1 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -1,13 +1,12 @@ import React, { useEffect, useState } from "react"; -import { useDispatch, useSelector } from "react-redux"; import PropTypes from "prop-types"; import Question from "./Question"; +import { connect, useDispatch } from "react-redux"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question, printView }) => { +const DataGrid = ({ question, lastYearFormData }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); - const lastYearFormData = useSelector((state) => state.lastYearFormData); const dispatch = useDispatch(); const rowStyle = @@ -139,7 +138,6 @@ const DataGrid = ({ question, printView }) => { hideNumber={question.type !== "fieldset"} question={question.question} prevYear={question.prevYear} - printView={printView} />
); @@ -150,7 +148,16 @@ const DataGrid = ({ question, printView }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, - printView: PropTypes.bool, + year: PropTypes.number.isRequired, + state: PropTypes.string.isRequired, + lastYearFormData: PropTypes.object.isRequired, }; -export default DataGrid; +const mapStateToProps = (state) => ({ + year: state.formData[0].contents.section.year, + state: state.formData[0].contents.section.state, + lastYearFormData: state.lastYearFormData, + lastYearTotals: state.lastYearTotals, +}); + +export default connect(mapStateToProps)(DataGrid); diff --git a/services/ui-src/src/components/fields/Fieldset.jsx b/services/ui-src/src/components/fields/Fieldset.jsx index d70c69073..f4982f4ae 100644 --- a/services/ui-src/src/components/fields/Fieldset.jsx +++ b/services/ui-src/src/components/fields/Fieldset.jsx @@ -3,9 +3,9 @@ import PropTypes from "prop-types"; import Question from "./Question"; import DataGrid from "./DataGrid"; -import SynthesizedTable from "./SynthesizedTable"; +import { SynthesizedTable } from "./SynthesizedTable"; import { NoninteractiveTable } from "./NoninteractiveTable"; -import SynthesizedValue from "./SynthesizedValue"; +import { SynthesizedValue } from "./SynthesizedValue"; /* * Not done: diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index ecd344142..fee83e44f 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -4,54 +4,12 @@ import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; -const getPrevYearValue = (question, lastYearFormData) => { - let prevYearValue; - - // Split and create array from id - const splitID = question.id.split("-"); - - // the subquestion id (a, b, c, etc) - const questionId = splitID[5]; - - // Custom handling for -03-c-05 and -03-c-06 - if ( - splitID[1] === "03" && - splitID[2] === "c" && - (splitID[3] === "05" || splitID[3] === "06") && - questionId === "a" && - parseInt(splitID[4]) > 2 && - parseInt(splitID[4]) < 10 - ) { - // Set year to last year - splitID[0] = parseInt(splitID[0]) - 1; - splitID.pop(); - - const fieldsetId = splitID.join("-"); - const partIndex = parseInt(splitID[3]) - 1; - - // Get questions from last years JSON - const questions = - lastYearFormData?.[3]?.contents.section.subsections[2].parts[partIndex] - .questions; - - // Filter down to this question - const matchingQuestion = questions?.filter( - (question) => fieldsetId === question?.fieldset_info?.id - ); - - // The first will always be correct - if (matchingQuestion?.[0]) { - prevYearValue = matchingQuestion[0].questions[0].answer?.entry; - } - } - return prevYearValue; -}; - -const Integer = ({ onChange, question, prevYear, printView, ...props }) => { +const Integer = ({ onChange, question, prevYear, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); - const lastYearFormData = useSelector((state) => state.lastYearFormData); - + const lastYearTotals = useSelector((state) => state.lastYearTotals); + const prevYearNumber = + lastYearTotals[question.id.substring(0, question.id.length - 2)]; const change = ({ target: { name, value } }) => { const stripped = value.replace(/[^0-9]+/g, ""); const parsed = parseFloat(stripped); @@ -67,26 +25,22 @@ const Integer = ({ onChange, question, prevYear, printView, ...props }) => { } }; - const isLessThanElevenMask = (value) => { + if (prevYearNumber && question.id.indexOf("-a") > -1) { return ( - printView && - question.mask === "lessThanEleven" && - value <= 10 && - value > 0 + ); - }; - - const renderAnswer = () => { - if (answer === null) { - const value = - getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; - if (isLessThanElevenMask(value)) return "<11"; - return value; - } else { - if (isLessThanElevenMask(answer)) return "<11"; - return answer || Number.isInteger(answer) ? answer : ""; - } - }; + } + const renderAnswer = (val) => (val || Number.isInteger(val) ? val : ""); // may attempt to rerender string on page load, so both val || isInteger return ( { name={question.id} numeric onChange={change} - value={renderAnswer()} + value={answer != null ? renderAnswer(answer) : prevYear && prevYear.value} {...props} /> ); @@ -105,7 +59,7 @@ Integer.propTypes = { onChange: PropTypes.func.isRequired, question: PropTypes.object.isRequired, prevYear: PropTypes.object, - printView: PropTypes.bool, }; +export { Integer }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index 54f8672ab..e9bb8095e 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -6,40 +6,7 @@ import Integer from "./Integer"; import { screen, render, fireEvent } from "@testing-library/react"; const mockStore = configureMockStore(); -const lastYearFormData = [ - {}, - {}, - {}, - { - contents: { - section: { - subsections: [ - {}, - {}, - { - parts: [ - {}, - {}, - {}, - {}, - { - questions: [ - { - fieldset_info: { - id: "2022-03-c-05-03", - }, - questions: [{ answer: { entry: 3000 } }], - }, - ], - }, - ], - }, - ], - }, - }, - }, -]; -const store = mockStore({ lastYearTotals: { 2022: [] }, lastYearFormData }); +const store = mockStore({ lastYearTotals: { 2022: [] } }); const buildInteger = (intProps) => { return ( @@ -47,7 +14,6 @@ const buildInteger = (intProps) => { ); }; - describe("", () => { it("should render correctly", () => { const props = { question: { id: "2023-00-a-01-01", answer: 1 } }; @@ -63,7 +29,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "Example Question", + label: "How many lightbulbs does it take to change a man?", answer: { entry: 123 }, }, }; @@ -79,7 +45,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "Example Question", + label: "How many lightbulbs does it take to change a man?", answer: { entry: 123 }, }, }; @@ -95,7 +61,7 @@ describe("", () => { const props = { question: { id: "2023-00-a-01-01", - label: "Example Question", + label: "How many lightbulbs does it take to change a man?", answer: { entry: "hope" }, }, }; @@ -107,67 +73,4 @@ describe("", () => { expect(screen.queryByDisplayValue("raw text")).not.toBeInTheDocument(); expect(screen.getByRole("alert")).toBeInTheDocument(); }); - - it("should show <11 if passed >0 and <=10 with printView and lessThanEleven", () => { - const props = { - question: { - id: "2023-00-a-01-01", - label: "Example Question", - answer: { entry: "5" }, - mask: "lessThanEleven", - }, - printView: true, - }; - - render(buildInteger(props)); - expect(screen.getByDisplayValue("<11")).toBeInTheDocument(); - expect(screen.queryByDisplayValue("5")).not.toBeInTheDocument(); - }); - - it("should show original answer if passed >=11 with printView and lessThanEleven mask", () => { - const props = { - question: { - id: "2023-00-a-01-01", - label: "Example Question", - answer: { entry: "12" }, - mask: "lessThanEleven", - }, - printView: true, - }; - - render(buildInteger(props)); - expect(screen.getByDisplayValue("12")).toBeInTheDocument(); - }); - - it("should show original answer if passed 0 with printView and lessThanEleven mask", () => { - const props = { - question: { - id: "2023-00-a-01-01", - label: "Example Question", - answer: { entry: "0" }, - mask: "lessThanEleven", - }, - printView: true, - }; - - render(buildInteger(props)); - expect(screen.getByDisplayValue("0")).toBeInTheDocument(); - }); - - it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { - const props = { - question: { - id: "2023-03-c-05-03-a", - label: "How much?", - answer: { entry: null }, - }, - }; - - render(buildInteger(props)); - - expect(screen.getByDisplayValue("3000")).toBeInTheDocument(); - const input = screen.getByRole("textbox"); - fireEvent.change(input, { target: { value: 234 } }); - expect(screen.getByDisplayValue("234")).toBeInTheDocument(); - }); }); diff --git a/services/ui-src/src/components/fields/Money.jsx b/services/ui-src/src/components/fields/Money.jsx index dba1ac251..d7fcce141 100644 --- a/services/ui-src/src/components/fields/Money.jsx +++ b/services/ui-src/src/components/fields/Money.jsx @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import Integer from "./Integer"; +import { Integer } from "./Integer"; const Money = ({ ...props }) => { return ; diff --git a/services/ui-src/src/components/fields/Objective.jsx b/services/ui-src/src/components/fields/Objective.jsx index abf0796e7..a7470e65e 100644 --- a/services/ui-src/src/components/fields/Objective.jsx +++ b/services/ui-src/src/components/fields/Objective.jsx @@ -4,13 +4,14 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { +const Objective = ({ headerRef, objective, objectiveNumber }) => { const first = objective.questions[0].answer.readonly === true; const name = first ? objective.questions[0].answer.default_entry : objective.questions[0].answer.entry; const children = first ? objective.questions.slice(1) : objective.questions; + return ( <>
@@ -26,7 +27,7 @@ const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { {children.map((q) => (
- +
))}
@@ -37,7 +38,6 @@ Objective.propTypes = { headerRef: PropTypes.func.isRequired, objective: PropTypes.object.isRequired, objectiveNumber: PropTypes.number.isRequired, - printView: PropTypes.bool, }; export { Objective }; diff --git a/services/ui-src/src/components/fields/Objectives.jsx b/services/ui-src/src/components/fields/Objectives.jsx index f80167133..4953ed21f 100644 --- a/services/ui-src/src/components/fields/Objectives.jsx +++ b/services/ui-src/src/components/fields/Objectives.jsx @@ -16,9 +16,9 @@ const Objectives = ({ disabled, question, removeObjectiveFrom, - printView, }) => { const ref = useRef(); + const add = () => { addObjectiveTo(question.id); @@ -47,12 +47,7 @@ const Objectives = ({ > {question.questions.map((q, i) => ( - + ))} @@ -97,7 +92,6 @@ Objectives.propTypes = { disabled: PropTypes.bool.isRequired, question: PropTypes.object.isRequired, removeObjectiveFrom: PropTypes.func.isRequired, - printView: PropTypes.bool, }; const mapDispatchToProps = { diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 88716bebc..0d1b20674 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -1,15 +1,16 @@ import React from "react"; import PropTypes from "prop-types"; -import { useSelector, shallowEqual, useDispatch } from "react-redux"; -// components +import { connect } from "react-redux"; + import { Checkbox } from "./Checkbox"; import { CheckboxFlag } from "./CheckboxFlag"; import { CMSLegend } from "./CMSLegend"; import { DateRange } from "./DateRange"; import { Email } from "./Email"; import { Fieldset } from "./Fieldset"; +//import { FileUpload } from "./FileUpload"; import UploadComponent from "../layout/UploadComponent"; -import Integer from "./Integer"; +import { Integer } from "./Integer"; import { MailingAddress } from "./MailingAddress"; import { Money } from "./Money"; import { Objectives } from "./Objectives"; @@ -21,7 +22,7 @@ import { Repeatables } from "./Repeatables"; import { SkipText } from "./SkipText"; import Text from "./Text"; import { TextMedium, TextMultiline, TextSmall } from "./TextOther"; -// utils + import { setAnswerEntry } from "../../actions/initial"; import { selectIsFormEditable } from "../../store/selectors"; import { showQuestionByPath } from "../utils/helperFunctions"; @@ -60,9 +61,10 @@ Container.propTypes = { const Question = ({ hideNumber, question, + readonly, + setAnswer, prevYear, tableTitle, - printView, ...props }) => { let Component = Text; @@ -70,35 +72,17 @@ const Question = ({ Component = questionTypes.get(question.type); } - const [stateUser, formData, formYear, reportStatus] = useSelector( - (state) => [ - state.stateUser, - state.formData, - state.global.formYear, - state.reportStatus, - ], - shallowEqual - ); - const dispatch = useDispatch(); - - const readonly = !selectIsFormEditable( - reportStatus, - formData, - stateUser, - formYear - ); - const prevYearDisabled = prevYear ? prevYear.disabled : false; const onChange = ({ target: { name: id, value } }) => { - dispatch(setAnswerEntry(id, value)); + setAnswer(id, value); }; const onClick = (e) => { if (e.target.checked) { - dispatch(setAnswerEntry(e.target.name, "")); + setAnswer(e.target.name, ""); } else if (e.target.checked !== undefined) { - dispatch(setAnswerEntry(e.target.name, e.target.value)); + setAnswer(e.target.name, e.target.value); } }; @@ -133,6 +117,7 @@ const Question = ({ questionType={question.type} /> )} + {/* If there are subquestions, wrap them so they are indented with the @@ -161,12 +145,7 @@ const Question = ({ {shouldRenderChildren && (
{question.questions.map((q) => ( - + ))}
)} @@ -174,16 +153,24 @@ const Question = ({
); }; - Question.propTypes = { hideNumber: PropTypes.bool, question: PropTypes.object.isRequired, + readonly: PropTypes.bool.isRequired, + setAnswer: PropTypes.func.isRequired, prevYear: PropTypes.object, tableTitle: PropTypes.string, - printView: PropTypes.bool, }; Question.defaultProps = { hideNumber: false, }; -export default Question; +const mapState = (state) => ({ + readonly: !selectIsFormEditable(state), +}); + +const mapDispatchToProps = { + setAnswer: setAnswerEntry, +}; + +export default connect(mapState, mapDispatchToProps)(Question); diff --git a/services/ui-src/src/components/fields/Repeatable.jsx b/services/ui-src/src/components/fields/Repeatable.jsx index 644f34a36..f32413bf4 100644 --- a/services/ui-src/src/components/fields/Repeatable.jsx +++ b/services/ui-src/src/components/fields/Repeatable.jsx @@ -4,7 +4,7 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Repeatable = ({ headerRef, number, question, type, printView }) => { +const Repeatable = ({ headerRef, number, question, type }) => { const children = question.questions ? question.questions : []; const title = type ? `${type} ${number}` : `${number}`; @@ -20,7 +20,7 @@ const Repeatable = ({ headerRef, number, question, type, printView }) => {
{children.map((q) => ( - + ))} @@ -31,7 +31,6 @@ Repeatable.propTypes = { number: PropTypes.number.isRequired, question: PropTypes.object.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), - printView: PropTypes.bool, }; Repeatable.defaultProps = { diff --git a/services/ui-src/src/components/fields/Repeatables.jsx b/services/ui-src/src/components/fields/Repeatables.jsx index dc66bf27b..14a13a72e 100644 --- a/services/ui-src/src/components/fields/Repeatables.jsx +++ b/services/ui-src/src/components/fields/Repeatables.jsx @@ -17,7 +17,6 @@ const Repeatables = ({ question, removeRepeatableFrom, type, - printView, }) => { const ref = useRef(); @@ -63,7 +62,6 @@ const Repeatables = ({ number={i + 1} question={q} type={question.typeLabel ? question.typeLabel : type} - printView={printView} /> ))} @@ -109,7 +107,6 @@ Repeatables.propTypes = { question: PropTypes.object.isRequired, removeRepeatableFrom: PropTypes.func.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), - printView: PropTypes.bool, }; Repeatables.defaultProps = { type: null, diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index 4f408b5bd..87407c0ab 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -1,40 +1,9 @@ import React from "react"; -import { useSelector, shallowEqual } from "react-redux"; -//utils -import synthesizeValue from "../../util/synthesize"; -//types import PropTypes from "prop-types"; +import { connect } from "react-redux"; +import synthesizeValue from "../../util/synthesize"; -const SynthesizedTable = ({ question, tableTitle }) => { - const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = - useSelector( - (state) => [ - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData, - ], - shallowEqual - ); - - const rows = question.fieldset_info.rows.map((row) => - row.map((cell) => { - const value = synthesizeValue( - cell, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ); - - return typeof value.contents === "number" && Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }) - ); - +const SynthesizedTable = ({ rows, question, tableTitle }) => { return (
{ }; SynthesizedTable.propTypes = { question: PropTypes.object.isRequired, - tableTitle: PropTypes.string.isOptional, + rows: PropTypes.array.isRequired, }; -export default SynthesizedTable; +const mapStateToProps = (state, { question }) => { + const rows = question.fieldset_info.rows.map((row) => + row.map((cell) => { + const value = synthesizeValue(cell, state); + + return typeof value.contents === "number" && Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }) + ); + + return { rows }; +}; + +const ConnectedSynthesizedTable = connect(mapStateToProps)(SynthesizedTable); + +export { ConnectedSynthesizedTable as SynthesizedTable }; +export default ConnectedSynthesizedTable; diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index dba9a6d73..7510afd23 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -1,34 +1,11 @@ import React from "react"; -import { useSelector, shallowEqual } from "react-redux"; -//components -import Question from "./Question"; -//utils -import synthesizeValue from "../../util/synthesize"; -//types import PropTypes from "prop-types"; +import { connect } from "react-redux"; -const SynthesizedValue = ({ question, ...props }) => { - const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = - useSelector( - (state) => [ - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData, - ], - shallowEqual - ); - - const value = synthesizeValue( - question.fieldset_info, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ).contents; +import Question from "./Question"; +import synthesizeValue from "../../util/synthesize"; +const SynthesizedValue = ({ question, value, ...props }) => { return (
Computed: {value} @@ -41,6 +18,17 @@ const SynthesizedValue = ({ question, ...props }) => { }; SynthesizedValue.propTypes = { question: PropTypes.object.isRequired, + value: PropTypes.oneOf([PropTypes.number, PropTypes.string]).isRequired, }; -export default SynthesizedValue; +const mapStateToProps = (state, { question: { fieldset_info: fsInfo } }) => { + return { + value: synthesizeValue(fsInfo, state).contents, + }; +}; + +const ConnectedSynthesizedValue = connect(mapStateToProps)(SynthesizedValue); + +export { ConnectedSynthesizedValue as SynthesizedValue }; + +export default ConnectedSynthesizedValue; diff --git a/services/ui-src/src/components/fields/Text.jsx b/services/ui-src/src/components/fields/Text.jsx index e80b28fb7..d7850f885 100644 --- a/services/ui-src/src/components/fields/Text.jsx +++ b/services/ui-src/src/components/fields/Text.jsx @@ -1,21 +1,11 @@ import React, { useEffect, useState } from "react"; -import { useSelector, shallowEqual } from "react-redux"; -//components +import PropTypes from "prop-types"; import { TextField } from "@cmsgov/design-system"; -//utils +import { connect } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; -// types -import PropTypes from "prop-types"; -const Text = ({ question, ...props }) => { +const Text = ({ question, state, lastYearFormData, ...props }) => { const [prevYearValue, setPrevYearValue] = useState(); - const [state, lastYearFormData] = useSelector( - (state) => [ - state.formData[0].contents?.section?.state, - state.lastYearFormData, - ], - shallowEqual - ); const getPrevYearValue = async () => { // Create array from id @@ -24,7 +14,7 @@ const Text = ({ question, ...props }) => { // Even years get inputs, odd years get previous year data const shouldGetPriorYear = splitID[0] % 2; - // If question is on an odd year form, section 3c, part 5 or 6, and question 9 + // If question is Part 6, section 3c, question 9 if ( shouldGetPriorYear && splitID[1] === "03" && @@ -98,7 +88,16 @@ const Text = ({ question, ...props }) => { }; Text.propTypes = { question: PropTypes.object.isRequired, + state: PropTypes.string.isRequired, disabled: PropTypes.bool, + year: PropTypes.number.isRequired, + lastYearFormData: PropTypes.array.isRequired, }; -export default Text; +const mapState = (state) => ({ + state: state.formData[0].contents?.section?.state, + year: state.formData[0].contents.section.year, + lastYearFormData: state.lastYearFormData, +}); + +export default connect(mapState)(Text); diff --git a/services/ui-src/src/components/layout/CertifyAndSubmit.jsx b/services/ui-src/src/components/layout/CertifyAndSubmit.jsx index c0fb90e9c..e99b8b9d6 100644 --- a/services/ui-src/src/components/layout/CertifyAndSubmit.jsx +++ b/services/ui-src/src/components/layout/CertifyAndSubmit.jsx @@ -1,22 +1,19 @@ import React, { useEffect } from "react"; -import { shallowEqual, useDispatch, useSelector } from "react-redux"; +import { connect, useDispatch } from "react-redux"; +import moment from "moment"; +import PropTypes from "prop-types"; import { Button, Dialog } from "@cmsgov/design-system"; import { useHistory } from "react-router-dom"; -import { format } from "date-fns"; -// components -import PageInfo from "./PageInfo"; -import FormActions from "./FormActions"; -// utils import { loadForm } from "../../actions/initial"; import { certifyAndSubmit } from "../../actions/certify"; +import PageInfo from "./PageInfo"; import { getCurrentReportStatus, selectIsFormEditable, } from "../../store/selectors"; -import useModal from "../../hooks/useModal"; -// types +import FormActions from "./FormActions"; import { AppRoles } from "../../types"; -import PropTypes from "prop-types"; +import useModal from "../../hooks/useModal"; const Submit = ({ openCertifyConfirmation }) => ( <> @@ -43,25 +40,15 @@ const Submit = ({ openCertifyConfirmation }) => ( Submit.propTypes = { openCertifyConfirmation: PropTypes.func.isRequired }; -const Thanks = ({ done: doneDispatch, submitterUsername }) => { - const lastSave = useSelector( - (state) => - getCurrentReportStatus( - state.reportStatus, - state.formData, - state.stateUser, - state.global.formYear - ).lastChanged - ); - const formattedDate = lastSave ? format(lastSave, "PPP") : ""; - const formattedTime = lastSave ? format(lastSave, "p") : ""; +const Thanks = ({ done: doneDispatch, lastSave, user }) => { return ( <>

Thank you for submitting your CARTS report!

- Submitted on {formattedDate} at {formattedTime} by {submitterUsername}. + Submitted on {lastSave.format("MMMM Do, YYYY")} at{" "} + {lastSave.format("h:mm A")} by {user}.

What to expect next

You‘ll hear from CMS if they have any questions about your report.

@@ -74,39 +61,28 @@ const Thanks = ({ done: doneDispatch, submitterUsername }) => { Thanks.propTypes = { done: PropTypes.func.isRequired, - submitterUsername: PropTypes.string.isRequired, + lastSave: PropTypes.object.isRequired, + user: PropTypes.string.isRequired, }; -const CertifyAndSubmit = () => { +const CertifyAndSubmit = ({ + certifyAndSubmit: certifyAction, + isCertified, + lastSave, + user, + currentUserRole, + state, +}) => { const dispatch = useDispatch(); const history = useHistory(); const { isShowing, toggleModal } = useModal(); - const [isCertified, submitterUsername, currentUserRole, state] = useSelector( - (state) => [ - !selectIsFormEditable( - state.reportStatus, - state.formData, - state.stateUser, - state.global.formYear - ), - getCurrentReportStatus( - state.reportStatus, - state.formData, - state.stateUser, - state.global.formYear - ).username, - state.stateUser.currentUser.role, - state.stateUser.abbr, - ], - shallowEqual - ); useEffect(() => { dispatch(loadForm(state)); - }, [submitterUsername]); + }, [user]); const confirmCertifyAction = () => { - dispatch(certifyAndSubmit()); + certifyAction(); toggleModal(); }; @@ -149,7 +125,7 @@ const CertifyAndSubmit = () => { {currentUserRole === AppRoles.STATE_USER &&

Certify and Submit

} {isCertified ? ( - + ) : ( )} @@ -159,4 +135,38 @@ const CertifyAndSubmit = () => { ); }; -export default CertifyAndSubmit; +CertifyAndSubmit.propTypes = { + certifyAndSubmit: PropTypes.func.isRequired, + isCertified: PropTypes.bool.isRequired, + lastSave: PropTypes.object.isRequired, + user: PropTypes.oneOf([PropTypes.string, null]), + currentUserRole: PropTypes.string.isRequired, +}; + +CertifyAndSubmit.defaultProps = { + user: null, +}; + +const mapState = (state) => ({ + isCertified: !selectIsFormEditable(state), + lastSave: moment( + getCurrentReportStatus( + state.reportStatus, + state.formData, + state.stateUser, + state.global + ).lastChanged + ), + user: getCurrentReportStatus( + state.reportStatus, + state.formData, + state.stateUser, + state.global + ).username, + currentUserRole: state.stateUser.currentUser.role, + state: state.stateUser.abbr, +}); + +const mapDispatch = { certifyAndSubmit }; + +export default connect(mapState, mapDispatch)(CertifyAndSubmit); diff --git a/services/ui-src/src/components/layout/DateRange.jsx b/services/ui-src/src/components/layout/DateRange.jsx index 1a152679c..304fd369c 100644 --- a/services/ui-src/src/components/layout/DateRange.jsx +++ b/services/ui-src/src/components/layout/DateRange.jsx @@ -1,69 +1,114 @@ -import React, { useEffect, useState } from "react"; -//components +import React, { Component } from "react"; +import { connect } from "react-redux"; import { TextField } from "@cmsgov/design-system"; -//types import PropTypes from "prop-types"; -const DateRange = ({ onChange, question, year, ...props }) => { - const [endRangeErr, setEndRangeErr] = useState(false); - const [monthStart, setMonthStart] = useState(""); - const [monthEnd, setMonthEnd] = useState(""); - const [yearStart, setYearStart] = useState(""); - const [yearEnd, setYearEnd] = useState(""); - const [startErrorMessage, setStartErrorMessage] = useState([]); - const [endErrorMessage, setEndErrorMessage] = useState([]); +/* + * This method checks that month input is appropriate: + * (not empty, max of 2 digits, no letters, between 1 & 12) + */ +const validateMonth = (input) => { + let returnString; + + // Handles an empty input field + if (input === "") { + returnString = "Month field cannot be empty"; + } + + // Prevents users from putting in more than 2 characters + if (input.length > 2) { + returnString = "Month length must not exceed 2"; + } + + // Checks for non-numeric characters + if (Number.isNaN(parseInt(input, 10)) || /^\d+$/.test(input) === false) { + returnString = "Please enter a number"; + } + + if (parseInt(input, 10) < 1 || parseInt(input, 10) > 12) { + // Checks that the month value is within a normal range + returnString = "Please enter a valid month number"; + } + return returnString; +}; - useEffect(() => { +class DateRange extends Component { + constructor(props) { + super(props); + this.state = { + endRangeErr: false, + monthStart: "", + yearStart: "", + monthEnd: "", + yearEnd: "", + startErrorMessage: [], + endErrorMessage: [], + }; + this.handleInput = this.handleInput.bind(this); + + this.checkChronology = this.checkChronology.bind(this); + + this.validateStartInput = this.validateStartInput.bind(this); + this.validateEndInput = this.validateEndInput.bind(this); + + this.validateYear = this.validateYear.bind(this); + } + + componentDidMount() { // Stored value example: ['2019-11-01', '2020-09-01'] + const { question } = this.props; const storedValue = question.answer.entry; + if (storedValue) { // Split each date string into an array and extract month and year variables with destructuring const [yearStartValue, monthStartValue] = storedValue[0].split("-"); // ie: '2019' and '11' const [yearEndValue, monthEndValue] = storedValue[1].split("-"); // ie: '2020' and '09' - setMonthStart(monthStartValue ?? ""); - setMonthEnd(monthEndValue ?? ""); - setYearStart(yearStartValue ?? ""); - setYearEnd(yearEndValue ?? ""); + this.setState({ + monthStart: monthStartValue ?? "", + monthEnd: monthEndValue ?? "", + yearStart: yearStartValue ?? "", + yearEnd: yearEndValue ?? "", + }); } else { - setMonthStart(""); - setMonthEnd(""); - setYearStart(""); - setYearEnd(""); + this.setState({ + monthStart: "", + monthEnd: "", + yearStart: "", + yearEnd: "", + }); } - }, []); - - useEffect(() => { - checkChronology(); - }, [startErrorMessage, endErrorMessage]); + } // This method checks all 4 fields to confirm that the start range is before the end range - const checkChronology = () => { + checkChronology() { + const { onChange, question } = this.props; + const { yearStart, yearEnd, startErrorMessage, endErrorMessage } = + this.state; const errorCheck = [...startErrorMessage, ...endErrorMessage]; // Array of all input errors in state - let monthS = monthStart; - let monthE = monthEnd; - let yearS = yearStart; - let yearE = yearEnd; - + let { monthStart, monthEnd } = this.state; let chronologyError; // Ensure that all 4 fields are filled in - - if (monthS && monthE && yearS && yearE) { + if (monthStart && monthEnd && yearStart && yearEnd) { // Turn the input into date objects for easy comparison - const startDate = new Date(yearS, monthS - 1); - const endDate = new Date(yearE, monthE - 1); - monthS = monthS.padStart(2, "0"); - monthE = monthE.padStart(2, "0"); + const startDate = new Date(yearStart, monthStart - 1); + const endDate = new Date(yearEnd, monthEnd - 1); + + monthStart = monthStart.padStart(2, "0"); + monthEnd = monthEnd.padStart(2, "0"); /* * The entry value for daterange must be sent to the server as an array of two strings * The format must be an ISO 8601 Date format. * Because we are only asking for month/year, the last digit is a placeholder of '01' */ - const payload = [`${yearS}-${monthS}-01`, `${yearE}-${monthE}-01`]; + const payload = [ + `${yearStart}-${monthStart}-01`, + `${yearEnd}-${monthEnd}-01`, + ]; if (startDate > endDate) { chronologyError = true; @@ -74,44 +119,20 @@ const DateRange = ({ onChange, question, year, ...props }) => { onChange([question.id, payload]); // Chronology is correct, no errors present, send data to redux } } - setEndRangeErr(chronologyError); - } - }; - - /* - * This method checks that month input is appropriate: - * (not empty, max of 2 digits, no letters, between 1 & 12) - */ - const validateMonth = (input) => { - let returnString; - - // Handles an empty input field - if (input === "") { - returnString = "Month field cannot be empty"; - } - - // Prevents users from putting in more than 2 characters - if (input.length > 2) { - returnString = "Month length must not exceed 2"; - } - - // Checks for non-numeric characters - if (Number.isNaN(parseInt(input, 10)) || /^\d+$/.test(input) === false) { - returnString = "Please enter a number"; - } - if (parseInt(input, 10) < 1 || parseInt(input, 10) > 12) { - // Checks that the month value is within a normal range - returnString = "Please enter a valid month number"; + this.setState({ + endRangeErr: chronologyError, + }); } - return returnString; - }; + } /* * This method checks that year input is appropriate * (not empty, max of 4 digits, no letters, reasonable year) */ - const validateYear = (input) => { + validateYear(input) { + const { year } = this.props; + let returnString; // Handles an empty input field if (input === "") { @@ -139,143 +160,163 @@ const DateRange = ({ onChange, question, year, ...props }) => { returnString = "Please enter a valid Year"; } return returnString; - }; + } // This method checks the first month/year input range and sets any validation errors to state - const validateStartInput = () => { + validateStartInput() { const startErrorArray = []; - startErrorArray.push(validateMonth(monthStart)); - startErrorArray.push(validateYear(yearStart)); + const { monthStart, yearStart } = this.state; - setStartErrorMessage(startErrorArray); - }; + startErrorArray.push(validateMonth(monthStart)); + startErrorArray.push(this.validateYear(yearStart)); + + this.setState( + { + startErrorMessage: startErrorArray, + }, + () => { + this.checkChronology(); + } + ); + } // This method checks the second month/year input range and sets any validation errors to state - const validateEndInput = () => { + validateEndInput() { const endErrorArray = []; - endErrorArray.push(validateMonth(monthEnd)); - endErrorArray.push(validateYear(yearEnd)); + const { monthEnd, yearEnd } = this.state; - setEndErrorMessage(endErrorArray); - }; + endErrorArray.push(validateMonth(monthEnd)); + endErrorArray.push(this.validateYear(yearEnd)); + + this.setState( + { + endErrorMessage: endErrorArray, + }, + () => { + this.checkChronology(); + } + ); + } // This method takes all user input and sets it to state - const handleInput = (event) => { - const { name, value } = event.target; - switch (name) { - case "monthStart": - setMonthStart(value || ""); - break; - case "monthEnd": - setMonthEnd(value || ""); - break; - case "yearStart": - setYearStart(value || ""); - break; - case "yearEnd": - setYearEnd(value || ""); - break; - default: - throw new Error( - "Input name not supported. Unable to update date input!" - ); - } - }; - - return ( -
-
- - {question.answer.labels[0] ? question.answer.labels[0] : "Start"} - -
- mm/yyyy -
-
- {startErrorMessage.map((e) => { - if (e !== undefined) { - return
{e}
; - } - return false; - })} -
-
- -
/
- -
-
- -
-

- {question.answer.labels[1] ? question.answer.labels[1] : "End"}{" "} -

-
- mm/yyyy -
-
- {endErrorMessage.map((e) => { - if (e !== undefined) { - return
{e}
; - } - return false; - })} + handleInput(evt) { + this.setState({ + [evt.target.name]: evt.target.value ? evt.target.value : "", + }); + } + + // Store input values temporarily via input refs + + render() { + const { question } = this.props; + const { + startErrorMessage, + endErrorMessage, + endRangeErr, + monthStart, + monthEnd, + yearStart, + yearEnd, + } = this.state; + + return ( +
+
+ + {question.answer.labels[0] ? question.answer.labels[0] : "Start"} + +
+ {" "} + mm/yyyy +
+
+ {startErrorMessage.map((e) => { + if (e !== undefined) { + return
{e}
; + } + return false; + })} +
+
+ +
/
+ +
-
- -
/
- - -
-
- {endRangeErr === true ? ( -
End date must come after start date
- ) : null} +
+

+ {" "} + {question.answer.labels[1] ? question.answer.labels[1] : "End"}{" "} +

+
+ {" "} + mm/yyyy +
+
+ {endErrorMessage.map((e) => { + if (e !== undefined) { + return
{e}
; + } + return false; + })} +
+ +
+ +
/
+ + +
+
+ {endRangeErr === true ? ( +
End date must come after start date
+ ) : null} +
-
- ); -}; + ); + } +} DateRange.propTypes = { question: PropTypes.object.isRequired, @@ -287,4 +328,8 @@ DateRange.defaultProps = { year: new Date().getFullYear().toString(), // Returns the current year as a default }; -export default DateRange; +const mapStateToProps = (state) => ({ + year: state.global.formYear, +}); + +export default connect(mapStateToProps)(DateRange); diff --git a/services/ui-src/src/components/layout/DateRange.test.jsx b/services/ui-src/src/components/layout/DateRange.test.jsx index a27b097dd..7863b66e6 100644 --- a/services/ui-src/src/components/layout/DateRange.test.jsx +++ b/services/ui-src/src/components/layout/DateRange.test.jsx @@ -210,14 +210,8 @@ describe("DateRange Component", () => { endYearInput.dispatchEvent(new Event("blur")); - /* - * Have to wait because jest trips over itself. Would use waitFor, but thats in the next - * version of the testing-lib. When upgrading testing-lib, swap this to waitFor - */ - await new Promise((r) => setTimeout(r, 400)); - expect( - await screen.queryByText("End date must come after start date") + screen.queryByText("End date must come after start date") ).toBeInTheDocument(); }); @@ -238,12 +232,6 @@ describe("DateRange Component", () => { endYearInput.dispatchEvent(new Event("blur")); - /* - * Have to wait because jest trips over itself. Would use waitFor, but thats in the next - * version of the testing-lib. When upgrading testing-lib, swap this to waitFor - */ - await new Promise((r) => setTimeout(r, 400)); - expect(mockPropsExistingAnswer.onChange).toBeCalledWith([ "mock-question-1", ["2022-10-01", "2023-09-01"], diff --git a/services/ui-src/src/components/layout/FormActions.jsx b/services/ui-src/src/components/layout/FormActions.jsx index f63403fd0..cd2f3114d 100644 --- a/services/ui-src/src/components/layout/FormActions.jsx +++ b/services/ui-src/src/components/layout/FormActions.jsx @@ -1,10 +1,9 @@ import React, { useState, useEffect, useRef } from "react"; -import { useSelector, shallowEqual } from "react-redux"; -// components import { Button } from "@cmsgov/design-system"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faPrint, faWindowClose } from "@fortawesome/free-solid-svg-icons"; -//types +import { connect } from "react-redux"; +import PropTypes from "prop-types"; import { AppRoles } from "../../types"; /** @@ -13,37 +12,20 @@ import { AppRoles } from "../../types"; * @returns {JSX.Element} * @constructor */ -const FormActions = () => { - const [currentUser, formYear] = useSelector( - (state) => [state.stateUser.currentUser, state.global.formYear], - shallowEqual - ); - +const FormActions = (props) => { // Initialise printDialogeRef const printDialogeRef = useRef(null); + const { currentUser, formYear } = props; // Get section IDs and subsection IDs for printing single section - let searchParams = ""; - let sectionId = ""; - - if (currentUser.role === AppRoles.CMS_ADMIN) { - const stateId = window.location.href.split("/")[5]; - searchParams = document.location.pathname - .toString() - .replace(`views/sections/${stateId}/`, "") - .replace(formYear + "/", ""); - - sectionId = formYear + "-" + searchParams.substring(1, 3); - } else { - searchParams = document.location.pathname - .toString() - .replace("/sections/", "") - .replace(formYear + "/", ""); - - sectionId = formYear + "-" + searchParams.substring(0, 2); - } + let searchParams = document.location.pathname + .toString() + .replace("/sections/", "") + .replace(formYear + "/", ""); + const sectionId = formYear + "-" + searchParams.substring(0, 2); let subsectionId = sectionId + "-"; + if (sectionId.slice(-2) === "03") { subsectionId += searchParams.slice(-1); } else { @@ -181,4 +163,15 @@ const FormActions = () => { ); }; -export default FormActions; +FormActions.propTypes = { + currentUser: PropTypes.object.isRequired, + formYear: PropTypes.number.isRequired, +}; + +export const mapStateToProps = (state) => ({ + currentUser: state.stateUser.currentUser, + formYear: state.global.formYear, + printType: state.global.printType, +}); + +export default connect(mapStateToProps)(FormActions); diff --git a/services/ui-src/src/components/layout/FormActions.test.jsx b/services/ui-src/src/components/layout/FormActions.test.jsx index fdf31f5db..77967b362 100644 --- a/services/ui-src/src/components/layout/FormActions.test.jsx +++ b/services/ui-src/src/components/layout/FormActions.test.jsx @@ -9,14 +9,12 @@ import { stateUserWithReportInProgress, } from "../../store/fakeStoreExamples"; import { MemoryRouter } from "react-router"; -const firstLocation = "/sections/2021/00"; -const adminFirstLocation = "/views/sections/AL/2021/00"; const mockStore = configureMockStore(); const store = mockStore(stateUserWithReportInProgress); const formActions = ( - + @@ -24,76 +22,36 @@ const formActions = ( const adminStore = mockStore(adminUserWithReportInProgress); const adminFormActions = ( - + ); - describe("Fill Form Component", () => { - afterEach(() => { - jest.clearAllMocks(); - }); - - test("should render correctly", () => { + it("should render correctly", () => { expect(shallow(formActions).exists()).toBe(true); }); - test("should add hrefs given a section and subsection", () => { + it("should add hrefs given a section and subsection", () => { render(formActions); - window.history.pushState({}, "Title", "/sections/00"); - const printShowButton = screen.getByTestId("print-show"); - fireEvent.click(printShowButton); - const printFormButton = screen.getByTestId("print-form"); - const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" - ); - expect(printFormButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL" - ); - }); - - test("should add hrefs given a section and subsection for admin user", () => { - const setLocation = (path = "/") => { - delete window.location; - window.location = new URL("https://www.example.com" + path); - }; - - setLocation(adminFirstLocation); - render(adminFormActions); - window.history.pushState({}, "Title", "/00/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" - ); - expect(printFormButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL" - ); + expect(printPageButton).toHaveAttribute("href"); + expect(printFormButton).toHaveAttribute("href"); }); - test("should build the component when looking at section 3 subsections", () => { + it("should build the component when looking at section 3 subsections", () => { + window.history.pushState({}, "Title", "/sections/03"); render(adminFormActions); - window.history.pushState({}, "Title", "/03/a"); + window.history.pushState({}, "Title", "/sections/03"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL§ionId=2021-03&subsectionId=2021-03-a" - ); - expect(printFormButton).toHaveAttribute( - "href", - "/print?year=2021&state=AL" - ); + expect(printPageButton).toHaveAttribute("href"); + expect(printFormButton).toHaveAttribute("href"); }); - test("should display print section or page on click", () => { + it("should display print section or page on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -102,7 +60,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toHaveTextContent("This Section"); expect(printFormButton).toHaveTextContent("Entire Form"); }); - test("should clear on click", () => { + it("should clear on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -114,7 +72,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toBeNull(); expect(printFormButton).toBeNull(); }); - test("should not clear on internal click, then clear on outside click", () => { + it("should not clear on internal click, then clear on outside click", () => { const map = {}; document.addEventListener = jest.fn((event, cb) => { diff --git a/services/ui-src/src/components/layout/FormNavigation.jsx b/services/ui-src/src/components/layout/FormNavigation.jsx index 967c5c242..8f3d3222e 100644 --- a/services/ui-src/src/components/layout/FormNavigation.jsx +++ b/services/ui-src/src/components/layout/FormNavigation.jsx @@ -1,28 +1,17 @@ import React from "react"; -import { useSelector, shallowEqual } from "react-redux"; -import { useHistory, useLocation } from "react-router-dom"; - -//components +import PropTypes from "prop-types"; import { Button } from "@cmsgov/design-system"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft, faAngleRight } from "@fortawesome/free-solid-svg-icons"; -//selectors +import { connect } from "react-redux"; +import { withRouter } from "react-router-dom"; import { selectSectionsForNav } from "../../store/selectors"; -//types import { AppRoles } from "../../types"; const idToUrl = (id) => `/sections/${id.replace(/-/g, "/")}`; -const FormNavigation = () => { - const history = useHistory(); - const location = useLocation(); - - const [formData, role] = useSelector( - (state) => [state.formData, state.stateUser?.currentUser?.role], - shallowEqual - ); - - const sections = selectSectionsForNav(formData); +const FormNavigation = (props) => { + const { history, location, sections, role } = props; const items = []; sections.forEach((section) => { @@ -131,4 +120,16 @@ const FormNavigation = () => { ); }; -export default FormNavigation; +FormNavigation.propTypes = { + history: PropTypes.object.isRequired, + location: PropTypes.object.isRequired, + sections: PropTypes.array.isRequired, + role: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]).isRequired, +}; + +const mapStateToProps = (state) => ({ + sections: selectSectionsForNav(state), + role: state.stateUser?.currentUser?.role, +}); + +export default connect(mapStateToProps)(withRouter(FormNavigation)); diff --git a/services/ui-src/src/components/layout/Header.jsx b/services/ui-src/src/components/layout/Header.jsx index d7ff51cd6..86a310c2d 100644 --- a/services/ui-src/src/components/layout/Header.jsx +++ b/services/ui-src/src/components/layout/Header.jsx @@ -17,11 +17,11 @@ import appLogo from "../../assets/images/MDCT_CARTS_2x.png"; export const Header = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); - const [stateUser, formData, formYear, reportStatus] = useSelector( + const [stateUser, formData, global, reportStatus] = useSelector( (state) => [ state.stateUser, state.formData, - state.global.formYear, + state.global, state.reportStatus, ], shallowEqual @@ -31,7 +31,7 @@ export const Header = () => { reportStatus, formData, stateUser, - formYear + global ); const location = useLocation(); diff --git a/services/ui-src/src/components/layout/HomeAdmin.jsx b/services/ui-src/src/components/layout/HomeAdmin.jsx index dbbc59456..97b147bcf 100644 --- a/services/ui-src/src/components/layout/HomeAdmin.jsx +++ b/services/ui-src/src/components/layout/HomeAdmin.jsx @@ -1,13 +1,13 @@ import React from "react"; +import PropTypes from "prop-types"; import { Link, Route } from "react-router-dom"; -import { Switch } from "react-router"; -// components import FormTemplates from "./FormTemplates"; import CMSHomepage from "../sections/homepage/CMSHomepage"; -import Sidebar from "./Sidebar"; -// utils import InvokeSection from "../utils/InvokeSection"; +import Sidebar from "./Sidebar"; +import { Switch } from "react-router"; import ScrollToTop from "../utils/ScrollToTop"; +import { connect } from "react-redux"; const AdminHome = () => { return ( @@ -52,5 +52,13 @@ const AdminHome = () => { ); }; +AdminHome.propTypes = { + formYear: PropTypes.object.isRequired, +}; + +export const mapStateToProps = (state) => ({ + currentUser: state.stateUser.currentUser, + formYear: state.global.formYear, +}); -export default AdminHome; +export default connect(mapStateToProps)(AdminHome); diff --git a/services/ui-src/src/components/layout/PageInfo.jsx b/services/ui-src/src/components/layout/PageInfo.jsx index 41dae237e..a291a0616 100644 --- a/services/ui-src/src/components/layout/PageInfo.jsx +++ b/services/ui-src/src/components/layout/PageInfo.jsx @@ -1,23 +1,28 @@ import React from "react"; -import { shallowEqual, useSelector } from "react-redux"; +import PropTypes from "prop-types"; +import { connect } from "react-redux"; +import moment from "moment"; import Autosave from "../fields/Autosave"; import Title from "./Title"; -const PageInfo = () => { - const [lastSaved, status] = useSelector( - (state) => [state.save.lastSave, state.reportStatus.status], - shallowEqual - ); - return ( -
-
- {status ?? "draft"} - {lastSaved && ` | Last Edit: ${lastSaved.toLocaleDateString()}`} -
- - <Autosave /> +const PageInfo = ({ lastSaved, status }) => ( + <div className="page-info"> + <div className="edit-info no-print" data-testid="edit-info-display"> + {status ?? "draft"} + {lastSaved.isValid() && ` | Last Edit: ${lastSaved.format("M/D/YYYY")}`} </div> - ); + <Title /> + <Autosave /> + </div> +); +PageInfo.propTypes = { + lastSaved: PropTypes.object.isRequired, + status: PropTypes.string, }; -export default PageInfo; +const mapStateToProps = (state) => ({ + lastSaved: moment(state.save.lastSave), + status: state.reportStatus.status, +}); + +export default connect(mapStateToProps)(PageInfo); diff --git a/services/ui-src/src/components/layout/PageInfo.test.jsx b/services/ui-src/src/components/layout/PageInfo.test.jsx index 22300eef4..203e4cf87 100644 --- a/services/ui-src/src/components/layout/PageInfo.test.jsx +++ b/services/ui-src/src/components/layout/PageInfo.test.jsx @@ -11,9 +11,7 @@ const store = mockStore({ status: null, }, save: { - lastSave: new Date( - "Mon Jan 1 2024 12:00:00 GMT-0400 (Eastern Daylight Time)" - ), + lastSave: "01/01/2002", }, }); jest.mock("./Title", () => () => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index d2d5e8022..0351a8b1e 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -1,89 +1,54 @@ import React from "react"; -import { shallowEqual, useSelector } from "react-redux"; +import PropTypes from "prop-types"; +import { connect } from "react-redux"; import { Alert } from "@cmsgov/design-system"; -// components -import Question from "../fields/Question"; -import Text from "./Text"; -// utils + import { selectFragment } from "../../store/formData"; +import Question from "../fields/Question"; import { selectQuestionsForPart } from "../../store/selectors"; import { shouldDisplay } from "../../util/shouldDisplay"; +import Text from "./Text"; -const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { - const [, section] = partId.split("-"); - - const [ - formData, - currentUserRole, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - ] = useSelector( - (state) => [ - state.formData, - state.stateUser.currentUser.role, - state.reportStatus, - state.allStatesData, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - ], - shallowEqual - ); +const Part = ({ + context_data: contextData, + partId, + partNumber, + questions, + show, + text, + title, + nestedSubsectionTitle, +}) => { + let innards = null; - const part = selectFragment(formData, partId); - const partContextData = part.context_data; + const [, section] = partId.split("-"); - const contextData = partContextData; - const questions = selectQuestionsForPart( - formData, - currentUserRole, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partId - ); - const show = shouldDisplay( - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partContextData - ); - const text = part ? part.text : null; - const title = part ? part.title : null; + if (show) { + innards = ( + <> + {text ? <Text data-testid="part-text">{text}</Text> : null} - const getPartContent = () => { - if (show) { - return ( - <> - {text && <Text data-testid="part-text">{text}</Text>} - {questions.map((question) => ( - <Question - key={question.id} - question={question} - tableTitle={title} - data-testid="part-question" - printView={printView} - /> - ))} - </> + {questions.map((question) => ( + <Question + key={question.id} + question={question} + tableTitle={title} + data-testid="part-question" + /> + ))} + </> + ); + } else { + if (contextData) { + innards = ( + <Alert> + <div className="ds-c-alert__text" data-testid="part-alert"> + {contextData.skip_text ? <p>{contextData.skip_text}</p> : null} + </div> + </Alert> ); - } else { - if (contextData) { - return ( - <Alert> - <div className="ds-c-alert__text" data-testid="part-alert"> - {contextData.skip_text && <p>{contextData.skip_text}</p>} - </div> - </Alert> - ); - } } - }; + } return ( <div id={partId} data-testid="part"> @@ -99,8 +64,38 @@ const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { {title} </h3> ))} - {getPartContent()} + {innards} </div> ); }; -export default Part; +Part.propTypes = { + context_data: PropTypes.object, + partId: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired, + partNumber: PropTypes.number, + questions: PropTypes.array.isRequired, + show: PropTypes.bool.isRequired, + text: PropTypes.string, + title: PropTypes.string, +}; +Part.defaultProps = { + context_data: null, + text: "", + title: "", +}; + +const mapStateToProps = (state, { partId }) => { + const part = selectFragment(state, partId); + const questions = selectQuestionsForPart(state, partId); + const contextData = part.context_data; + + return { + context_data: part.context_data, + questions, + show: shouldDisplay(state, contextData), + text: part ? part.text : null, + title: part ? part.title : null, + isFetching: state.global.isFetching, + }; +}; + +export default connect(mapStateToProps)(Part); diff --git a/services/ui-src/src/components/layout/Part.test.jsx b/services/ui-src/src/components/layout/Part.test.jsx index 44cdeb951..8053313a9 100644 --- a/services/ui-src/src/components/layout/Part.test.jsx +++ b/services/ui-src/src/components/layout/Part.test.jsx @@ -87,9 +87,6 @@ const store = mockStore({ stateId: "AL", }, ], - enrollmentCounts: { - chipEnrollments: {}, - }, global: { isFetching: false, }, diff --git a/services/ui-src/src/components/layout/SaveError.jsx b/services/ui-src/src/components/layout/SaveError.jsx index 4f2040fc2..38d60ca63 100644 --- a/services/ui-src/src/components/layout/SaveError.jsx +++ b/services/ui-src/src/components/layout/SaveError.jsx @@ -1,11 +1,10 @@ import { Alert } from "@cmsgov/design-system"; +import PropTypes from "prop-types"; import React, { useEffect, useState } from "react"; -import { useSelector } from "react-redux"; -// utils +import { connect } from "react-redux"; import { selectHasError } from "../../store/save.selectors"; -const SaveError = () => { - const saveError = useSelector((state) => selectHasError(state)); +const SaveError = ({ saveError }) => { const [showSaveErrorAlert, setShowErrorAlert] = useState(saveError); useEffect(() => { @@ -47,4 +46,12 @@ const SaveError = () => { ); }; -export default SaveError; +SaveError.propTypes = { + hasError: PropTypes.bool.isRequired, +}; + +const mapStateToProps = (state) => ({ + saveError: selectHasError(state), +}); + +export default connect(mapStateToProps)(SaveError); diff --git a/services/ui-src/src/components/layout/SaveMessage.js b/services/ui-src/src/components/layout/SaveMessage.js new file mode 100644 index 000000000..a3c83e8d8 --- /dev/null +++ b/services/ui-src/src/components/layout/SaveMessage.js @@ -0,0 +1,65 @@ +import moment from "moment"; +import { useEffect, useState } from "react"; +import PropTypes from "prop-types"; + +/* + * Configure moment to display '1 time-unit ago' instead of 'a time-unit ago' + * https://github.com/moment/moment/issues/3764 + */ +moment.updateLocale("en", { + relativeTime: { + s: "seconds", + m: "1 minute", + mm: "%d minutes", + h: "1 hour", + hh: "%d hours", + d: "1 day", + dd: "%d days", + M: "1 month", + MM: "%d months", + y: "1 year", + yy: "%d years", + }, +}); + +const SaveMessage = ({ lastSaved }) => { + const [currentMoment, setCurrentMoment] = useState(() => moment()); + + useEffect(() => { + const timerID = setInterval(() => setCurrentMoment(moment()), 1000); + return () => clearInterval(timerID); + }); + + const lastSavedMoment = moment(lastSaved); + + if (!lastSavedMoment.isValid()) { + return "Not yet saved"; + } + + const difference = currentMoment.diff(lastSavedMoment); + const duration = moment.duration(difference); + let result = "Last saved "; + + if (duration.asMinutes() < 1) return "Saved"; + + if (duration.asDays() < 1) { + result += lastSavedMoment.format("h:mm a"); + } else if (duration.asYears() < 1) { + result += lastSavedMoment.format("MMMM D"); + } else { + result += lastSavedMoment.format("MMMM D, YYYY"); + } + + result += ` (${lastSavedMoment.fromNow()})`; + return result; +}; + +SaveMessage.propTypes = { + lastSaved: PropTypes.oneOfType([ + PropTypes.instanceOf(Date), + PropTypes.instanceOf(moment), + PropTypes.string, + ]), +}; + +export default SaveMessage; diff --git a/services/ui-src/src/components/layout/SaveMessage.jsx b/services/ui-src/src/components/layout/SaveMessage.jsx deleted file mode 100644 index 8d790b3d9..000000000 --- a/services/ui-src/src/components/layout/SaveMessage.jsx +++ /dev/null @@ -1,32 +0,0 @@ -import { useEffect, useState } from "react"; -import { - differenceInMinutes, - format, - formatDistanceToNowStrict, -} from "date-fns"; -import PropTypes from "prop-types"; - -const SaveMessage = ({ lastSaved }) => { - const [currentMoment, setCurrentMoment] = useState(() => Date.now()); - - useEffect(() => { - const timerID = setInterval(() => setCurrentMoment(Date.now()), 1000); - return () => clearInterval(timerID); - }); - - if (!lastSaved) return "Not yet saved"; - if (differenceInMinutes(currentMoment, lastSaved) < 1) return "Saved"; - - return `Last saved ${format(lastSaved, "p")} (${formatDistanceToNowStrict( - lastSaved - )} ago)`; -}; - -SaveMessage.propTypes = { - lastSaved: PropTypes.oneOfType([ - PropTypes.instanceOf(Date), - PropTypes.string, - ]), -}; - -export default SaveMessage; diff --git a/services/ui-src/src/components/layout/SaveMessage.test.jsx b/services/ui-src/src/components/layout/SaveMessage.test.jsx index e03de1d0c..8c811153e 100644 --- a/services/ui-src/src/components/layout/SaveMessage.test.jsx +++ b/services/ui-src/src/components/layout/SaveMessage.test.jsx @@ -1,4 +1,5 @@ import { mount, shallow } from "enzyme"; +import moment from "moment"; import React from "react"; import SaveMessage from "./SaveMessage"; @@ -9,6 +10,9 @@ describe("SaveMessage Component", () => { const dateProp = { lastSaved: new Date() }; const saveMessageDateProp = <SaveMessage {...dateProp} />; + const momentProp = { lastSaved: moment() }; + const saveMessageMomentProp = <SaveMessage {...momentProp} />; + const nullProp = { lastSaved: null }; const saveMessageNullProp = <SaveMessage {...nullProp} />; @@ -20,6 +24,10 @@ describe("SaveMessage Component", () => { expect(shallow(saveMessageDateProp).exists()).toBe(true); }); + it("should accept moment as prop", () => { + expect(shallow(saveMessageMomentProp).exists()).toBe(true); + }); + it("should accept null as prop and return not saved", () => { const wrapper = mount(saveMessageNullProp); expect(wrapper.text().includes("Not yet saved")).toBe(true); diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index b204e1b25..f12824305 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -1,6 +1,6 @@ import React from "react"; -import { useSelector } from "react-redux"; import PropTypes from "prop-types"; +import { connect } from "react-redux"; import PageInfo from "./PageInfo"; import { selectSectionTitle } from "../../store/selectors"; import Subsection from "./Subsection"; @@ -8,20 +8,18 @@ import FormNavigation from "./FormNavigation"; import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; -const Section = ({ subsectionId, sectionId, printView }) => { - const formData = useSelector((state) => state.formData); - const title = selectSectionTitle(formData, sectionId); +// Get section number only from sectionId +const selectSectionNumber = (sectionId) => { + return Number(sectionId.split("-")[1]); +}; +const Section = ({ subsectionId, title }) => { return ( <div className="section-basic-info ds-l-col--9 content"> <main id="main-content" className="main"> <PageInfo /> <h2 data-testid="section-title">{title}</h2> - <Subsection - key={subsectionId} - subsectionId={subsectionId} - printView={printView} - /> + <Subsection key={subsectionId} subsectionId={subsectionId} /> </main> <div className="form-footer"> <Autosave /> @@ -33,8 +31,16 @@ const Section = ({ subsectionId, sectionId, printView }) => { }; Section.propTypes = { subsectionId: PropTypes.string.isRequired, + title: PropTypes.string, sectionId: PropTypes.number.isRequired, - printView: PropTypes.bool, }; -export default Section; +const mapStateToProps = (state, { sectionId, subsectionId }) => { + return { + subsectionId, + title: selectSectionTitle(state, sectionId), + sectionId: selectSectionNumber(sectionId), + }; +}; + +export default connect(mapStateToProps)(Section); diff --git a/services/ui-src/src/components/layout/StateHeader.jsx b/services/ui-src/src/components/layout/StateHeader.jsx index e9c3eafc1..b37c25366 100644 --- a/services/ui-src/src/components/layout/StateHeader.jsx +++ b/services/ui-src/src/components/layout/StateHeader.jsx @@ -1,29 +1,27 @@ import React from "react"; -import { useSelector } from "react-redux"; -import { AppRoles } from "../../types"; +import PropTypes from "prop-types"; +import { connect } from "react-redux"; -const StateHeader = () => { - const { currentUser, name, imageURI } = useSelector( - (state) => state.stateUser - ); - return ( - <> - {currentUser?.role === AppRoles.STATE_USER && ( - <div - className="state-header" - data-testid="state-header" - aria-label="State Header" - > - <div className="state-image"> - <img src={imageURI} alt={name} /> - </div> - <div className="state-name" aria-label={name}> - {name} - </div> - </div> - )} - </> - ); +const StateHeader = ({ imageURI, name }) => ( + <div + className="state-header" + data-testid="state-header" + aria-label="State Header" + > + <div className="state-image"> + <img src={imageURI} alt={name} /> + </div> + <div className="state-name">{name}</div> + </div> +); +StateHeader.propTypes = { + imageURI: PropTypes.string.isRequired, + name: PropTypes.string.isRequired, }; -export default StateHeader; +const mapStateToProps = (state) => ({ + name: state.stateUser.name, + imageURI: state.stateUser.imageURI, +}); + +export default connect(mapStateToProps)(StateHeader); diff --git a/services/ui-src/src/components/layout/StateHeader.test.jsx b/services/ui-src/src/components/layout/StateHeader.test.jsx index 6a91f01cd..5d8f1fbe3 100644 --- a/services/ui-src/src/components/layout/StateHeader.test.jsx +++ b/services/ui-src/src/components/layout/StateHeader.test.jsx @@ -4,45 +4,30 @@ import configureMockStore from "redux-mock-store"; import { Provider } from "react-redux"; import { render } from "@testing-library/react"; import StateHeader from "./StateHeader"; -import { - adminUserWithReportInProgress, - stateUserWithReportInProgress, -} from "../../store/fakeStoreExamples"; const mockStore = configureMockStore(); -const stateUserStore = mockStore(stateUserWithReportInProgress); -const adminUserStore = mockStore(adminUserWithReportInProgress); +const store = mockStore({ + stateUser: { + name: "Kentucky", + imageURI: "kentucky.png", + }, +}); +const header = ( + <Provider store={store}> + <StateHeader /> + </Provider> +); describe("State Header Component", () => { - test("should render correctly", () => { - const header = ( - <Provider store={stateUserStore}> - <StateHeader /> - </Provider> - ); + it("should render correctly", () => { expect(shallow(header).exists()).toBe(true); }); - test("Displays state header content for state user", () => { - const header = ( - <Provider store={stateUserStore}> - <StateHeader /> - </Provider> - ); + it("Displays name, image, and alt-text for a state", () => { const { getByTestId, getByAltText } = render(header); const headerComponent = getByTestId("state-header"); - expect(headerComponent).toHaveTextContent("Alabama"); - const img = getByAltText("Alabama"); - expect(img.src).toContain("al.svg"); - }); - - test("Does not display state header content for admin user", () => { - const header = ( - <Provider store={adminUserStore}> - <StateHeader /> - </Provider> - ); - const { queryByTestId } = render(header); - expect(queryByTestId("state-header")).not.toBeInTheDocument(); + expect(headerComponent).toHaveTextContent("Kentucky"); + const img = getByAltText("Kentucky"); + expect(img.src).toContain("kentucky.png"); }); }); diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 6417beca6..60799cede 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -1,22 +1,11 @@ import React from "react"; -import { useSelector } from "react-redux"; -//components +import PropTypes from "prop-types"; +import { connect } from "react-redux"; +import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; import Part from "./Part"; import Text from "./Text"; -//selectors -import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; -//types -import PropTypes from "prop-types"; - -const Subsection = ({ subsectionId, printView }) => { - const formData = useSelector((state) => state.formData); - - const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); - - const partIds = subsection ? subsection.parts : []; - const title = subsection ? subsection.title : null; - const text = subsection ? subsection.text : null; +const Subsection = ({ partIds, subsectionId, title, text }) => { return ( <div id={subsectionId}> {title && <h3 className="h3-pdf-bookmark">{title}</h3>} @@ -31,18 +20,31 @@ const Subsection = ({ subsectionId, printView }) => { partId={partId} partNumber={partIds.length > 1 ? index + 1 : null} nestedSubsectionTitle={!!title} - printView={printView} /> ))} </div> ); }; Subsection.propTypes = { + partIds: PropTypes.array.isRequired, subsectionId: PropTypes.string.isRequired, - printView: PropTypes.bool, + text: PropTypes.oneOf([PropTypes.string, null]), + title: PropTypes.string, }; Subsection.defaultProps = { text: null, }; -export default Subsection; +const mapStateToProps = (state, ownProps) => { + const subsection = selectSubsectionTitleAndPartIDs( + state, + ownProps.subsectionId + ); + return { + partIds: subsection ? subsection.parts : [], + title: subsection ? subsection.title : null, + text: subsection ? subsection.text : null, + }; +}; + +export default connect(mapStateToProps)(Subsection); diff --git a/services/ui-src/src/components/layout/Timeout.jsx b/services/ui-src/src/components/layout/Timeout.jsx index 9f927f9b7..38f60b036 100644 --- a/services/ui-src/src/components/layout/Timeout.jsx +++ b/services/ui-src/src/components/layout/Timeout.jsx @@ -1,27 +1,24 @@ import React, { useEffect, useState } from "react"; -import { useSelector } from "react-redux"; -import { useHistory } from "react-router-dom"; -//components +import { connect } from "react-redux"; +import PropTypes from "prop-types"; import { Dialog } from "@cmsgov/design-system"; -//auth +import { useHistory } from "react-router-dom"; import { refreshCredentials, updateTimeout, useUser, } from "../../hooks/authHooks"; +import moment from "moment"; const calculateTimeLeft = (expiresAt) => { if (!expiresAt) return 0; - return (new Date(expiresAt).valueOf() - Date.now()) / 1000; + return expiresAt.diff(moment()) / 1000; }; -const Timeout = () => { - const { showTimeout, expiresAt } = useSelector((state) => state.stateUser); +const Timeout = ({ showTimeout, expiresAt }) => { const { logout } = useUser(); - const history = useHistory(); - const [timeLeft, setTimeLeft] = useState(calculateTimeLeft(expiresAt)); - + const history = useHistory(); useEffect(() => { const unlisten = history.listen(() => { updateTimeout(); @@ -47,7 +44,7 @@ const Timeout = () => { if (!showTimeout) return <></>; - const expired = new Date(expiresAt).valueOf() < Date.now(); + const expired = expiresAt.isBefore(); const body = expired ? "You have been logged out due to inactivity. Please log in again." : `Due to inactivity, you will be logged out in ${Math.floor( @@ -91,4 +88,14 @@ const Timeout = () => { ); }; -export default Timeout; +Timeout.propTypes = { + showTimeout: PropTypes.bool.isRequired, + expiresAt: PropTypes.any.isRequired, +}; + +const mapState = (state) => ({ + showTimeout: state.stateUser.showTimeout, + expiresAt: state.stateUser.expiresAt, +}); + +export default connect(mapState)(Timeout); diff --git a/services/ui-src/src/components/layout/Timeout.test.jsx b/services/ui-src/src/components/layout/Timeout.test.jsx index c2f2204f3..697b3a1c1 100644 --- a/services/ui-src/src/components/layout/Timeout.test.jsx +++ b/services/ui-src/src/components/layout/Timeout.test.jsx @@ -4,7 +4,7 @@ import configureMockStore from "redux-mock-store"; import { Provider } from "react-redux"; import { screen, render, fireEvent } from "@testing-library/react"; import Timeout from "./Timeout"; -import { add, sub } from "date-fns"; +import moment from "moment"; jest.mock("react-router-dom", () => ({ ...jest.requireActual("react-router-dom"), @@ -17,19 +17,19 @@ const mockStore = configureMockStore(); const store = mockStore({ stateUser: { showTimeout: true, - expiresAt: add(Date.now(), { minutes: 5 }), + expiresAt: moment().add(5, "minutes"), }, }); const expiredStore = mockStore({ stateUser: { showTimeout: true, - expiresAt: sub(Date.now(), { minutes: 5 }), + expiresAt: moment().subtract(5, "minutes"), }, }); const hiddenStore = mockStore({ stateUser: { showTimeout: false, - expiresAt: add(Date.now(), { minutes: 5 }), + expiresAt: moment().add(5, "minutes"), }, }); const timeout = ( diff --git a/services/ui-src/src/components/layout/Title.jsx b/services/ui-src/src/components/layout/Title.jsx index 5812673a5..e315f2247 100644 --- a/services/ui-src/src/components/layout/Title.jsx +++ b/services/ui-src/src/components/layout/Title.jsx @@ -1,17 +1,8 @@ import React from "react"; -import { useSelector, shallowEqual } from "react-redux"; -//types import PropTypes from "prop-types"; +import { connect } from "react-redux"; -const Title = ({ urlStateName }) => { - const [name, stateName, formYear] = useSelector( - (state) => [ - state.stateUser.name, - state.global.stateName, - state.global.formYear, - ], - shallowEqual - ); +const Title = ({ name, stateName, formYear, urlStateName }) => { const displayStateName = name || urlStateName || stateName || ""; return ( @@ -23,7 +14,16 @@ const Title = ({ urlStateName }) => { ); }; Title.propTypes = { + name: PropTypes.string, + stateName: PropTypes.string, urlStateName: PropTypes.string, + formYear: PropTypes.number.isRequired, }; -export default Title; +const mapStateToProps = (state) => ({ + name: state.stateUser.name, + stateName: state.global.stateName, + formYear: state.global.formYear, +}); + +export default connect(mapStateToProps)(Title); diff --git a/services/ui-src/src/components/layout/UploadComponent.jsx b/services/ui-src/src/components/layout/UploadComponent.jsx index ceb0aaa9d..7df22445a 100644 --- a/services/ui-src/src/components/layout/UploadComponent.jsx +++ b/services/ui-src/src/components/layout/UploadComponent.jsx @@ -1,8 +1,9 @@ -import React, { useEffect, useState } from "react"; -import { useDispatch, useSelector, shallowEqual } from "react-redux"; -//components +import React, { Component } from "react"; +import PropTypes from "prop-types"; +import { connect } from "react-redux"; import { Button, TextField } from "@cmsgov/design-system"; -//utils +import { setAnswerEntry } from "../../actions/initial"; +import { REPORT_STATUS, AppRoles } from "../../types"; import { recordFileInDatabaseAndGetUploadUrl, uploadFileToS3, @@ -10,37 +11,32 @@ import { getUploadedFiles, deleteUploadedFile, } from "../../util/fileApi"; -import { setAnswerEntry } from "../../actions/initial"; -//types -import PropTypes from "prop-types"; -import { REPORT_STATUS, AppRoles } from "../../types"; -const UploadComponent = ({ question }) => { - // eslint-disable-next-line no-unused-vars - const [blockFileSubmission, setBlockFileSubmission] = useState(true); - const [loadedFiles, setLoadedFiles] = useState([]); - const [uploadedFiles, setUploadedFiles] = useState([]); - const [displayUploadedFiles, setDisplayUploadedFiles] = useState(false); - const [uploadedFilesRetrieved, setUploadedFilesRetrieved] = useState(false); - const [inputErrors, setInputErrors] = useState(); - - const [user, year, stateCode, reportStatus] = useSelector( - (state) => [ - state.stateUser.currentUser, - state.formData[0].contents.section.year, - state.formData[0].contents.section.state, - state.reportStatus, - ], - shallowEqual - ); - - const dispatch = useDispatch(); - - useEffect(() => { - viewUploaded(); - }, []); - - const isFileTypeAllowed = (extension) => { +class UploadComponent extends Component { + constructor(props) { + super(props); + + this.state = { + blockFileSubmission: true, + loadedFiles: [], + uploadedFiles: [], + displayUploadedFiles: false, + uploadedFilesRetrieved: false, + }; + } + + componentDidMount = async () => { + this.validateFileByExtension = this.validateFileByExtension.bind(this); + this.removeFile = this.removeFile.bind(this); + this.submitUpload = this.submitUpload.bind(this); + this.viewUploaded = this.viewUploaded.bind(this); + this.isFileTypeAllowed = this.isFileTypeAllowed.bind(this); + this.isFileNameValid = this.isFileNameValid.bind(this); + this.deleteFile = this.deleteFile.bind(this); + await this.viewUploaded(); + }; + + isFileTypeAllowed = (extension) => { const allowedFileTypes = [ "jpg", "jpeg", @@ -57,13 +53,15 @@ const UploadComponent = ({ question }) => { return allowedFileTypes.indexOf(extension) > -1; }; - const isFileNameValid = (fileName) => { + isFileNameValid = (fileName) => { let fileNameRegex = new RegExp("^[0-9a-zA-z-_.]*$"); return fileNameRegex.test(fileName); }; - const submitUpload = async () => { - const questionId = question.id; + submitUpload = async () => { + const { loadedFiles } = this.state; + const { year, stateCode } = this.props; + const questionId = this.props.question.id; for (const uploadedFile of loadedFiles) { const presignedPostData = await recordFileInDatabaseAndGetUploadUrl( @@ -79,60 +77,79 @@ const UploadComponent = ({ question }) => { (e) => e.name !== uploadedFile.name ); - setLoadedFiles(filteredStateFiles); - setBlockFileSubmission(true); + this.setState({ + loadedFiles: filteredStateFiles, + blockFileSubmission: true, + }); - if (displayUploadedFiles === false) { - await viewUploaded(); + if (this.state.displayUploadedFiles === false) { + await this.viewUploaded(); } else { - await retrieveUploadedFiles(); + await this.retrieveUploadedFiles(); } } }; - const viewUploaded = async () => { - if (displayUploadedFiles === false) { - setDisplayUploadedFiles(true); - await retrieveUploadedFiles(); + viewUploaded = async () => { + if (this.state.displayUploadedFiles === false) { + this.setState({ + displayUploadedFiles: true, + }); + await this.retrieveUploadedFiles(); } else { // *** make sure container for files is NOT displayed - setDisplayUploadedFiles(false); + this.setState({ + displayUploadedFiles: false, + }); } }; - const removeFile = (evt) => { + removeFile = (evt) => { + const { loadedFiles } = this.state; + const filteredStateFiles = loadedFiles.filter( (e) => e.name !== evt.target.name ); - setLoadedFiles(filteredStateFiles); + + this.setState({ + loadedFiles: filteredStateFiles, + }); }; - const downloadFile = async (fileId) => { + downloadFile = async (fileId) => { + const { year, stateCode } = this.props; window.location.href = await getFileDownloadUrl(year, stateCode, fileId); }; - const retrieveUploadedFiles = async () => { - const questionId = question.id; + retrieveUploadedFiles = async () => { + const questionId = this.props.question.id; + const { year, stateCode } = this.props; - setUploadedFilesRetrieved(false); + this.setState({ + uploadedFilesRetrieved: false, + }); const uploadedFiles = await getUploadedFiles(year, stateCode, questionId); // *** hide the loading preloader - setUploadedFilesRetrieved(true); - setUploadedFiles(uploadedFiles); + this.setState({ + uploadedFilesRetrieved: true, + uploadedFiles: uploadedFiles, + }); }; - const deleteFile = async (fileId) => { + deleteFile = async (fileId) => { + const { year, stateCode } = this.props; + await deleteUploadedFile(year, stateCode, fileId); - await retrieveUploadedFiles(); + await this.retrieveUploadedFiles(); }; /* * TODO: when one file errors, the others are loaded but the error stays * to duplicate: try loading all 9 */ - const validateFileByExtension = (event) => { + validateFileByExtension = (event) => { if (event.target.files.length > 0) { const filesArray = event.target.files; // All files selected by a user const filePayload = []; @@ -144,8 +161,8 @@ const UploadComponent = ({ question }) => { const uploadName = file.name; const mediaSize = file.size / 1024 / 1024; const mediaExtension = uploadName.split(".").pop(); - const fileTypeAllowed = isFileTypeAllowed(mediaExtension); - const fileNameInvalid = !isFileNameValid(uploadName); + const fileTypeAllowed = this.isFileTypeAllowed(mediaExtension); + const fileNameInvalid = !this.isFileNameValid(uploadName); if (fileTypeAllowed === true) { if (fileNameInvalid === true) { @@ -165,129 +182,168 @@ const UploadComponent = ({ question }) => { ); } } - setInputErrors(errorString || null); - setLoadedFiles( - loadedFiles ? [...loadedFiles, ...filePayload] : [...filePayload] - ); - setBlockFileSubmission(false); + + const { loadedFiles } = this.state; + + this.setState({ + inputErrors: errorString || null, + loadedFiles: loadedFiles + ? [...loadedFiles, ...filePayload] + : [...filePayload], + blockFileSubmission: false, + }); if (errorString === "") { - dispatch(setAnswerEntry(event.target.name, filePayload)); + const { setAnswer } = this.props; + setAnswer(event.target.name, filePayload); } } }; - let submissionsAllowed = false; - if (year && stateCode) { - const stateReportStatus = reportStatus[`${stateCode}${year}`]; - submissionsAllowed = - stateReportStatus.status !== REPORT_STATUS.certified && - user.role === AppRoles.STATE_USER; - } + render() { + let submissionsAllowed = false; + const { year, stateCode, user, reportStatus } = this.props; + if (year && stateCode) { + const stateReportStatus = reportStatus[`${stateCode}${year}`]; + submissionsAllowed = + stateReportStatus.status !== REPORT_STATUS.certified && + user.role === AppRoles.STATE_USER; + } - return ( - <div> + return ( <div> - <TextField - accept=".jpg, .png, .docx, .doc, .pdf, .xlsx, .xls, .xlsm" - className="file_upload" + <div> + <TextField + accept=".jpg, .png, .docx, .doc, .pdf, .xlsx, .xls, .xlsm" + className="file_upload" + disabled={!submissionsAllowed} + errorMessage={this.state.inputErrors} + hint="Files must be in one of these formats: PDF, Word, Excel, or a valid image (jpg or png)." + label="Click Choose Files and make your selection(s) then click Upload to attach your files. Click View Uploaded to see a list of all files attached here." + multiple + name={this.props.question.id} + onChange={this.validateFileByExtension} + type="file" + /> + </div> + + {this.state.loadedFiles?.map((file, i) => ( + <div key={file.name}> + <a href={encodeURIComponent(file.name)} download> + {" "} + {file.name}{" "} + </a> + <Button + data-testid={`unstage-${i}`} + name={file.name} + onClick={this.removeFile} + size="small" + > + x + </Button> + </div> + ))} + + <Button + onClick={this.submitUpload} + size="small" disabled={!submissionsAllowed} - errorMessage={inputErrors} - hint="Files must be in one of these formats: PDF, Word, Excel, or a valid image (jpg or png)." - label="Click Choose Files and make your selection(s) then click Upload to attach your files. Click View Uploaded to see a list of all files attached here." - multiple - name={question.id} - onChange={validateFileByExtension} - type="file" - /> - </div> + className="" + > + Upload + </Button> - {loadedFiles?.map((file, i) => ( - <div key={file.name}> - <a href={encodeURIComponent(file.name)} download> - {file.name} - </a> - <Button - data-testid={`unstage-${i}`} - name={file.name} - onClick={removeFile} - size="small" - > - x - </Button> - </div> - ))} - - <Button - onClick={submitUpload} - size="small" - disabled={!submissionsAllowed} - className="" - > - Upload - </Button> - - <Button onClick={viewUploaded} size="small" className="margin-left-1em"> - {displayUploadedFiles ? `Hide Uploaded` : `View Uploaded`} - </Button> - - {displayUploadedFiles && uploadedFiles?.length > 0 ? ( - <table - data-testid="uploadedFilesContainer" - key={"uploadedFilesContainer"} - summary={ - question.label || "This is a table for the CARTS Application" - } + <Button + onClick={this.viewUploaded} + size="small" + className="margin-left-1em" > - <tbody> - {!uploadedFilesRetrieved ? ( - <tr> - <td> - <img - // eslint-disable-next-line - src={`/img/bouncing_ball.gif`} - alt="Retrieving uploaded files... Please wait..." - /> - <br /> - <br /> - Loading... Please wait... - </td> - </tr> - ) : ( - uploadedFiles.map((file) => { - return ( - <tr key={file.aws_filename}> - <td>{file.filename}</td> - <td> - <Button - size="small" - onClick={() => downloadFile(file.fileId)} - > - Download - </Button> - </td> - <td> - <Button - size="small" - onClick={() => deleteFile(file.fileId)} - disabled={!submissionsAllowed} - > - Delete - </Button> - </td> - </tr> - ); - }) - )} - </tbody> - </table> - ) : null} - </div> - ); -}; + {this.state.displayUploadedFiles ? `Hide Uploaded` : `View Uploaded`} + </Button> + + {this.state.displayUploadedFiles && + this.state.uploadedFiles?.length > 0 ? ( + <table + data-testid="uploadedFilesContainer" + key={"uploadedFilesContainer"} + summary={ + this.props.question.label || + "This is a table for the CARTS Application" + } + > + <tbody> + {!this.state.uploadedFilesRetrieved ? ( + <tr> + <td> + <img + // eslint-disable-next-line + src={`/img/bouncing_ball.gif`} + alt="Retrieving uploaded files... Please wait..." + />{" "} + <br /> + <br /> + Loading... Please wait... + </td> + </tr> + ) : ( + this.state.uploadedFiles.map((file) => { + return ( + <tr key={file.aws_filename}> + <td>{file.filename}</td> + <td> + <Button + size="small" + onClick={() => this.downloadFile(file.fileId)} + > + Download + </Button> + </td> + <td> + <Button + size="small" + onClick={() => this.deleteFile(file.fileId)} + disabled={!submissionsAllowed} + > + Delete + </Button> + </td> + </tr> + ); + }) + )} + </tbody> + </table> + ) : null} + </div> + ); + } +} UploadComponent.propTypes = { question: PropTypes.any, + id: PropTypes.any, +}; + +const mapStateToProps = (state) => ({ + USState: state.stateUser.abbr, // Currently this is meaningless dummy data + user: state.stateUser.currentUser, + year: state.formData[0].contents.section.year, + stateCode: state.formData[0].contents.section.state, + reportStatus: state.reportStatus, +}); + +const mapDispatchToProps = { + setAnswer: setAnswerEntry, }; -export default UploadComponent; +export default connect(mapStateToProps, mapDispatchToProps)(UploadComponent); + +/* + * associate with US State + * meets file validation requirements ( #517 ) + * for audit purposes, save name of user who is saving the file. + * save to server + * provide user with status updates - at a minimum "uploading..." and "upload complete". + * display spinner until file upload is complete (see below for design) + * provide user with notice if there is an error. + */ diff --git a/services/ui-src/src/components/sections/Print.jsx b/services/ui-src/src/components/sections/Print.jsx index f7bc26f35..a0cc8a27a 100644 --- a/services/ui-src/src/components/sections/Print.jsx +++ b/services/ui-src/src/components/sections/Print.jsx @@ -1,35 +1,28 @@ import React, { useEffect } from "react"; -import { shallowEqual, useDispatch, useSelector } from "react-redux"; +import { connect, useDispatch } from "react-redux"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faPrint } from "@fortawesome/free-solid-svg-icons"; import { Button } from "@cmsgov/design-system"; -import { useLocation } from "react-router-dom"; -import { Helmet } from "react-helmet"; -// components +import PropTypes from "prop-types"; import Title from "../layout/Title"; import Section from "../layout/Section"; -// utils import statesArray from "../utils/statesArray"; import { loadEnrollmentCounts, loadSections } from "../../actions/initial"; +import { useLocation } from "react-router-dom"; +import { Helmet } from "react-helmet"; import requestOptions from "../../hooks/authHooks/requestOptions"; import { apiLib } from "../../util/apiLib"; /** * Generate data and load entire form based on user information * + * @param currentUser + * @param state * @returns {JSX.Element} * @constructor */ -const Print = () => { +const Print = ({ currentUser, state, name }) => { const dispatch = useDispatch(); - const [formData, currentUser, name] = useSelector( - (state) => [ - state.formData, - state.stateUser.currentUser, - state.stateUser.name, - ], - shallowEqual - ); const search = useLocation().search; const searchParams = new URLSearchParams(search); const stateInitials = searchParams.get("state"); @@ -40,22 +33,22 @@ const Print = () => { const subsectionId = searchParams.get("subsectionId"); const openPdf = (basePdf) => { - const byteCharacters = atob(basePdf); + let byteCharacters = atob(basePdf); let byteNumbers = new Array(byteCharacters.length); for (let i = 0; i < byteCharacters.length; i++) { byteNumbers[i] = byteCharacters.charCodeAt(i); } - const byteArray = new Uint8Array(byteNumbers); - const file = new Blob([byteArray], { type: "application/pdf;base64" }); - const fileURL = URL.createObjectURL(file); + let byteArray = new Uint8Array(byteNumbers); + let file = new Blob([byteArray], { type: "application/pdf;base64" }); + let fileURL = URL.createObjectURL(file); window.open(fileURL); }; const getPdfFriendlyDocument = async () => { - // get html element and remove noscript tag - const html = document.querySelector("html"); - html.querySelector("noscript")?.remove(); - + const noscriptTag = document.querySelector("noscript"); + if (noscriptTag) { + noscriptTag.remove(); + } document.querySelectorAll("input").forEach((element) => { if (element.type === "text") { element.style.height = "50px"; @@ -66,22 +59,18 @@ const Print = () => { element.remove(); } }); - - if (!document.querySelector("base")) { - const base = document.createElement("base"); - base.href = `https://${window.location.host}`; - document.querySelector("head").prepend(base); - } - const htmlString = document .querySelector("html") - .outerHTML.replaceAll(`’`, `'`) + .outerHTML.replaceAll( + '<link href="', + `<link href="https://${window.location.host}` + ) + .replaceAll(`’`, `'`) .replaceAll(`‘`, `'`) .replaceAll(`”`, `"`) .replaceAll(`“`, `"`) .replaceAll("\u2013", "-") .replaceAll("\u2014", "-"); - const base64String = btoa(unescape(encodeURIComponent(htmlString))); const opts = await requestOptions(); opts.body = { @@ -96,12 +85,13 @@ const Print = () => { // Create function to call data to prevent return data from useEffect const retrieveUserData = async () => { // Get user details + const { stateUser } = state; const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); const selectedYear = urlParams.get("year"); let stateCode; - if (currentUser.state.id) { - stateCode = currentUser.state.id; + if (stateUser.currentUser.state.id) { + stateCode = stateUser.currentUser.state.id; } else { stateCode = urlParams.get("state"); } @@ -129,6 +119,7 @@ const Print = () => { const sections = []; // Check if formData has values + const { formData } = state; if (formData !== undefined && formData.length !== 0) { sections.push(<Title urlStateName={stateName} />); @@ -140,7 +131,6 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" - printView="true" /> ); } else { @@ -165,7 +155,6 @@ const Print = () => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" - printView="true" /> ); } @@ -186,6 +175,7 @@ const Print = () => { <FontAwesomeIcon icon={faPrint} /> Print </Button> </div> + <Helmet> <title> {stateName} CARTS FY{formYear} Report @@ -205,4 +195,16 @@ const Print = () => { ); }; -export default Print; +Print.propTypes = { + state: PropTypes.object.isRequired, + currentUser: PropTypes.object.isRequired, + name: PropTypes.string, +}; + +const mapStateToProps = (state) => ({ + state, + currentUser: state.stateUser, + name: state.stateUser.name, +}); + +export default connect(mapStateToProps)(Print); diff --git a/services/ui-src/src/components/sections/UserInfo.test.jsx b/services/ui-src/src/components/sections/UserInfo.test.jsx deleted file mode 100644 index 0d2270db5..000000000 --- a/services/ui-src/src/components/sections/UserInfo.test.jsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from "react"; -import { mount } from "enzyme"; -import configureMockStore from "redux-mock-store"; -import { Provider } from "react-redux"; -import thunk from "redux-thunk"; -// components -import UserInfo from "./UserInfo"; -// mocks -import { stateUserWithReportInProgress } from "../../store/fakeStoreExamples"; - -const mockStore = configureMockStore([thunk]); -const stateUser = mockStore(stateUserWithReportInProgress); - -const UserInfoComponent = ( - <Provider store={stateUser}> - <UserInfo /> - </Provider> -); - -describe("UserInfo", () => { - const { email, state } = stateUserWithReportInProgress.stateUser.currentUser; - it("should render the UserInfo Component correctly", () => { - const wrapper = mount(UserInfoComponent); - expect(wrapper.find("li").first().text()).toBe(`username: ${email}`); - expect(wrapper.find("li").at(1).text().trim()).toBe(`state: ${state.id}`); - }); -}); diff --git a/services/ui-src/src/components/sections/UserProfile.jsx b/services/ui-src/src/components/sections/UserProfile.jsx index 434eb6b46..64dc214fd 100644 --- a/services/ui-src/src/components/sections/UserProfile.jsx +++ b/services/ui-src/src/components/sections/UserProfile.jsx @@ -1,8 +1,8 @@ import React from "react"; -import { useSelector } from "react-redux"; +import { connect } from "react-redux"; +import PropTypes from "prop-types"; -const UserProfile = () => { - const currentUser = useSelector((state) => state.stateUser.currentUser); +const UserProfile = ({ currentUser }) => { return ( <div className="page-info ds-l-container"> <div className="ds-l-col--12"> @@ -38,4 +38,12 @@ const UserProfile = () => { ); }; -export default UserProfile; +UserProfile.propTypes = { + currentUser: PropTypes.object.isRequired, +}; + +const mapStateToProps = (state) => ({ + currentUser: state.stateUser.currentUser, +}); + +export default connect(mapStateToProps)(UserProfile); diff --git a/services/ui-src/src/components/sections/UserInfo.jsx b/services/ui-src/src/components/sections/Userinfo.jsx similarity index 57% rename from services/ui-src/src/components/sections/UserInfo.jsx rename to services/ui-src/src/components/sections/Userinfo.jsx index ca62d58fa..7000a58c8 100644 --- a/services/ui-src/src/components/sections/UserInfo.jsx +++ b/services/ui-src/src/components/sections/Userinfo.jsx @@ -1,8 +1,8 @@ import React from "react"; -import { useSelector } from "react-redux"; +import PropTypes from "prop-types"; +import { connect } from "react-redux"; -const UserInfo = () => { - const currentUser = useSelector((state) => state.stateUser.currentUser); +const Userinfo = ({ currentUser }) => { const info = Object.entries(currentUser).map(([key, value]) => { if (key === "state") { return ( @@ -26,4 +26,12 @@ const UserInfo = () => { ); }; -export default UserInfo; +Userinfo.propTypes = { + currentUser: PropTypes.object.isRequired, +}; + +const mapStateToProps = (state) => ({ + currentUser: state.stateUser.currentUser, +}); + +export default connect(mapStateToProps)(Userinfo); diff --git a/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx b/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx index 3ee3edbd5..e28785329 100644 --- a/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx +++ b/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx @@ -1,17 +1,21 @@ import React, { useEffect, useState } from "react"; -import { shallowEqual, useDispatch, useSelector } from "react-redux"; +import PropTypes from "prop-types"; +import { connect } from "react-redux"; +import { getAllStateStatuses } from "../../../actions/initial"; +import ReportItem from "./ReportItem"; +import { selectFormStatuses, selectYears } from "../../../store/selectors"; import { Button } from "@cmsgov/design-system"; import { MultiSelect } from "react-multi-select-component"; -// components -import ReportItem from "./ReportItem"; import { DropdownOption } from "../../fields/DropdownOption"; -// utils -import { getAllStateStatuses } from "../../../actions/initial"; -import { selectFormStatuses, selectYears } from "../../../store/selectors"; -// types import { STATUS_MAPPING, AppRoles } from "../../../types"; -const CMSHomepage = () => { +const CMSHomepage = ({ + getStatuses, + allStateStatuses, + currentUserRole, + stateList, + yearList, +}) => { const statusList = [ { label: "Certified", value: "certified" }, { label: "In Progress", value: "in_progress" }, @@ -28,21 +32,8 @@ const CMSHomepage = () => { const [statusIds, setStatusIds] = useState([]); const [filteredStatuses, setFilteredStatuses] = useState([]); - const dispatch = useDispatch(); - const [allStateStatuses, stateList, currentUserRole, yearList] = useSelector( - (state) => [ - selectFormStatuses(state), - state.allStatesData.map((element) => { - return { label: element.name, value: element.code }; - }), - state.stateUser.currentUser.role, - selectYears(state.global.currentYear), - ], - shallowEqual - ); - useEffect(() => { - dispatch(getAllStateStatuses()); + getStatuses(); setFilteredStatuses(allStateStatuses); }, []); @@ -247,4 +238,29 @@ const CMSHomepage = () => { ); }; -export default CMSHomepage; +CMSHomepage.propTypes = { + getStatuses: PropTypes.func.isRequired, + allStateStatuses: PropTypes.object.isRequired, + currentYear: PropTypes.number.isRequired, + currentUserRole: PropTypes.string.isRequired, + stateList: PropTypes.array.isRequired, + yearList: PropTypes.array.isRequired, + reportState: PropTypes.object.isRequired, +}; + +const mapState = (state) => ({ + allStateStatuses: selectFormStatuses(state), + currentYear: state.global.formYear, + stateList: state.allStatesData.map((element) => { + return { label: element.name, value: element.code }; + }), + currentUserRole: state.stateUser.currentUser.role, + reportstate: state.reportStatus, + yearList: selectYears(state), +}); + +const mapDispatch = { + getStatuses: getAllStateStatuses ?? {}, +}; + +export default connect(mapState, mapDispatch)(CMSHomepage); diff --git a/services/ui-src/src/components/sections/homepage/ReportItem.jsx b/services/ui-src/src/components/sections/homepage/ReportItem.jsx index 836a40a1b..fea0da316 100644 --- a/services/ui-src/src/components/sections/homepage/ReportItem.jsx +++ b/services/ui-src/src/components/sections/homepage/ReportItem.jsx @@ -1,32 +1,30 @@ import React from "react"; import PropTypes from "prop-types"; -import { useDispatch } from "react-redux"; +import { connect } from "react-redux"; import { Link } from "react-router-dom"; +import { theUncertify } from "../../../actions/uncertify"; +import { AppRoles } from "../../../types"; import { Dialog } from "@cmsgov/design-system"; -// utils -import { uncertifyReport } from "../../../actions/uncertify"; import useModal from "../../../hooks/useModal"; -// types -import { AppRoles } from "../../../types"; const ReportItem = ({ - link1Text = "View", - link1URL = "#", + link1Text, + link1URL, name, - statusText = "Missing Status", + statusText, + theUncertify: uncertifyAction, userRole, year, username, lastChanged, timeZone, }) => { - const dispatch = useDispatch(); const anchorTarget = "_self"; const stateCode = link1URL.toString().split("/")[3]; const stateYear = link1URL.toString().split("/")[4]; const { isShowing, toggleModal } = useModal(); let lastEditedNote = ""; - const isStateUser = userRole === AppRoles.STATE_USER; + let stateUser = userRole === AppRoles.STATE_USER; if (lastChanged) { const date = new Date(lastChanged); @@ -49,7 +47,7 @@ const ReportItem = ({ } const uncertify = async () => { - await dispatch(uncertifyReport(stateCode, stateYear)); + await uncertifyAction(stateCode, stateYear); toggleModal(); window.location.reload(false); }; @@ -62,7 +60,7 @@ const ReportItem = ({ return ( <> - {!isStateUser && ( + {!stateUser && ( <div className="report-item ds-l-row"> <div className="name ds-l-col--1">{year}</div> <div className="name ds-l-col--2">{name}</div> @@ -114,7 +112,7 @@ const ReportItem = ({ )} </div> )} - {isStateUser && ( + {stateUser && ( <div className="report-item ds-l-row"> <div className="name ds-l-col--2">{name}</div> <div className="status ds-l-col--2">{statusText}</div> @@ -135,6 +133,7 @@ const ReportItem = ({ }; ReportItem.propTypes = { + theUncertify: PropTypes.func.isRequired, link1Text: PropTypes.string, link1URL: PropTypes.string.isRequired, name: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, @@ -145,5 +144,16 @@ ReportItem.propTypes = { lastChanged: PropTypes.string.isRequired, timeZone: PropTypes.string, }; +ReportItem.defaultProps = { + link1Text: "View", + link1URL: "#", + statusText: "Missing Status", +}; + +const mapState = (state) => ({ + user: state.reportStatus.username, +}); + +const mapDispatch = { theUncertify }; -export default ReportItem; +export default connect(mapState, mapDispatch)(ReportItem); diff --git a/services/ui-src/src/components/utils/InvokeSection.jsx b/services/ui-src/src/components/utils/InvokeSection.jsx index fa3e27909..985050d10 100644 --- a/services/ui-src/src/components/utils/InvokeSection.jsx +++ b/services/ui-src/src/components/utils/InvokeSection.jsx @@ -1,18 +1,15 @@ import React, { useEffect } from "react"; -import { useDispatch, useSelector } from "react-redux"; +import { connect, useDispatch } from "react-redux"; import { useParams } from "react-router-dom"; -// components -import Section from "../layout/Section"; -// utils import { loadForm } from "../../actions/initial"; import { constructIdFromYearSectionAndSubsection } from "../../store/formData"; +import Section from "../layout/Section"; import { updateFormYear, updateStateName } from "../../store/globalVariables"; -const InvokeSection = () => { +const InvokeSection = (username) => { const { state, year, sectionOrdinal, subsectionMarker } = useParams(); const dispatch = useDispatch(); const currentPath = window.location.href; - const username = useSelector((state) => state.stateUser.currentUser.username); useEffect(() => { if (username) { @@ -41,4 +38,8 @@ const InvokeSection = () => { return <Section sectionId={sectionId} subsectionId={subsectionId} />; }; -export default InvokeSection; +const mapState = (state) => ({ + username: state.stateUser.currentUser.username, +}); + +export default connect(mapState)(InvokeSection); diff --git a/services/ui-src/src/components/utils/ScrollToTop.js b/services/ui-src/src/components/utils/ScrollToTop.js index 522275565..3e841787e 100644 --- a/services/ui-src/src/components/utils/ScrollToTop.js +++ b/services/ui-src/src/components/utils/ScrollToTop.js @@ -1,11 +1,11 @@ import { useEffect } from "react"; -import { useHistory } from "react-router-dom"; +import { withRouter } from "react-router-dom"; -function ScrollToTop() { - const history = useHistory(); +function ScrollToTop({ history }) { useEffect(() => { const unlisten = history.listen(() => { window.scrollTo(0, 0); + // Remove focus from clicked button document.activeElement.blur(); }); @@ -17,4 +17,4 @@ function ScrollToTop() { return null; } -export default ScrollToTop; +export default withRouter(ScrollToTop); diff --git a/services/ui-src/src/components/utils/Spinner.jsx b/services/ui-src/src/components/utils/Spinner.jsx index 67c5b9a0f..b823aa77e 100644 --- a/services/ui-src/src/components/utils/Spinner.jsx +++ b/services/ui-src/src/components/utils/Spinner.jsx @@ -1,22 +1,30 @@ import React from "react"; -import { useSelector } from "react-redux"; +import { connect } from "react-redux"; +import PropTypes from "prop-types"; -const Spinner = () => { - const isFetching = useSelector((state) => state.global.isFetching); +const Spinner = (props) => { + const { isFetching } = props; - return ( - isFetching && ( - <div className="preloader"> - <div className="preloader-image"> - <img - data-testid="spinner-img" - src={`/img/spinner.gif`} - alt="Loading. Please wait." - /> - </div> + return isFetching ? ( + <div className="preloader"> + <div className="preloader-image"> + <img + data-testid="spinner-img" + src={`/img/spinner.gif`} + alt="Loading. Please wait." + /> </div> - ) - ); + </div> + ) : null; }; -export default Spinner; +Spinner.propTypes = { + isFetching: PropTypes.bool.isRequired, +}; +const mapStateToProps = (state) => { + return { + isFetching: state.global.isFetching, + }; +}; + +export default connect(mapStateToProps)(Spinner); diff --git a/services/ui-src/src/hooks/authHooks/authLifecycle.js b/services/ui-src/src/hooks/authHooks/authLifecycle.js index c0ee3b689..ebce8f5c4 100644 --- a/services/ui-src/src/hooks/authHooks/authLifecycle.js +++ b/services/ui-src/src/hooks/authHooks/authLifecycle.js @@ -1,10 +1,10 @@ import { Auth, Hub } from "aws-amplify"; -import { add } from "date-fns"; +import moment from "moment"; import { setAuthTimeout } from "../../store/stateUser"; /* * After the token expires, refresh tokens will be used in the allotted idle window. - * If not retrieved, they will be prompted at the specified time to refresh or logout. + * If not retireved, they will bre prompted at the specified time to refresh or logout. */ const IDLE_WINDOW = 30 * 60 * 1000; // ms const PROMPT_AT = 29 * 60 * 1000; //ms @@ -22,10 +22,9 @@ class AuthManager { updateTimeout = debounce(() => this.setTimer()); constructor(store) { - // Force users with stale tokens greater than the timeout to log in for a fresh session - const expiration = localStorage.getItem("mdctcarts_session_exp"); - const isExpired = expiration && new Date(expiration).valueOf() < Date.now(); - if (isExpired) { + // Force users with stale tokens > then the timeout to log in for a fresh session + const exp = localStorage.getItem("mdctcarts_session_exp"); + if (exp && moment(exp).isBefore()) { localStorage.removeItem("mdctcarts_session_exp"); Auth.signOut().then(() => { window.location.href = "/"; @@ -64,7 +63,7 @@ class AuthManager { * Timer function for idle timeout, keeps track of an idle timer that triggers a forced logout timer if not reset. */ setTimer() { - const expiration = add(Date.now(), { seconds: IDLE_WINDOW / 1000 }); + const expiration = moment().add(IDLE_WINDOW, "milliseconds"); if (this.timeoutPromptId) { clearTimeout(this.timeoutPromptId); clearTimeout(this.timeoutForceId); diff --git a/services/ui-src/src/store/formData.js b/services/ui-src/src/store/formData.js index b6d86bf5b..ff00206cc 100644 --- a/services/ui-src/src/store/formData.js +++ b/services/ui-src/src/store/formData.js @@ -107,8 +107,8 @@ export default (state = initialState, action) => { }; /* Helper functions for getting values from the JSON returned by the API */ -export const selectSectionByOrdinal = (formData, ordinal) => { - const section = formData.filter( +export const selectSectionByOrdinal = (state, ordinal) => { + const section = state.formData.filter( (c) => c.contents.section.ordinal === ordinal ); if (section.length > 0) { @@ -158,22 +158,22 @@ export const extractJsonPathExpressionFromQuestionLike = ( }; export const selectFragmentByJsonPath = ( - formData, + state, expr, sectionOrdinal = false ) => { const sectionNumber = sectionOrdinal || extractSectionOrdinalFromJPExpr(expr); - const section = selectSectionByOrdinal(formData, sectionNumber); + const section = selectSectionByOrdinal(state, sectionNumber); // Note that the following assumes that there's only one matching result. const fragment = jsonpath.query(section, expr)[0]; return fragment; }; -export const selectFragmentById = (formData, id) => { +export const selectFragmentById = (state, id) => { const sectionOrdinal = extractSectionOrdinalFromId(id); const jpexpr = `$..*[?(@ && @.id=='${id}')]`; - return selectFragmentByJsonPath(formData, jpexpr, sectionOrdinal); + return selectFragmentByJsonPath(state, jpexpr, sectionOrdinal); }; /** @@ -199,8 +199,8 @@ export const selectFragmentFromTarget = (target, expr) => { * @param {string} id - The id of what we're looking for, e.g. 2020-01-a-01-01-a-01. * @param {string} jp - JSONPath expression, although if id is not supplied it must be a JSONPath expression with an id lookup in it. */ -export const selectFragment = (formData, id = null, jp = null) => { - if (!formData || formData.length === 0) { +export const selectFragment = (state, id = null, jp = null) => { + if (!state.formData || state.formData.length === 0) { return null; } if (!id && !jp) { @@ -208,7 +208,7 @@ export const selectFragment = (formData, id = null, jp = null) => { } const idValue = id ?? jp.split("id=='")[1].split("'")[0]; const sectionOrdinal = extractSectionOrdinalFromId(idValue); - const section = selectSectionByOrdinal(formData, sectionOrdinal); + const section = selectSectionByOrdinal(state, sectionOrdinal); let targetObject = section; const chunks = idValue.split("-").slice(2); // Year is irrelevant so we skip it; same for section since we just got it above. if (chunks.length >= 2) { diff --git a/services/ui-src/src/store/selectors.js b/services/ui-src/src/store/selectors.js index a64834d0c..35bd9396c 100644 --- a/services/ui-src/src/store/selectors.js +++ b/services/ui-src/src/store/selectors.js @@ -24,8 +24,8 @@ export const selectSectionTitle = (state, sectionId) => { return null; }; -export const selectSubsectionTitleAndPartIDs = (formData, subsectionId) => { - const subsection = selectFragment(formData, subsectionId); +export const selectSubsectionTitleAndPartIDs = (state, subsectionId) => { + const subsection = selectFragment(state, subsectionId); if (subsection) { return { @@ -37,6 +37,18 @@ export const selectSubsectionTitleAndPartIDs = (formData, subsectionId) => { return null; }; +export const selectPartTitle = (state, partId) => { + const part = selectFragment(state, partId); + + if (part) { + return { + text: part.text, + title: part.title, + }; + } + return null; +}; + export const selectQuestion = (state, id) => { const jp = `$..[*].contents.section.subsections[*].parts[*]..questions[?(@ && @.id=='${id}')]`; const questions = jsonpath.query(state, jp); @@ -51,29 +63,11 @@ export const selectQuestion = (state, id) => { * This function is a callback for the filter method in selectQuestionsForPart * @function filterDisplay * @param {object} question - single question from the unfilteredData array in selectQuestionsForPart. - * @param {object} currentUserRole - The role of the current user. Accessed at state.currentUser.role + * @param {object} state - the application state * @returns {boolean} - to be evaluated by the filter method */ -const filterDisplay = ( - question, - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments -) => { - if ( - !shouldDisplay( - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - question.context_data - ) - ) { +const filterDisplay = (question, state) => { + if (!shouldDisplay(state, question.context_data)) { // If context data and a variation of skip text exists if ( question.context_data && @@ -106,15 +100,7 @@ const filterDisplay = ( question.questions = question.questions .map((singleQuestion) => { // reassign question.questions to be a filtered version of itself - return filterDisplay( - singleQuestion, - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments - ); + return filterDisplay(singleQuestion, state); }) .filter((q) => q !== false); } @@ -122,41 +108,24 @@ const filterDisplay = ( }; // Returns an array of questions for the QuestionComponent to map through -export const selectQuestionsForPart = ( - formData, - currentUserRole, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partId -) => { +export const selectQuestionsForPart = (state, partId) => { const jp = `$..[*].contents.section.subsections[*].parts[?(@ && @.id=='${partId}')].questions[*]`; - const unfilteredData = JSON.parse( - JSON.stringify(jsonpath.query(formData, jp)) - ); + const unfilteredData = JSON.parse(JSON.stringify(jsonpath.query(state, jp))); // Filter the array of questions based on conditional logic const filteredQuestions = unfilteredData .map((question) => { - return filterDisplay( - question, - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments - ); + return filterDisplay(question, state); }) .filter((q) => q !== false); return filteredQuestions; }; -export const selectSectionsForNav = (formData) => { - if (formData) { - return formData.map( +export const selectSectionsForNav = (state) => { + if (state.formData) { + const sections = state.formData; + return sections.map( ({ contents: { section: { id, ordinal, subsections, title }, @@ -177,18 +146,18 @@ export const selectSectionsForNav = (formData) => { * @param {object} reportStatus - the current report status object stored in state * @param {object} formData - The current form object stored in state * @param {object} stateUser - The current user object stored in state - * @param {object} formYear - The form year currently stored in global state. + * @param {object} global - Global variables that will be the same regardless of users * @returns {object} The reportStatus object associated with the current report */ export const getCurrentReportStatus = ( reportStatus, formData, stateUser, - formYear + global ) => { let currentReport = ""; if (stateUser.currentUser.role === AppRoles.STATE_USER) { - currentReport = `${stateUser.abbr}${formYear}`; + currentReport = `${stateUser.abbr}${global.formYear}`; } else { if (formData?.[0] === undefined) return {}; currentReport = `${formData[0].stateId}${formData[0].year}`; @@ -199,25 +168,18 @@ export const getCurrentReportStatus = ( }; /** - * Get the Status for the current report. - * @param {object} reportStatus - the current report status object stored in state - * @param {object} formData - The current form object stored in state - * @param {object} stateUser - The current user object stored in state - * @param {object} formYear - Global variables that will be the same regardless of users - * @returns {object} The reportStatus object associated with the current report + * Determines if the report form should be editable. + * @param {object} state - The current state object + * @returns {boolean} */ -export const selectIsFormEditable = ( - reportStatus, - formData, - stateUser, - formYear -) => { +export const selectIsFormEditable = (state) => { + const { reportStatus, formData, stateUser, global } = state; const { role } = stateUser.currentUser; const { status } = getCurrentReportStatus( reportStatus, formData, stateUser, - formYear + global ); switch (status) { @@ -277,11 +239,13 @@ export const { selectFormStatus, selectFormStatuses } = (() => { }; })(); -export const selectYears = (currentYear) => { - const yearArray = []; +export const selectYears = (state) => { + const { global } = state; + + let yearArray = []; for ( let x = 2020; - x <= currentYear; + x <= global.currentYear; x++ // 2020 is the first year the new CARTS was used so there won't be an < 2020 forms ) { yearArray.push({ label: x, value: x }); diff --git a/services/ui-src/src/styles/_alerts.scss b/services/ui-src/src/styles/_alerts.scss index d4c9fc57f..96d644b16 100644 --- a/services/ui-src/src/styles/_alerts.scss +++ b/services/ui-src/src/styles/_alerts.scss @@ -14,8 +14,8 @@ z-index: 9; &.alert--unexpected-error__active { - position: sticky; - margin-top: 20px; + top: 60px; + margin-top: 0; } .flex { diff --git a/services/ui-src/src/styles/_main.scss b/services/ui-src/src/styles/_main.scss index 4b275d447..a1f9545e6 100644 --- a/services/ui-src/src/styles/_main.scss +++ b/services/ui-src/src/styles/_main.scss @@ -309,9 +309,6 @@ img { padding: ($padding * 2) ($padding * 5); text-align: center; width: auto; - @media only screen and (min-width: 768px) { - padding-right: 2rem; - } } } diff --git a/services/ui-src/src/styles/_sidebar.scss b/services/ui-src/src/styles/_sidebar.scss index b30be3c43..29d288bb0 100644 --- a/services/ui-src/src/styles/_sidebar.scss +++ b/services/ui-src/src/styles/_sidebar.scss @@ -5,25 +5,26 @@ .sidebar { margin: ($margin * 3) 0; - .skip-content { margin-bottom: ($margin * 3); } .state-header { margin-bottom: ($margin * 3); position: relative; - display: flex; - flex-flow: row wrap; - align-items: center; } .state-image { + position: absolute; + text-align: center; + top: 50%; + transform: translateY(-50%); width: 70px; } .state-name { font-size: 1.6rem; font-weight: $font-weight-semi-bold; - overflow-wrap: anywhere; + line-height: 70px; + padding-left: 70px; } } diff --git a/services/ui-src/src/util/shouldDisplay.js b/services/ui-src/src/util/shouldDisplay.js index 14c39e493..fe80e3ab7 100644 --- a/services/ui-src/src/util/shouldDisplay.js +++ b/services/ui-src/src/util/shouldDisplay.js @@ -14,8 +14,8 @@ import { * @param {object} hideIfInfo - the hide_if object from a question's context_data * @returns {boolean} - determines if an element should be filtered out, returning true hides a question */ -const hideIf = (formData, hideIfInfo) => { - const targetAnswer = jsonpath.query(formData, hideIfInfo.target)[0]; // User's selection from associated question +const hideIf = (state, hideIfInfo) => { + const targetAnswer = jsonpath.query(state, hideIfInfo.target)[0]; // User's selection from associated question const interactiveValues = hideIfInfo.values.interactive; // Array of values which if selected, should hide a question if (interactiveValues.includes(targetAnswer)) { @@ -27,10 +27,10 @@ const hideIf = (formData, hideIfInfo) => { return false; }; -const hideIfAll = (formData, hideIfAllInfo) => { +const hideIfAll = (state, hideIfAllInfo) => { const answers = hideIfAllInfo.values.interactive; return hideIfAllInfo.targets - .map((target) => jsonpath.query(formData, target)[0]) + .map((target) => jsonpath.query(state, target)[0]) .every((answer) => answers.includes(answer)); }; @@ -41,8 +41,8 @@ const hideIfAll = (formData, hideIfAllInfo) => { * @param {object} hideIfNotInfo - the hide_if_not object from a question's context_data * @returns {boolean} - determines if an element should be filtered out, returning true hides a question */ -const hideIfNot = (formData, hideIfNotInfo) => { - const targetAnswer = jsonpath.query(formData, hideIfNotInfo.target)[0]; // Array of user selections from associated question +const hideIfNot = (state, hideIfNotInfo) => { + const targetAnswer = jsonpath.query(state, hideIfNotInfo.target)[0]; // Array of user selections from associated question const interactiveValues = hideIfNotInfo.values.interactive; // Array of values which if present in a user's selections, should hide a question const includedBoolean = @@ -53,15 +53,9 @@ const hideIfNot = (formData, hideIfNotInfo) => { return includedBoolean; }; -const hideIfTableValue = ( - formData, - allStatesData, - stateUserAbbr, - chipEnrollments, - hideIfTableValueInfo -) => { +const hideIfTableValue = (state, hideIfTableValueInfo) => { // Get table values - const targetValues = jsonpath.query(formData, hideIfTableValueInfo.target)[0]; + const targetValues = jsonpath.query(state, hideIfTableValueInfo.target)[0]; let computedValues = []; // If target needs to be calculated @@ -72,19 +66,14 @@ const hideIfTableValue = ( for (const item of targetRow) { // get computed value via lookup function and push into a multidimensional array if (item.compareACS) { - computedRow.push( - compareACS(allStatesData, stateUserAbbr, item.compareACS) - ); + computedRow.push(compareACS(state, item.compareACS)); } else if (item.lookupChipEnrollments) { computedRow.push( - lookupChipEnrollments(chipEnrollments, item.lookupChipEnrollments) + lookupChipEnrollments(state, item.lookupChipEnrollments) ); } else if (item.compareChipEnrollements) { computedRow.push( - compareChipEnrollements( - chipEnrollments, - item.compareChipEnrollements - ) + compareChipEnrollements(state, item.compareChipEnrollements) ); } else { // Let non-computed entries pass through with the other data transparently @@ -180,11 +169,11 @@ const hideIfTableValue = ( const PROGRAM_TYPE_QUESTION_ID = "-00-a-01-02"; -const getProgramTypeFromForm = (formData, reportStatus) => { +const getProgramTypeFromForm = (state) => { // attempt to find programType from same year as form - const formYear = formData[0].year; + const formYear = state.formData[0].year; const currentYearProgramType = selectFragmentById( - formData, + state, `${formYear}${PROGRAM_TYPE_QUESTION_ID}` )?.answer?.entry; if (currentYearProgramType) { @@ -194,11 +183,11 @@ const getProgramTypeFromForm = (formData, reportStatus) => { // attempt to find programType from the previous year's form, otherwise retrieve from status const previousYear = parseInt(formYear) - 1; const previousYearProgramType = selectFragmentById( - formData, + state, `${previousYear}${PROGRAM_TYPE_QUESTION_ID}` )?.answer?.entry; - const reportStatusCode = formData[0].stateId + formData[0].year; - const programFromStatus = reportStatus[reportStatusCode].programType; + const reportStatusCode = state.formData[0].stateId + state.formData[0].year; + const programFromStatus = state.reportStatus[reportStatusCode].programType; return previousYearProgramType || programFromStatus; }; @@ -209,16 +198,8 @@ const getProgramTypeFromForm = (formData, reportStatus) => { * @param {object} context - the context_data from a question * @returns {boolean} - determines if an element should be filtered out, returning true means a question will display */ -const shouldDisplay = ( - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - context -) => { - if (currentUserRole === AppRoles.CMS_ADMIN) return true; +const shouldDisplay = (state, context) => { + if (state.stateUser.currentUser.role === AppRoles.CMS_ADMIN) return true; if ( !context || @@ -232,7 +213,7 @@ const shouldDisplay = ( * displaying relies on that answer being included in the show_if_state_program_type_in array */ if (context.show_if_state_program_type_in) { - const program = getProgramTypeFromForm(formData, reportStatus); + const program = getProgramTypeFromForm(state); return context.show_if_state_program_type_in.includes(program); } @@ -241,12 +222,12 @@ const shouldDisplay = ( * displaying relies on that answer being incldued in the hide_if.values.interactive array */ if (context.conditional_display.hide_if) { - return !hideIf(formData, context.conditional_display.hide_if); + return !hideIf(state, context.conditional_display.hide_if); } // hide_if_all, there is an array of targets (questions) that another question's display relies on if (context.conditional_display.hide_if_all) { - return !hideIfAll(formData, context.conditional_display.hide_if_all); + return !hideIfAll(state, context.conditional_display.hide_if_all); } /* @@ -254,7 +235,7 @@ const shouldDisplay = ( * displaying relies on that array of answers including any of the values from the hide_if_not.values.interactive array */ if (context.conditional_display.hide_if_not) { - return !hideIfNot(formData, context.conditional_display.hide_if_not); + return !hideIfNot(state, context.conditional_display.hide_if_not); } /* @@ -263,10 +244,7 @@ const shouldDisplay = ( */ if (context.conditional_display.hide_if_table_value) { return hideIfTableValue( - formData, - allStatesData, - stateUserAbbr, - chipEnrollments, + state, context.conditional_display.hide_if_table_value ); } diff --git a/services/ui-src/src/util/shouldDisplay.test.js b/services/ui-src/src/util/shouldDisplay.test.js index de48fe230..b3ccfd317 100644 --- a/services/ui-src/src/util/shouldDisplay.test.js +++ b/services/ui-src/src/util/shouldDisplay.test.js @@ -88,15 +88,7 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["a different program"], }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(false); }); @@ -123,15 +115,7 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); }); @@ -159,15 +143,7 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(1); }); @@ -196,15 +172,7 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(1); }); @@ -234,15 +202,7 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(2); }); @@ -254,10 +214,8 @@ describe("shouldDisplay", () => { role: "test role", }, }, - formData: { - foo: { - bar: "baz", - }, + foo: { + bar: "baz", }, }; const context = { @@ -270,15 +228,7 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - null, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(false); }); @@ -289,10 +239,8 @@ describe("shouldDisplay", () => { role: "test role", }, }, - formData: { - foo: { - bar: "quux", - }, + foo: { + bar: "quux", }, }; const context = { @@ -305,15 +253,7 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); }); @@ -324,13 +264,11 @@ describe("shouldDisplay", () => { role: "test role", }, }, - formData: { - foo: { - // All of these are in values.interactive - bar: "baz", - bbr: "bbz", - bcr: "baz", - }, + foo: { + // All of these are in values.interactive + bar: "baz", + bbr: "bbz", + bcr: "baz", }, }; const context = { @@ -343,15 +281,7 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(false); }); @@ -362,13 +292,11 @@ describe("shouldDisplay", () => { role: "test role", }, }, - formData: { - foo: { - // One of these is not in values.interactive - bar: "baz", - bbr: "bbz", - bcr: "quux", - }, + foo: { + // One of these is not in values.interactive + bar: "baz", + bbr: "bbz", + bcr: "quux", }, }; const context = { @@ -381,15 +309,7 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); }); @@ -400,11 +320,9 @@ describe("shouldDisplay", () => { role: "test role", }, }, - formData: { - foo: { - // At least one of these is in values.interactive - bar: ["baz", "quux"], - }, + foo: { + // At least one of these is in values.interactive + bar: ["baz", "quux"], }, }; const context = { @@ -417,15 +335,7 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); }); @@ -436,11 +346,9 @@ describe("shouldDisplay", () => { role: "test role", }, }, - formData: { - foo: { - // None of these are in values.interactive - bar: ["corge", "quux"], - }, + foo: { + // None of these are in values.interactive + bar: ["corge", "quux"], }, }; const context = { @@ -453,15 +361,7 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - state.formData, - state.reportStatus, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(false); }); @@ -476,15 +376,7 @@ describe("shouldDisplay", () => { const context = { conditional_display: {}, }; - const result = shouldDisplay( - state.stateUser.currentUser.role, - null, - null, - null, - null, - null, - context - ); + const result = shouldDisplay(state, context); expect(result).toBe(true); }); }); diff --git a/services/ui-src/src/util/synthesize.js b/services/ui-src/src/util/synthesize.js index 497eabff0..904d85777 100644 --- a/services/ui-src/src/util/synthesize.js +++ b/services/ui-src/src/util/synthesize.js @@ -183,21 +183,28 @@ const sum = (values) => { return returnValue; }; -const lookupFMAP = (allStatesData, stateName, stateUserAbbr, fy) => { +const lookupFMAP = (state, fy) => { // if admin and in a print view get state param const urlSearchParams = new URLSearchParams(window.location.search); const stateFromParams = urlSearchParams.get("state"); - if (allStatesData && (stateName || stateUserAbbr || stateFromParams)) { + if ( + state.allStatesData && + (state.global.stateName || state.stateUser.abbr || stateFromParams) + ) { let stateData = ""; - if (stateUserAbbr) { - stateData = allStatesData.filter((st) => st.code === stateUserAbbr)[0]; + if (state.stateUser.abbr) { + stateData = state.allStatesData.filter( + (st) => st.code === state.stateUser.abbr + )[0]; } else if (stateFromParams) { - stateData = allStatesData.filter( + stateData = state.allStatesData.filter( (st) => st.code.toLowerCase() === stateFromParams.toLowerCase() )[0]; } else { - stateData = allStatesData.filter((st) => st.name === stateName)[0]; + stateData = state.allStatesData.filter( + (st) => st.name === state.global.stateName + )[0]; } const fmap = stateData?.fmapSet.filter((year) => year.fiscalYear === +fy)[0] @@ -215,20 +222,6 @@ const snakeToCamel = (str) => group.toUpperCase().replace("-", "").replace("_", "") ); -// returns the state abbreviation for the associated report -const getStateAbbr = (stateUserAbbr) => { - if (stateUserAbbr) return stateUserAbbr; - const windowPathName = window.location.pathname; - // if admin, grab the state from the URL - const stateFromURL = windowPathName.split("/")[3]; - - // if admin and in a print view get state param - const urlSearchParams = new URLSearchParams(window.location.search); - const stateFromParams = urlSearchParams.get("state"); - - return windowPathName.includes("print") ? stateFromParams : stateFromURL; -}; - /** * Retrieve acsSet from state and return for individual state. * @@ -237,20 +230,35 @@ const getStateAbbr = (stateUserAbbr) => { * @param {string} acsProperty * @returns {string} */ -const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { +const lookupAcs = (state, { ffy, acsProperty }) => { let returnValue = "Not Available"; // Support prior lookup syntax in form lookups const acsPropQuery = acsProperty.includes("_") ? snakeToCamel(acsProperty) : acsProperty; - // if allStatesData is a populated array - if (allStatesData?.length > 0) { - const stateAbbr = getStateAbbr(stateUserAbbr); + // if allStatesData and stateUser are available + if (state.allStatesData && state.stateUser) { + const windowPathName = window.location.pathname; + // if admin, grab the state from the URL + const stateFromURL = windowPathName.split("/")[3]; + + // if admin and in a print view get state param + const urlSearchParams = new URLSearchParams(window.location.search); + const stateFromParams = urlSearchParams.get("state"); - // Find data for matching state - const stateData = allStatesData.find((st) => st.code === stateAbbr); - const acs = stateData?.acsSet.find((year) => year.year === +ffy); + // Get stateUser state or fallback to the URL, if an admin + const stateAbbr = + state.stateUser.abbr || + (windowPathName.includes("print") ? stateFromParams : stateFromURL); + + // Filter for only matching state + const stateData = state.allStatesData.filter( + (st) => st.code === stateAbbr + )[0]; + + // Filter for matching state from JSON + const acs = stateData?.acsSet.filter((year) => year.year === +ffy)[0]; // If acs exists, return the value from the object if (acs) { @@ -266,32 +274,32 @@ const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { /** * Retrieve acsSet from state and return percentage change for 2 given years. * - * @param {object} allStatesData - * @param {string} stateUserAbbr + * @param {string} state * @param {string} ffy1 * @param {string} ffy2 * @param {string} acsProperty * @returns {(string|float)} */ -export const compareACS = ( - allStatesData, - stateUserAbbr, - { ffy1, ffy2, acsProperty } -) => { +export const compareACS = (state, { ffy1, ffy2, acsProperty }) => { const percentagePrecision = 2; let returnValue = "Not Available"; - // if allStatesData is a populated array - if (allStatesData?.length > 0) { - const stateAbbr = getStateAbbr(stateUserAbbr); - const stateData = allStatesData.find((st) => st.code === stateAbbr); - - // Find the correct year of state data - const startACS = stateData?.acsSet.find( + // if allStatesData and stateUser are available + if (state.allStatesData && state.stateUser) { + // Get stateUser state + const stateAbbr = state.stateUser.abbr; + + // Filter for only matching state + const stateData = state.allStatesData.filter( + (st) => st.code === stateAbbr + )[0]; + + // Filter for the correct year of state data + const startACS = stateData?.acsSet.filter( (year) => year.year === parseInt(ffy1, 10) - ); - const endACS = stateData?.acsSet.find( + )[0]; + const endACS = stateData?.acsSet.filter( (year) => year.year === parseInt(ffy2, 10) - ); + )[0]; // If start year and end year of ACS exist, return the calculated value (percent change) from the objects if (startACS && endACS) { @@ -311,12 +319,15 @@ export const compareACS = ( }; export const lookupChipEnrollments = ( - chipEnrollments, + state, { ffy, enrollmentType, index } ) => { let returnValue = "Not Available"; - if (chipEnrollments && chipEnrollments.length > 0) { - let targetValue = chipEnrollments.find( + if ( + state.enrollmentCounts && + state.enrollmentCounts.chipEnrollments.length > 0 + ) { + let targetValue = state.enrollmentCounts.chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === index && @@ -324,7 +335,7 @@ export const lookupChipEnrollments = ( ); // Lookup the primary stat for the past year if missing if (!targetValue && index == 1) { - targetValue = chipEnrollments.find( + targetValue = state.enrollmentCounts.chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy - 1 && enrollment.indexToUpdate === index + 1 && @@ -338,20 +349,20 @@ export const lookupChipEnrollments = ( return returnValue; }; -export const compareChipEnrollements = ( - chipEnrollments, - { ffy, enrollmentType } -) => { +export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { let returnValue = "Not Available"; - if (chipEnrollments && chipEnrollments.length > 0) { + if ( + state.enrollmentCounts && + state.enrollmentCounts.chipEnrollments.length > 0 + ) { // Retrieve Values - let oldCount = chipEnrollments.find( + let oldCount = state.enrollmentCounts.chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === 1 && enrollment.typeOfEnrollment === enrollmentType ); - const newCount = chipEnrollments.find( + const newCount = state.enrollmentCounts.chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === 2 && @@ -362,7 +373,7 @@ export const compareChipEnrollements = ( * In case this year's data has been sent, but last year's wasn't included * we still can look it up as the last year's current value */ - oldCount = chipEnrollments.find( + oldCount = state.enrollmentCounts.chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy - 1 && enrollment.indexToUpdate === 2 && @@ -384,68 +395,41 @@ export const compareChipEnrollements = ( return returnValue; }; -const synthesizeValue = ( - value, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData -) => { +const synthesizeValue = (value, state) => { if (value.contents) { return value; } if (value.lookupFmapFy) { - return { - contents: lookupFMAP( - allStatesData, - stateName, - stateUserAbbr, - value.lookupFmapFy - ), - }; + return { contents: lookupFMAP(state, value.lookupFmapFy) }; } if (value.lookupAcs) { - return { - contents: [lookupAcs(allStatesData, stateUserAbbr, value.lookupAcs)], - }; + return { contents: [lookupAcs(state, value.lookupAcs)] }; } if (value.compareACS) { - return { - contents: [compareACS(allStatesData, stateUserAbbr, value.compareACS)], - }; + return { contents: [compareACS(state, value.compareACS)] }; } if (value.lookupChipEnrollments) { return { - contents: [ - lookupChipEnrollments(chipEnrollments, value.lookupChipEnrollments), - ], + contents: [lookupChipEnrollments(state, value.lookupChipEnrollments)], }; } if (value.compareChipEnrollements) { return { - contents: [ - compareChipEnrollements(chipEnrollments, value.compareChipEnrollements), - ], + contents: [compareChipEnrollements(state, value.compareChipEnrollements)], }; } if (value.targets) { const targets = value.targets.map((target) => { if (typeof target === "object" && target.lookupFmapFy) { - return lookupFMAP( - allStatesData, - stateName, - stateUserAbbr, - target.lookupFmapFy - ); + return lookupFMAP(state, target.lookupFmapFy); } - return jsonpath.query(formData, target)[0]; + return jsonpath.query(state, target)[0]; }); if (value.actions) { diff --git a/services/ui-src/src/util/synthesize.test.js b/services/ui-src/src/util/synthesize.test.js index 43aed8a7b..dcd9f979d 100644 --- a/services/ui-src/src/util/synthesize.test.js +++ b/services/ui-src/src/util/synthesize.test.js @@ -3,9 +3,6 @@ import synthesize from "../util/synthesize"; const state = { - global: { - stateName: "Alabama", - }, allStatesData: [ { name: "Alabama", @@ -36,43 +33,38 @@ const state = { stateUser: { abbr: "AL", }, - formData: [ + items: [ { - id: "section1", - items: [ - { - id: "item0", - answer: { entry: "0" }, - }, - { - id: "item1", - answer: { entry: "1" }, - }, - { - id: "item2", - answer: { entry: "2" }, - }, - { - id: "item3", - answer: { entry: "3" }, - }, - { - id: "item4", - answer: { entry: "4" }, - }, - { - id: "item5", - answer: { entry: "5" }, - }, - { - id: "item6", - answer: { entry: null }, - }, - { - id: "item7", - answer: { entry: "abc" }, - }, - ], + id: "item0", + answer: { entry: "0" }, + }, + { + id: "item1", + answer: { entry: "1" }, + }, + { + id: "item2", + answer: { entry: "2" }, + }, + { + id: "item3", + answer: { entry: "3" }, + }, + { + id: "item4", + answer: { entry: "4" }, + }, + { + id: "item5", + answer: { entry: "5" }, + }, + { + id: "item6", + answer: { entry: null }, + }, + { + id: "item7", + answer: { entry: "abc" }, }, ], enrollmentCounts: { @@ -128,7 +120,7 @@ const fallbackChipState = { }, }; -describe("value synthesis utility", () => { +describe("value synthesization utility", () => { describe("handles identity", () => { test("with no values", () => { // Returns undefined, because there's not a value @@ -137,11 +129,7 @@ describe("value synthesis utility", () => { targets: [], actions: ["identity"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: undefined }); }); @@ -156,11 +144,7 @@ describe("value synthesis utility", () => { ], actions: ["identity"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "3" }); }); @@ -178,11 +162,7 @@ describe("value synthesis utility", () => { ], actions: ["sum"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: NaN }); }); @@ -198,11 +178,7 @@ describe("value synthesis utility", () => { ], actions: ["sum"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: NaN }); }); @@ -218,11 +194,7 @@ describe("value synthesis utility", () => { ], actions: ["sum"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: 4 }); }); @@ -238,11 +210,7 @@ describe("value synthesis utility", () => { ], actions: ["sum"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: 9 }); }); @@ -256,11 +224,7 @@ describe("value synthesis utility", () => { targets: ["$..*[?(@ && @.id==='item4')].answer.entry"], actions: ["percentage"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "" }); }); @@ -275,11 +239,7 @@ describe("value synthesis utility", () => { ], actions: ["percentage"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "" }); }); @@ -294,11 +254,7 @@ describe("value synthesis utility", () => { ], actions: ["percentage"], }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "33.33%" }); }); @@ -314,11 +270,7 @@ describe("value synthesis utility", () => { actions: ["percentage"], precision: 4, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "33.3333%" }); }); @@ -334,11 +286,7 @@ describe("value synthesis utility", () => { actions: ["percentage"], precision: 0, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "33%" }); }); @@ -354,11 +302,7 @@ describe("value synthesis utility", () => { actions: ["percentage"], precision: -3, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "33.33%" }); }); @@ -379,11 +323,7 @@ describe("value synthesis utility", () => { actions: ["rpn"], rpn: "@ @ + + -", }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: "" }); @@ -402,11 +342,7 @@ describe("value synthesis utility", () => { actions: ["rpn"], rpn: "@ @ +", }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: 4 }); @@ -428,11 +364,7 @@ describe("value synthesis utility", () => { actions: ["rpn"], rpn: "@ @ @ @ @ - + * /", }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: NaN }); @@ -452,11 +384,7 @@ describe("value synthesis utility", () => { actions: ["rpn"], rpn: "@ @ @ @ @ - + * /", }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: 1.6 }); @@ -474,11 +402,7 @@ describe("value synthesis utility", () => { actions: ["rpn"], rpn: "@ @ @ 2 + + *", }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: 12 }); @@ -503,11 +427,7 @@ describe("value synthesis utility", () => { actions: ["rpn"], rpn: "- + @ @ * / @ @ @", }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: 1.6 }); @@ -523,11 +443,7 @@ describe("value synthesis utility", () => { acsProperty: "numberUninsured", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["27,000"] }); }); @@ -540,11 +456,7 @@ describe("value synthesis utility", () => { acsProperty: "number_uninsured", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["27,000"] }); }); @@ -557,11 +469,7 @@ describe("value synthesis utility", () => { acsProperty: "cyborgsCreated", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["Not Available"] }); const outCompare = synthesize( @@ -572,11 +480,7 @@ describe("value synthesis utility", () => { acsProperty: "cyborgsCreated", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(outCompare).toEqual({ contents: ["Not Available"] }); }); @@ -589,11 +493,7 @@ describe("value synthesis utility", () => { acsProperty: "percentUninsured", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["2.1%"] }); }); @@ -607,34 +507,7 @@ describe("value synthesis utility", () => { acsProperty: "numberUninsured", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData - ); - expect(out).toEqual({ contents: ["3.70%"] }); - }); - - it("compares two ffys as admin user", () => { - Object.defineProperty(window, "location", { - value: { - pathname: "/views/sections/AL/2023/02", - }, - }); - const out = synthesize( - { - compareACS: { - ffy1: 2021, - ffy2: 2020, - acsProperty: "numberUninsured", - }, - }, - state.allStatesData, - state.global.stateName, - undefined, // state user abbreviation - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["3.70%"] }); }); @@ -650,11 +523,7 @@ describe("value synthesis utility", () => { index: 2, }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["333"] }); }); @@ -667,11 +536,7 @@ describe("value synthesis utility", () => { index: 1, }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - fallbackChipState.enrollmentCounts.chipEnrollments, - state.formData + fallbackChipState ); expect(out).toEqual({ contents: ["301"] }); }); @@ -683,11 +548,7 @@ describe("value synthesis utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["10.631%"] }); }); @@ -700,11 +561,7 @@ describe("value synthesis utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - fallbackChipState.enrollmentCounts.chipEnrollments, - state.formData + fallbackChipState ); expect(out).toEqual({ contents: ["10.631%"] }); }); @@ -716,11 +573,7 @@ describe("value synthesis utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData + state ); expect(out).toEqual({ contents: ["Not Available"] }); }); diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index 232dd1a4b..be4111350 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -3124,120 +3124,120 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@esbuild/aix-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" - integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== - -"@esbuild/android-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" - integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== - -"@esbuild/android-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" - integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== - -"@esbuild/android-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" - integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== - -"@esbuild/darwin-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" - integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== - -"@esbuild/darwin-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" - integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== - -"@esbuild/freebsd-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" - integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== - -"@esbuild/freebsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" - integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== - -"@esbuild/linux-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" - integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== - -"@esbuild/linux-arm@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" - integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== - -"@esbuild/linux-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" - integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== - -"@esbuild/linux-loong64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" - integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== - -"@esbuild/linux-mips64el@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" - integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== - -"@esbuild/linux-ppc64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" - integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== - -"@esbuild/linux-riscv64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" - integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== - -"@esbuild/linux-s390x@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" - integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== - -"@esbuild/linux-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" - integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== - -"@esbuild/netbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" - integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== - -"@esbuild/openbsd-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" - integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== - -"@esbuild/sunos-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" - integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== - -"@esbuild/win32-arm64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" - integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== - -"@esbuild/win32-ia32@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" - integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== - -"@esbuild/win32-x64@0.21.5": - version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" - integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== +"@esbuild/aix-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" + integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== + +"@esbuild/android-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" + integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== + +"@esbuild/android-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" + integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== + +"@esbuild/android-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" + integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== + +"@esbuild/darwin-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" + integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== + +"@esbuild/darwin-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" + integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== + +"@esbuild/freebsd-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" + integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== + +"@esbuild/freebsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" + integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== + +"@esbuild/linux-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" + integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== + +"@esbuild/linux-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" + integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== + +"@esbuild/linux-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" + integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== + +"@esbuild/linux-loong64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" + integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== + +"@esbuild/linux-mips64el@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" + integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== + +"@esbuild/linux-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" + integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== + +"@esbuild/linux-riscv64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" + integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== + +"@esbuild/linux-s390x@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" + integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== + +"@esbuild/linux-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" + integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== + +"@esbuild/netbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" + integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== + +"@esbuild/openbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" + integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== + +"@esbuild/sunos-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" + integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== + +"@esbuild/win32-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" + integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== + +"@esbuild/win32-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" + integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== + +"@esbuild/win32-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" + integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -3748,85 +3748,85 @@ "@babel/runtime" "^7.23.2" immutable "^4.3.4" -"@rollup/rollup-android-arm-eabi@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.2.tgz#4e0c4c462692ecb7ae2b008f25af4cced05ac4f9" - integrity sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw== - -"@rollup/rollup-android-arm64@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.2.tgz#d97ed02a950061adc2056d6d2d6df8f05d877ae9" - integrity sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ== - -"@rollup/rollup-darwin-arm64@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.2.tgz#06dec35316de9fe433d66c849ecc056e221ba422" - integrity sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg== - -"@rollup/rollup-darwin-x64@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.2.tgz#22ee27a0ccfdc045c2a37f6980351329516ce119" - integrity sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q== - -"@rollup/rollup-linux-arm-gnueabihf@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.2.tgz#d86df2d8c600ebdd7251110a3357c53e0a583ace" - integrity sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg== - -"@rollup/rollup-linux-arm-musleabihf@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.2.tgz#a8b7b6a805356c8bd0409e4c5f56664d80a50aaa" - integrity sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ== - -"@rollup/rollup-linux-arm64-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.2.tgz#766064021d2bfc42f13f4653f8870a9b8bbdc31d" - integrity sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A== - -"@rollup/rollup-linux-arm64-musl@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.2.tgz#490f49236102b97738d9406eaf5cd8d9dad35c15" - integrity sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.2.tgz#03a67f1476dd80f115ce35bc9b0d03c50c16679d" - integrity sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg== - -"@rollup/rollup-linux-riscv64-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.2.tgz#d86e9b7b5b242652cd691c46d1939130c35cb68d" - integrity sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg== - -"@rollup/rollup-linux-s390x-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.2.tgz#c8fca373bec6df8550b31b3dbb56e2b241bc8718" - integrity sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA== - -"@rollup/rollup-linux-x64-gnu@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.2.tgz#be182ef761c9b0147496e647ace44fd1b912344f" - integrity sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ== - -"@rollup/rollup-linux-x64-musl@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.2.tgz#c280202d5b54d04f1e2b810359fe73c4973e8b72" - integrity sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g== - -"@rollup/rollup-win32-arm64-msvc@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.2.tgz#8ae561401b92acb8ca7a842ffadececb22a2247e" - integrity sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA== - -"@rollup/rollup-win32-ia32-msvc@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.2.tgz#c3a8b081595026eab9fccfe581624cb31af0d6f8" - integrity sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw== - -"@rollup/rollup-win32-x64-msvc@4.22.2": - version "4.22.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.2.tgz#c770006ccc780b2de7b2151fc7f37b49121a21c1" - integrity sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA== +"@rollup/rollup-android-arm-eabi@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" + integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== + +"@rollup/rollup-android-arm64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" + integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== + +"@rollup/rollup-darwin-arm64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" + integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== + +"@rollup/rollup-darwin-x64@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" + integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== + +"@rollup/rollup-linux-arm-gnueabihf@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" + integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== + +"@rollup/rollup-linux-arm-musleabihf@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" + integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== + +"@rollup/rollup-linux-arm64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" + integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== + +"@rollup/rollup-linux-arm64-musl@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" + integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" + integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== + +"@rollup/rollup-linux-riscv64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" + integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== + +"@rollup/rollup-linux-s390x-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" + integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== + +"@rollup/rollup-linux-x64-gnu@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" + integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== + +"@rollup/rollup-linux-x64-musl@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" + integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== + +"@rollup/rollup-win32-arm64-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" + integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== + +"@rollup/rollup-win32-ia32-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" + integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== + +"@rollup/rollup-win32-x64-msvc@4.17.2": + version "4.17.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" + integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== "@sheerun/mutationobserver-shim@^0.3.2": version "0.3.3" @@ -5842,11 +5842,6 @@ date-fns@^2.28.0: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.29.1.tgz#9667c2615525e552b5135a3116b95b1961456e60" integrity sha512-dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HAw== -date-fns@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-3.6.0.tgz#f20ca4fe94f8b754951b24240676e8618c0206bf" - integrity sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww== - debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" @@ -6271,34 +6266,34 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.21.3: - version "0.21.5" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" - integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== +esbuild@^0.20.1: + version "0.20.2" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" + integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== optionalDependencies: - "@esbuild/aix-ppc64" "0.21.5" - "@esbuild/android-arm" "0.21.5" - "@esbuild/android-arm64" "0.21.5" - "@esbuild/android-x64" "0.21.5" - "@esbuild/darwin-arm64" "0.21.5" - "@esbuild/darwin-x64" "0.21.5" - "@esbuild/freebsd-arm64" "0.21.5" - "@esbuild/freebsd-x64" "0.21.5" - "@esbuild/linux-arm" "0.21.5" - "@esbuild/linux-arm64" "0.21.5" - "@esbuild/linux-ia32" "0.21.5" - "@esbuild/linux-loong64" "0.21.5" - "@esbuild/linux-mips64el" "0.21.5" - "@esbuild/linux-ppc64" "0.21.5" - "@esbuild/linux-riscv64" "0.21.5" - "@esbuild/linux-s390x" "0.21.5" - "@esbuild/linux-x64" "0.21.5" - "@esbuild/netbsd-x64" "0.21.5" - "@esbuild/openbsd-x64" "0.21.5" - "@esbuild/sunos-x64" "0.21.5" - "@esbuild/win32-arm64" "0.21.5" - "@esbuild/win32-ia32" "0.21.5" - "@esbuild/win32-x64" "0.21.5" + "@esbuild/aix-ppc64" "0.20.2" + "@esbuild/android-arm" "0.20.2" + "@esbuild/android-arm64" "0.20.2" + "@esbuild/android-x64" "0.20.2" + "@esbuild/darwin-arm64" "0.20.2" + "@esbuild/darwin-x64" "0.20.2" + "@esbuild/freebsd-arm64" "0.20.2" + "@esbuild/freebsd-x64" "0.20.2" + "@esbuild/linux-arm" "0.20.2" + "@esbuild/linux-arm64" "0.20.2" + "@esbuild/linux-ia32" "0.20.2" + "@esbuild/linux-loong64" "0.20.2" + "@esbuild/linux-mips64el" "0.20.2" + "@esbuild/linux-ppc64" "0.20.2" + "@esbuild/linux-riscv64" "0.20.2" + "@esbuild/linux-s390x" "0.20.2" + "@esbuild/linux-x64" "0.20.2" + "@esbuild/netbsd-x64" "0.20.2" + "@esbuild/openbsd-x64" "0.20.2" + "@esbuild/sunos-x64" "0.20.2" + "@esbuild/win32-arm64" "0.20.2" + "@esbuild/win32-ia32" "0.20.2" + "@esbuild/win32-x64" "0.20.2" escalade@^3.1.1: version "3.1.1" @@ -8775,6 +8770,11 @@ mkdirp@^0.5.1: dependencies: minimist "^1.2.6" +moment@^2.29.4: + version "2.29.4" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" + integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== + moo@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4" @@ -9237,11 +9237,6 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picocolors@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== - picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -9279,14 +9274,14 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= -postcss@^8.4.43: - version "8.4.47" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== +postcss@^8.4.38: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" - source-map-js "^1.2.1" + picocolors "^1.0.0" + source-map-js "^1.2.0" prelude-ls@~1.1.2: version "1.1.2" @@ -9948,29 +9943,29 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^4.20.0: - version "4.22.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.2.tgz#d762fa52c6ddb1307c1d6e8b463ba79432ffbb6b" - integrity sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg== +rollup@^4.13.0: + version "4.17.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" + integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.22.2" - "@rollup/rollup-android-arm64" "4.22.2" - "@rollup/rollup-darwin-arm64" "4.22.2" - "@rollup/rollup-darwin-x64" "4.22.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.22.2" - "@rollup/rollup-linux-arm-musleabihf" "4.22.2" - "@rollup/rollup-linux-arm64-gnu" "4.22.2" - "@rollup/rollup-linux-arm64-musl" "4.22.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.22.2" - "@rollup/rollup-linux-riscv64-gnu" "4.22.2" - "@rollup/rollup-linux-s390x-gnu" "4.22.2" - "@rollup/rollup-linux-x64-gnu" "4.22.2" - "@rollup/rollup-linux-x64-musl" "4.22.2" - "@rollup/rollup-win32-arm64-msvc" "4.22.2" - "@rollup/rollup-win32-ia32-msvc" "4.22.2" - "@rollup/rollup-win32-x64-msvc" "4.22.2" + "@rollup/rollup-android-arm-eabi" "4.17.2" + "@rollup/rollup-android-arm64" "4.17.2" + "@rollup/rollup-darwin-arm64" "4.17.2" + "@rollup/rollup-darwin-x64" "4.17.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" + "@rollup/rollup-linux-arm-musleabihf" "4.17.2" + "@rollup/rollup-linux-arm64-gnu" "4.17.2" + "@rollup/rollup-linux-arm64-musl" "4.17.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" + "@rollup/rollup-linux-riscv64-gnu" "4.17.2" + "@rollup/rollup-linux-s390x-gnu" "4.17.2" + "@rollup/rollup-linux-x64-gnu" "4.17.2" + "@rollup/rollup-linux-x64-musl" "4.17.2" + "@rollup/rollup-win32-arm64-msvc" "4.17.2" + "@rollup/rollup-win32-ia32-msvc" "4.17.2" + "@rollup/rollup-win32-x64-msvc" "4.17.2" fsevents "~2.3.2" rst-selector-parser@^2.2.3: @@ -10222,10 +10217,10 @@ snapdragon@^0.8.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-js@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" - integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" @@ -10955,14 +10950,14 @@ vite-tsconfig-paths@^4.3.2: globrex "^0.1.2" tsconfck "^3.0.3" -vite@^5.4.6: - version "5.4.6" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" - integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== +vite@^5.2.11: + version "5.2.11" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd" + integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== dependencies: - esbuild "^0.21.3" - postcss "^8.4.43" - rollup "^4.20.0" + esbuild "^0.20.1" + postcss "^8.4.38" + rollup "^4.13.0" optionalDependencies: fsevents "~2.3.3" diff --git a/services/uploads/serverless.yml b/services/uploads/serverless.yml index f08d11186..074a35739 100644 --- a/services/uploads/serverless.yml +++ b/services/uploads/serverless.yml @@ -46,6 +46,7 @@ custom: serverlessTerminationProtection: stages: - main + - master - val - production scripts: diff --git a/tests/cypress/cypress.config.js b/tests/cypress/cypress.config.js index 9dbeabbe6..38cd69c4e 100644 --- a/tests/cypress/cypress.config.js +++ b/tests/cypress/cypress.config.js @@ -1,6 +1,8 @@ const { defineConfig } = require("cypress"); -const { lighthouse, prepareAudit } = require("@cypress-audit/lighthouse"); -const { pa11y } = require("@cypress-audit/pa11y"); +const preprocessor = require("@badeball/cypress-cucumber-preprocessor"); +const browserify = require("@badeball/cypress-cucumber-preprocessor/browserify"); +const { lighthouse } = require("@cypress-audit/lighthouse"); +const { pa11y, prepareAudit } = require("@cypress-audit/pa11y"); require("dotenv").config({ path: "../../.env" }); module.exports = defineConfig({ @@ -27,6 +29,8 @@ module.exports = defineConfig({ supportFile: "support/index.js", excludeSpecPattern: "**/filterReports.spec.js", async setupNodeEvents(on, config) { + await preprocessor.addCucumberPreprocessorPlugin(on, config); + on("file:preprocessor", browserify.default(config)); on("before:browser:launch", (_browser = {}, launchOptions) => { prepareAudit(launchOptions); }); diff --git a/tests/cypress/package.json b/tests/cypress/package.json index e23364778..b79ff30f3 100644 --- a/tests/cypress/package.json +++ b/tests/cypress/package.json @@ -25,5 +25,8 @@ "cypress-cucumber-preprocessor": { "nonGlobalStepDefinitions": true, "stepDefinitions": "tests" + }, + "dependencies": { + "cypress-tags": "^1.1.2" } } diff --git a/tests/cypress/tests/integration/submitAndUncertify.spec.js b/tests/cypress/tests/integration/submitAndUncertify.spec.js index 23f06347d..b21567c32 100644 --- a/tests/cypress/tests/integration/submitAndUncertify.spec.js +++ b/tests/cypress/tests/integration/submitAndUncertify.spec.js @@ -21,7 +21,6 @@ describe("CARTS Submit and Uncertify Integration Tests", () => { cy.get(certifySubmitButton).click(); cy.get("button").contains("Confirm Certify and Submit").click(); - cy.wait(3000); cy.get("button").contains("Return Home").click(); // log in as CMS Admin (user who can uncertify) diff --git a/tests/cypress/yarn.lock b/tests/cypress/yarn.lock index f6cd7a274..cdc47b667 100644 --- a/tests/cypress/yarn.lock +++ b/tests/cypress/yarn.lock @@ -2,7 +2,15 @@ # yarn lockfile v1 -"@babel/code-frame@^7.0.0": +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": version "7.22.13" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== @@ -10,11 +18,249 @@ "@babel/highlight" "^7.22.13" chalk "^2.4.2" -"@babel/helper-validator-identifier@^7.22.20": +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" + integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== + +"@babel/core@^7.16.0": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.20.tgz#e3d0eed84c049e2a2ae0a64d27b6a37edec385b7" + integrity sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.13" + "@babel/generator" "^7.22.15" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-module-transforms" "^7.22.20" + "@babel/helpers" "^7.22.15" + "@babel/parser" "^7.22.16" + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.22.20" + "@babel/types" "^7.22.19" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.15.tgz#1564189c7ec94cb8f77b5e8a90c4d200d21b2339" + integrity sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA== + dependencies: + "@babel/types" "^7.22.15" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/generator@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" + integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== + dependencies: + "@babel/types" "^7.23.0" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" + integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" + integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-validator-option" "^7.22.15" + browserslist "^4.21.9" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" + integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" + integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" + integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== + dependencies: + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-member-expression-to-functions@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.15.tgz#b95a144896f6d491ca7863576f820f3628818621" + integrity sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" + integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== + dependencies: + "@babel/types" "^7.22.15" + +"@babel/helper-module-transforms@^7.22.15", "@babel/helper-module-transforms@^7.22.20", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz#da9edc14794babbe7386df438f3768067132f59e" + integrity sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" + integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-wrap-function" "^7.22.20" + +"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" + integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-optimise-call-expression" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== +"@babel/helper-validator-option@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" + integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== + +"@babel/helper-wrap-function@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" + integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.15" + "@babel/types" "^7.22.19" + +"@babel/helpers@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.15.tgz#f09c3df31e86e3ea0b7ff7556d85cdebd47ea6f1" + integrity sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/traverse" "^7.22.15" + "@babel/types" "^7.22.15" + "@babel/highlight@^7.22.13": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" @@ -24,18 +270,785 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.18.8": +"@babel/parser@^7.18.8", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16": version "7.22.16" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95" integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA== -"@babel/runtime@^7.21.0": +"@babel/parser@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" + integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" + integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f" + integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.15" + +"@babel/plugin-proposal-class-properties@^7.16.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-object-rest-spread@^7.16.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" + integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-async-generator-functions@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" + integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" + integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== + dependencies: + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + +"@babel/plugin-transform-block-scoped-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" + integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-block-scoping@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.15.tgz#494eb82b87b5f8b1d8f6f28ea74078ec0a10a841" + integrity sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" + integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" + integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-split-export-declaration" "^7.22.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" + integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.5" + +"@babel/plugin-transform-destructuring@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.15.tgz#e7404ea5bb3387073b9754be654eecb578324694" + integrity sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dotall-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-duplicate-keys@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dynamic-import@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" + integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" + integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-export-namespace-from@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" + integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-for-of@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" + integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" + integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== + dependencies: + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-json-strings@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" + integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" + integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-logical-assignment-operators@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" + integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" + integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-amd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" + integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-commonjs@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.15.tgz#b11810117ed4ee7691b29bd29fd9f3f98276034f" + integrity sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg== + dependencies: + "@babel/helper-module-transforms" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + +"@babel/plugin-transform-modules-systemjs@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz#3386be5875d316493b517207e8f1931d93154bb1" + integrity sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + +"@babel/plugin-transform-modules-umd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-new-target@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" + integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" + integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" + integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.22.15" + +"@babel/plugin-transform-object-super@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" + integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + +"@babel/plugin-transform-optional-catch-binding@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" + integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.15.tgz#d7a5996c2f7ca4ad2ad16dbb74444e5c4385b1ba" + integrity sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" + integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-methods@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.22.11": + version "7.22.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" + integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.11" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" + integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-display-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" + integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-react-jsx-development@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" + integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== + dependencies: + "@babel/plugin-transform-react-jsx" "^7.22.5" + +"@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6" + integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-jsx" "^7.22.5" + "@babel/types" "^7.22.15" + +"@babel/plugin-transform-react-pure-annotations@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" + integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-regenerator@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" + integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-runtime@^7.16.0": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.15.tgz#3a625c4c05a39e932d7d34f5d4895cdd0172fdc9" + integrity sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g== + dependencies: + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.5" + babel-plugin-polyfill-corejs3 "^0.8.3" + babel-plugin-polyfill-regenerator "^0.5.2" + semver "^6.3.1" + +"@babel/plugin-transform-shorthand-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" + integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" + integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-sticky-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" + integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-template-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" + integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typeof-symbol@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-escapes@^7.22.10": + version "7.22.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" + integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-property-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" + integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-sets-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@^7.16.0": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" + integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== + dependencies: + "@babel/compat-data" "^7.22.20" + "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.15" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.15" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.22.5" + "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.22.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.15" + "@babel/plugin-transform-async-to-generator" "^7.22.5" + "@babel/plugin-transform-block-scoped-functions" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.15" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.11" + "@babel/plugin-transform-classes" "^7.22.15" + "@babel/plugin-transform-computed-properties" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.15" + "@babel/plugin-transform-dotall-regex" "^7.22.5" + "@babel/plugin-transform-duplicate-keys" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.11" + "@babel/plugin-transform-exponentiation-operator" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.11" + "@babel/plugin-transform-for-of" "^7.22.15" + "@babel/plugin-transform-function-name" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.11" + "@babel/plugin-transform-literals" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" + "@babel/plugin-transform-member-expression-literals" "^7.22.5" + "@babel/plugin-transform-modules-amd" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.15" + "@babel/plugin-transform-modules-systemjs" "^7.22.11" + "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" + "@babel/plugin-transform-numeric-separator" "^7.22.11" + "@babel/plugin-transform-object-rest-spread" "^7.22.15" + "@babel/plugin-transform-object-super" "^7.22.5" + "@babel/plugin-transform-optional-catch-binding" "^7.22.11" + "@babel/plugin-transform-optional-chaining" "^7.22.15" + "@babel/plugin-transform-parameters" "^7.22.15" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.11" + "@babel/plugin-transform-property-literals" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.10" + "@babel/plugin-transform-reserved-words" "^7.22.5" + "@babel/plugin-transform-shorthand-properties" "^7.22.5" + "@babel/plugin-transform-spread" "^7.22.5" + "@babel/plugin-transform-sticky-regex" "^7.22.5" + "@babel/plugin-transform-template-literals" "^7.22.5" + "@babel/plugin-transform-typeof-symbol" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.10" + "@babel/plugin-transform-unicode-property-regex" "^7.22.5" + "@babel/plugin-transform-unicode-regex" "^7.22.5" + "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/preset-modules" "0.1.6-no-external-plugins" + "@babel/types" "^7.22.19" + babel-plugin-polyfill-corejs2 "^0.4.5" + babel-plugin-polyfill-corejs3 "^0.8.3" + babel-plugin-polyfill-regenerator "^0.5.2" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-react@^7.16.0": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.15.tgz#9a776892b648e13cc8ca2edf5ed1264eea6b6afc" + integrity sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-transform-react-display-name" "^7.22.5" + "@babel/plugin-transform-react-jsx" "^7.22.15" + "@babel/plugin-transform-react-jsx-development" "^7.22.5" + "@babel/plugin-transform-react-pure-annotations" "^7.22.5" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.16.0", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.15.tgz#38f46494ccf6cf020bd4eed7124b425e83e523b8" integrity sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA== dependencies: regenerator-runtime "^0.14.0" +"@babel/template@^7.22.15", "@babel/template@^7.22.5": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" + integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/parser" "^7.22.15" + "@babel/types" "^7.22.15" + +"@babel/traverse@^7.22.15", "@babel/traverse@^7.22.20": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" + integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== + dependencies: + "@babel/code-frame" "^7.22.13" + "@babel/generator" "^7.23.0" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.23.0" + "@babel/types" "^7.23.0" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.4.4": + version "7.22.19" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684" + integrity sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.19" + to-fast-properties "^2.0.0" + +"@babel/types@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" + integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + "@badeball/cypress-configuration@^4.0.0": version "4.2.0" resolved "https://registry.yarnpkg.com/@badeball/cypress-configuration/-/cypress-configuration-4.2.0.tgz#4c19bada0e40600b572b4d91933e0bd226cb2e3f" @@ -134,6 +1147,30 @@ dependencies: pa11y "^6.2.3" +"@cypress/browserify-preprocessor@^3.0.1": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@cypress/browserify-preprocessor/-/browserify-preprocessor-3.0.2.tgz#1dbecae394937aed47a3524cad47086c2ded8c50" + integrity sha512-y6mlFR+IR2cqcm3HabSp7AEcX9QfF1EUL4eOaw/7xexdhmdQU8ez6piyRopZQob4BK8oKTsc9PkupsU2rzjqMA== + dependencies: + "@babel/core" "^7.16.0" + "@babel/plugin-proposal-class-properties" "^7.16.0" + "@babel/plugin-proposal-object-rest-spread" "^7.16.0" + "@babel/plugin-transform-runtime" "^7.16.0" + "@babel/preset-env" "^7.16.0" + "@babel/preset-react" "^7.16.0" + "@babel/runtime" "^7.16.0" + babel-plugin-add-module-exports "^1.0.4" + babelify "^10.0.0" + bluebird "^3.7.2" + browserify "^16.2.3" + coffeeify "^3.0.1" + coffeescript "^1.12.7" + debug "^4.3.2" + fs-extra "^9.0.0" + lodash.clonedeep "^4.5.0" + through2 "^2.0.0" + watchify "^4.0.0" + "@cypress/request@2.88.12": version "2.88.12" resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590" @@ -281,6 +1318,38 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.19" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" + integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + "@puppeteer/browsers@1.4.6": version "1.4.6" resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-1.4.6.tgz#1f70fd23d5d2ccce9d29b038e5039d7a1049ca77" @@ -392,6 +1461,33 @@ dependencies: "@types/node" "*" +JSONStream@^1.0.3: + version "1.3.5" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.8.2: + version "1.8.2" + resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" + integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== + dependencies: + acorn "^7.0.0" + acorn-walk "^7.0.0" + xtend "^4.0.2" + +acorn-walk@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + +acorn@^7.0.0: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + agent-base@6: version "6.0.2" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" @@ -445,11 +1541,29 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +anymatch@^3.1.0, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + arch@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== +asn1.js@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" + asn1@~0.2.3: version "0.2.6" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" @@ -462,6 +1576,14 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== +assert@^1.4.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.1.tgz#038ab248e4ff078e7bc2485ba6e6388466c78f76" + integrity sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A== + dependencies: + object.assign "^4.1.4" + util "^0.10.4" + ast-types@^0.13.4: version "0.13.4" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" @@ -489,6 +1611,11 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -519,12 +1646,46 @@ b4a@^1.6.4: resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw== +babel-plugin-add-module-exports@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz#6caa4ddbe1f578c6a5264d4d3e6c8a2720a7ca2b" + integrity sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg== + +babel-plugin-polyfill-corejs2@^0.4.5: + version "0.4.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" + integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.4.2" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52" + integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.2" + core-js-compat "^3.31.0" + +babel-plugin-polyfill-regenerator@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" + integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.2" + +babelify@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/babelify/-/babelify-10.0.0.tgz#fe73b1a22583f06680d8d072e25a1e0d1d1d7fb5" + integrity sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg== + balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.3.1, base64-js@^1.5.1: +base64-js@^1.0.2, base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -551,6 +1712,11 @@ bfj@~7.0.2: hoopy "^0.1.4" tryer "^1.0.1" +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + bl@^4.0.3: version "4.1.0" resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" @@ -570,6 +1736,21 @@ bluebird@^3.5.5, bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +boolean-parser@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/boolean-parser/-/boolean-parser-0.0.2.tgz#58721f1172e65fd132d6e6debbd00053deaffa12" + integrity sha512-e06Mqk6t7DOXaEo3s+RATvv7ZNt5brRQ2os4NUHVkVCzUD0Z7Gw4AL4AFA/gT3WaLhrobmGvRVh1/UuJiY3sKg== + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -585,11 +1766,231 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.0.1, brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-pack@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.1.0.tgz#c34ba10d0b9ce162b5af227c7131c92c2ecd5774" + integrity sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA== + dependencies: + JSONStream "^1.0.3" + combine-source-map "~0.8.0" + defined "^1.0.0" + safe-buffer "^5.1.1" + through2 "^2.0.0" + umd "^3.0.0" + +browser-resolve@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-2.0.0.tgz#99b7304cb392f8d73dba741bb2d7da28c6d7842b" + integrity sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ== + dependencies: + resolve "^1.17.0" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + dependencies: + bn.js "^5.0.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" + integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== + dependencies: + bn.js "^5.2.1" + browserify-rsa "^4.1.0" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.4" + inherits "^2.0.4" + parse-asn1 "^5.1.6" + readable-stream "^3.6.2" + safe-buffer "^5.2.1" + +browserify-zlib@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserify@^16.2.3: + version "16.5.2" + resolved "https://registry.yarnpkg.com/browserify/-/browserify-16.5.2.tgz#d926835e9280fa5fd57f5bc301f2ef24a972ddfe" + integrity sha512-TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g== + dependencies: + JSONStream "^1.0.3" + assert "^1.4.0" + browser-pack "^6.0.1" + browser-resolve "^2.0.0" + browserify-zlib "~0.2.0" + buffer "~5.2.1" + cached-path-relative "^1.0.0" + concat-stream "^1.6.0" + console-browserify "^1.1.0" + constants-browserify "~1.0.0" + crypto-browserify "^3.0.0" + defined "^1.0.0" + deps-sort "^2.0.0" + domain-browser "^1.2.0" + duplexer2 "~0.1.2" + events "^2.0.0" + glob "^7.1.0" + has "^1.0.0" + htmlescape "^1.1.0" + https-browserify "^1.0.0" + inherits "~2.0.1" + insert-module-globals "^7.0.0" + labeled-stream-splicer "^2.0.0" + mkdirp-classic "^0.5.2" + module-deps "^6.2.3" + os-browserify "~0.3.0" + parents "^1.0.1" + path-browserify "~0.0.0" + process "~0.11.0" + punycode "^1.3.2" + querystring-es3 "~0.2.0" + read-only-stream "^2.0.0" + readable-stream "^2.0.2" + resolve "^1.1.4" + shasum "^1.0.0" + shell-quote "^1.6.1" + stream-browserify "^2.0.0" + stream-http "^3.0.0" + string_decoder "^1.1.1" + subarg "^1.0.0" + syntax-error "^1.1.1" + through2 "^2.0.0" + timers-browserify "^1.0.1" + tty-browserify "0.0.1" + url "~0.11.0" + util "~0.10.1" + vm-browserify "^1.0.0" + xtend "^4.0.0" + +browserify@^17.0.0: + version "17.0.0" + resolved "https://registry.yarnpkg.com/browserify/-/browserify-17.0.0.tgz#4c48fed6c02bfa2b51fd3b670fddb805723cdc22" + integrity sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w== + dependencies: + JSONStream "^1.0.3" + assert "^1.4.0" + browser-pack "^6.0.1" + browser-resolve "^2.0.0" + browserify-zlib "~0.2.0" + buffer "~5.2.1" + cached-path-relative "^1.0.0" + concat-stream "^1.6.0" + console-browserify "^1.1.0" + constants-browserify "~1.0.0" + crypto-browserify "^3.0.0" + defined "^1.0.0" + deps-sort "^2.0.1" + domain-browser "^1.2.0" + duplexer2 "~0.1.2" + events "^3.0.0" + glob "^7.1.0" + has "^1.0.0" + htmlescape "^1.1.0" + https-browserify "^1.0.0" + inherits "~2.0.1" + insert-module-globals "^7.2.1" + labeled-stream-splicer "^2.0.0" + mkdirp-classic "^0.5.2" + module-deps "^6.2.3" + os-browserify "~0.3.0" + parents "^1.0.1" + path-browserify "^1.0.0" + process "~0.11.0" + punycode "^1.3.2" + querystring-es3 "~0.2.0" + read-only-stream "^2.0.0" + readable-stream "^2.0.2" + resolve "^1.1.4" + shasum-object "^1.0.0" + shell-quote "^1.6.1" + stream-browserify "^3.0.0" + stream-http "^3.0.0" + string_decoder "^1.1.1" + subarg "^1.0.0" + syntax-error "^1.1.1" + through2 "^2.0.0" + timers-browserify "^1.0.1" + tty-browserify "0.0.1" + url "~0.11.0" + util "~0.12.0" + vm-browserify "^1.0.0" + xtend "^4.0.0" + +browserslist@^4.21.10, browserslist@^4.21.9: + version "4.21.10" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" + integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== + dependencies: + caniuse-lite "^1.0.30001517" + electron-to-chromium "^1.4.477" + node-releases "^2.0.13" + update-browserslist-db "^1.0.11" + buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== + buffer@^5.2.1, buffer@^5.5.0, buffer@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" @@ -598,12 +1999,30 @@ buffer@^5.2.1, buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" +buffer@~5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" + integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== + +cached-path-relative@^1.0.0, cached-path-relative@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.1.0.tgz#865576dfef39c0d6a7defde794d078f5308e3ef3" + integrity sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA== + cachedir@^2.3.0: version "2.4.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.4.0.tgz#7fef9cf7367233d7c88068fe6e34ed0d355a610d" integrity sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ== -call-bind@^1.0.0: +call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== @@ -616,6 +2035,11 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +caniuse-lite@^1.0.30001517: + version "1.0.30001538" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz#9dbc6b9af1ff06b5eb12350c2012b3af56744f3f" + integrity sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw== + caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" @@ -648,6 +2072,21 @@ check-types@^11.1.1: resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71" integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg== +chokidar@^3.4.0: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -675,6 +2114,14 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + class-transformer@0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/class-transformer/-/class-transformer-0.5.1.tgz#24147d5dffd2a6cea930a3250a677addf96ab336" @@ -725,6 +2172,19 @@ cliui@^8.0.1: strip-ansi "^6.0.1" wrap-ansi "^7.0.0" +coffeeify@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/coffeeify/-/coffeeify-3.0.1.tgz#5e2753000c50bd24c693115f33864248dd11136c" + integrity sha512-Qjnr7UX6ldK1PHV7wCnv7AuCd4q19KTUtwJnu/6JRJB4rfm12zvcXtKdacUoePOKr1I4ka/ydKiwWpNAdsQb0g== + dependencies: + convert-source-map "^1.3.0" + through2 "^2.0.0" + +coffeescript@^1.12.7: + version "1.12.7" + resolved "https://registry.yarnpkg.com/coffeescript/-/coffeescript-1.12.7.tgz#e57ee4c4867cf7f606bfc4a0f2d550c0981ddd27" + integrity sha512-pLXHFxQMPklVoEekowk8b3erNynC+DVJzChxS/LCBBgR6/8AJkHivkm//zbowcfc7BTCAjryuhx6gPqPRfsFoA== + color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -759,6 +2219,16 @@ colors@1.0.3: resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" integrity sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== +combine-source-map@^0.8.0, combine-source-map@~0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" + integrity sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg== + dependencies: + convert-source-map "~1.1.0" + inline-source-map "~0.6.0" + lodash.memoize "~3.0.3" + source-map "~0.5.3" + combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -791,6 +2261,16 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== +concat-stream@^1.6.0, concat-stream@^1.6.1, concat-stream@~1.6.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + concurrently@^7.6.0: version "7.6.0" resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.6.0.tgz#531a6f5f30cf616f355a4afb8f8fcb2bba65a49a" @@ -818,16 +2298,48 @@ configstore@^5.0.1: write-file-atomic "^3.0.0" xdg-basedir "^4.0.0" +console-browserify@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== + +constants-browserify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== + +convert-source-map@^1.3.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@~1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" + integrity sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg== + cookie@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== +core-js-compat@^3.31.0: + version "3.32.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c" + integrity sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ== + dependencies: + browserslist "^4.21.10" + core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + cosmiconfig@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" @@ -839,6 +2351,37 @@ cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" +create-ecdh@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + dependencies: + bn.js "^4.1.0" + elliptic "^6.5.3" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + cross-fetch@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-4.0.0.tgz#f037aef1580bb3a1a35164ea2a848ba81b445983" @@ -855,6 +2398,23 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" +crypto-browserify@^3.0.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" @@ -875,6 +2435,15 @@ cypress-file-upload@^5.0.8: resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1" integrity sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g== +cypress-tags@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/cypress-tags/-/cypress-tags-1.1.2.tgz#f0aeb29685b0906bba2eca69e7349943cbbd1eba" + integrity sha512-5aCGrhmDRQuXfRHJRFy66gBmMvBpsY1+ez5JD/cyjCYjvOVlJ7ED+kovUEdi+9pyDsbFJkQl0HjS6N3ERyb7Ig== + dependencies: + "@cypress/browserify-preprocessor" "^3.0.1" + boolean-parser "0.0.2" + through "^2.3.8" + cypress@^12.15.1: version "12.17.4" resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.17.4.tgz#b4dadf41673058493fa0d2362faa3da1f6ae2e6c" @@ -924,6 +2493,11 @@ cypress@^12.15.1: untildify "^4.0.0" yauzl "^2.10.0" +dash-ast@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dash-ast/-/dash-ast-1.0.0.tgz#12029ba5fb2f8aa6f0a861795b23c1b4b6c27d37" + integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== + dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" @@ -969,11 +2543,34 @@ debug@^3.1.0: dependencies: ms "^2.1.1" +define-data-property@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.0.tgz#0db13540704e1d8d479a0656cf781267531b9451" + integrity sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g== + dependencies: + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + define-lazy-prop@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== +define-properties@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +defined@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" + integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== + degenerator@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-5.0.1.tgz#9403bf297c6dad9a1ece409b37db27954f91f2f5" @@ -988,6 +2585,33 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== +deps-sort@^2.0.0, deps-sort@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.1.tgz#9dfdc876d2bcec3386b6829ac52162cda9fa208d" + integrity sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw== + dependencies: + JSONStream "^1.0.3" + shasum-object "^1.0.0" + subarg "^1.0.0" + through2 "^2.0.0" + +des.js@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" + integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +detective@^5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" + integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== + dependencies: + acorn-node "^1.8.2" + defined "^1.0.0" + minimist "^1.2.6" + devtools-protocol@0.0.1147663: version "0.0.1147663" resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz#4ec5610b39a6250d1f87e6b9c7e16688ed0ac78e" @@ -1003,6 +2627,20 @@ devtools-protocol@0.0.869402: resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.869402.tgz#03ade701761742e43ae4de5dc188bcd80f156d8d" integrity sha512-VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA== +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +domain-browser@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + dot-prop@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" @@ -1015,6 +2653,13 @@ dotenv@^16.4.5: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== +duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" + integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== + dependencies: + readable-stream "^2.0.2" + ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -1023,6 +2668,24 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" +electron-to-chromium@^1.4.477: + version "1.4.526" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.526.tgz#1bcda5f2b8238e497c20fcdb41af5da907a770e2" + integrity sha512-tjjTMjmZAx1g6COrintLTa2/jcafYKxKoiEkdQOrVdbLaHh2wCt2nsAF8ZHweezkrP+dl/VG9T5nabcYoo0U5Q== + +elliptic@^6.5.3, elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -1263,6 +2926,24 @@ eventemitter2@6.4.7: resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== +events@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/events/-/events-2.1.0.tgz#2a9a1e18e6106e0e812aa9ebd4a819b3c29c0ba5" + integrity sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg== + +events@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -1316,6 +2997,11 @@ fast-fifo@^1.1.0, fast-fifo@^1.2.0: resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== +fast-safe-stringify@^2.0.7: + version "2.1.1" + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" + integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== + fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -1330,6 +3016,13 @@ figures@^3.2.0: dependencies: escape-string-regexp "^1.0.5" +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + find-up@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" @@ -1338,6 +3031,13 @@ find-up@^4.0.0: locate-path "^5.0.0" path-exists "^4.0.0" +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -1366,7 +3066,7 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.1.0: +fs-extra@^9.0.0, fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -1381,17 +3081,32 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== +fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-assigned-identifiers@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" + integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== + get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2: +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== @@ -1432,7 +3147,14 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -glob@^7.1.3, glob@^7.1.6: +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob@^7.1.0, glob@^7.1.3, glob@^7.1.6: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -1461,6 +3183,18 @@ global-dirs@^3.0.0: dependencies: ini "2.0.0" +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -1476,23 +3210,63 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== -has-symbols@^1.0.3: +has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has@^1.0.3: +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.0, has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + hoopy@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" @@ -1503,6 +3277,11 @@ html_codesniffer@~2.5.1: resolved "https://registry.yarnpkg.com/html_codesniffer/-/html_codesniffer-2.5.1.tgz#d76d124b8f5cd0e58b3c1b142fd095a40573ea28" integrity sha512-vcz0yAaX/OaV6sdNHuT9alBOKkSxYb8h5Yq26dUqgi7XmCgGUSa7U9PiY1PBXQFMjKv1wVPs5/QzHlGuxPDUGg== +htmlescape@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" + integrity sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg== + http-link-header@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/http-link-header/-/http-link-header-1.1.1.tgz#f0e6971b0ed86e858d2077066ecb7ba4f2e50de9" @@ -1525,6 +3304,11 @@ http-signature@~1.3.6: jsprim "^2.0.2" sshpk "^1.14.1" +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== + https-proxy-agent@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" @@ -1546,7 +3330,7 @@ human-signals@^1.1.1: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== -ieee754@^1.1.13: +ieee754@^1.1.13, ieee754@^1.1.4: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== @@ -1582,16 +3366,44 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + ini@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== +inline-source-map@~0.6.0: + version "0.6.2" + resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" + integrity sha512-0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA== + dependencies: + source-map "~0.5.3" + +insert-module-globals@^7.0.0, insert-module-globals@^7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.2.1.tgz#d5e33185181a4e1f33b15f7bf100ee91890d5cb3" + integrity sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg== + dependencies: + JSONStream "^1.0.3" + acorn-node "^1.5.2" + combine-source-map "^0.8.0" + concat-stream "^1.6.1" + is-buffer "^1.1.0" + path-is-absolute "^1.0.1" + process "~0.11.0" + through2 "^2.0.0" + undeclared-identifiers "^1.1.2" + xtend "^4.0.0" + intl-messageformat-parser@^1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz#0eb14c5618333be4c95c409457b66c8c33ddcc01" @@ -1614,11 +3426,36 @@ ip@^2.0.0: resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105" integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ== +is-arguments@^1.0.4: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@^1.1.0: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.3: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + is-ci@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" @@ -1626,16 +3463,42 @@ is-ci@^3.0.0: dependencies: ci-info "^3.2.0" +is-core-module@^2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== + dependencies: + has "^1.0.3" + is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== +is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + is-installed-globally@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" @@ -1644,6 +3507,11 @@ is-installed-globally@~0.4.0: global-dirs "^3.0.0" is-path-inside "^3.0.2" +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + is-obj@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" @@ -1659,6 +3527,13 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== +is-typed-array@^1.1.3: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" @@ -1681,6 +3556,11 @@ is@^3.2.1: resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -1711,6 +3591,16 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + json-parse-even-better-errors@^2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" @@ -1721,11 +3611,23 @@ json-schema@0.4.0: resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== +json-stable-stringify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" + integrity sha512-nKtD/Qxm7tWdZqJoldEC7fF0S41v0mWbeaXG3637stOWfyGxTgWTYE2wtfKmjzpvxv2MA2xzxsXOIiwUpkX6Qw== + dependencies: + jsonify "~0.0.0" + json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -1742,6 +3644,16 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsonify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + jsprim@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d" @@ -1757,6 +3669,14 @@ kleur@~4.1.4: resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== +labeled-stream-splicer@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz#42a41a16abcd46fd046306cf4f2c3576fffb1c21" + integrity sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw== + dependencies: + inherits "^2.0.1" + stream-splicer "^2.0.0" + lazy-ass@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" @@ -1834,6 +3754,21 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.memoize@~3.0.3: + version "3.0.4" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" + integrity sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A== + lodash.once@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" @@ -1867,6 +3802,13 @@ lookup-closest-locale@6.2.0: resolved "https://registry.yarnpkg.com/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz#57f665e604fd26f77142d48152015402b607bcf3" integrity sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ== +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -1901,6 +3843,15 @@ marky@^1.2.2: resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -1911,6 +3862,14 @@ metaviewport-parser@0.3.0: resolved "https://registry.yarnpkg.com/metaviewport-parser/-/metaviewport-parser-0.3.0.tgz#6af1e99b5eaf250c049e0af1e84143a39750dea6" integrity sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ== +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" @@ -1928,6 +3887,16 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -1942,7 +3911,7 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.8: +minimist@^1.1.0, minimist@^1.2.6, minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -1972,6 +3941,27 @@ module-alias@^2.2.2: resolved "https://registry.yarnpkg.com/module-alias/-/module-alias-2.2.3.tgz#ec2e85c68973bda6ab71ce7c93b763ec96053221" integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q== +module-deps@^6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-6.2.3.tgz#15490bc02af4b56cf62299c7c17cba32d71a96ee" + integrity sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA== + dependencies: + JSONStream "^1.0.3" + browser-resolve "^2.0.0" + cached-path-relative "^1.0.2" + concat-stream "~1.6.0" + defined "^1.0.0" + detective "^5.2.0" + duplexer2 "^0.1.2" + inherits "^2.0.1" + parents "^1.0.0" + readable-stream "^2.0.2" + resolve "^1.4.0" + stream-combiner2 "^1.1.1" + subarg "^1.0.0" + through2 "^2.0.0" + xtend "^4.0.0" + ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -2009,6 +3999,11 @@ node-hook@^1.0.0: resolved "https://registry.yarnpkg.com/node-hook/-/node-hook-1.0.0.tgz#82ca39af991d726d5c7952e59c992378bb296f7e" integrity sha512-tBTIHwkzXvbesP0fY495VsqSWCOS5Ttt5+mAmeqUC1yglCiSYarNewfi2Q+HOL+M6pZYYqwGU6jIi5+gIHQbpg== +node-releases@^2.0.13: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + node.extend@~2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-2.0.2.tgz#b4404525494acc99740f3703c496b7d5182cc6cc" @@ -2017,6 +4012,11 @@ node.extend@~2.0.2: has "^1.0.3" is "^3.2.1" +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + npm-run-path@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" @@ -2029,6 +4029,21 @@ object-inspect@^1.9.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -2052,11 +4067,23 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" +os-browserify@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== + ospath@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== +outpipe@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/outpipe/-/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" + integrity sha512-BnNY/RwnDrkmQdUa9U+OfN/Y7AWmKuUPCCd+hbRclZnnANvYpO72zp/a6Q4n829hPbdqEac31XCcsvlEvb+rtA== + dependencies: + shell-quote "^1.4.2" + p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -2128,6 +4155,11 @@ pac-resolver@^7.0.0: ip "^1.1.8" netmask "^2.0.2" +pako@~1.0.5: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -2135,6 +4167,24 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parents@^1.0.0, parents@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" + integrity sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg== + dependencies: + path-platform "~0.11.15" + +parse-asn1@^5.0.0, parse-asn1@^5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" + integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== + dependencies: + asn1.js "^5.2.0" + browserify-aes "^1.0.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + parse-cache-control@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz#8eeab3e54fa56920fe16ba38f77fa21aacc2d74e" @@ -2150,12 +4200,22 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +path-browserify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +path-browserify@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== -path-is-absolute@^1.0.0: +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== @@ -2165,6 +4225,16 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-platform@~0.11.15: + version "0.11.15" + resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" + integrity sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg== + path-scurry@^1.6.1: version "1.10.1" resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" @@ -2178,6 +4248,17 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +pbkdf2@^3.0.3: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -2188,6 +4269,16 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + pify@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -2205,7 +4296,12 @@ pretty-bytes@^5.6.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -process@^0.11.10: +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.10, process@~0.11.0: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== @@ -2249,6 +4345,18 @@ psl@^1.1.33: resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" @@ -2257,6 +4365,11 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" +punycode@^1.3.2, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + punycode@^2.1.1: version "2.3.0" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" @@ -2292,6 +4405,13 @@ puppeteer@~9.1.1: unbzip2-stream "^1.3.3" ws "^7.2.3" +qs@^6.11.2: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" + qs@~6.10.3: version "6.10.5" resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" @@ -2299,6 +4419,11 @@ qs@~6.10.3: dependencies: side-channel "^1.0.4" +querystring-es3@~0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== + querystringify@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" @@ -2309,7 +4434,29 @@ queue-tick@^1.0.1: resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== -readable-stream@^3.1.1, readable-stream@^3.4.0: +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +read-only-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" + integrity sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w== + dependencies: + readable-stream "^2.0.2" + +readable-stream@3, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0, readable-stream@^3.6.2: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -2318,16 +4465,55 @@ readable-stream@^3.1.1, readable-stream@^3.4.0: string_decoder "^1.1.1" util-deprecate "^1.0.1" +readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + reflect-metadata@0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== +regenerate-unicode-properties@^10.1.0: + version "10.1.1" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + regenerator-runtime@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + regexp-match-indices@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regexp-match-indices/-/regexp-match-indices-1.0.2.tgz#cf20054a6f7d5b3e116a701a7b00f82889d10da6" @@ -2340,6 +4526,25 @@ regexp-tree@^0.1.11: resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd" integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + request-progress@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" @@ -2374,6 +4579,15 @@ resolve-pkg@^2.0.0: dependencies: resolve-from "^5.0.0" +resolve@^1.1.4, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.4.0: + version "1.22.6" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" + integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -2394,6 +4608,14 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + robots-parser@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/robots-parser/-/robots-parser-3.0.1.tgz#3d8a3cdfa8ac240cbb062a4bd16fcc0e0fb9ed23" @@ -2406,11 +4628,16 @@ rxjs@^7.0.0, rxjs@^7.5.1: dependencies: tslib "^2.1.0" -safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -2421,7 +4648,7 @@ semver@^5.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^6.0.0: +semver@^6.0.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -2440,6 +4667,29 @@ semver@~7.3.5: dependencies: lru-cache "^6.0.0" +sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shasum-object@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shasum-object/-/shasum-object-1.0.0.tgz#0b7b74ff5b66ecf9035475522fa05090ac47e29e" + integrity sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg== + dependencies: + fast-safe-stringify "^2.0.7" + +shasum@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" + integrity sha512-UTzHm/+AzKfO9RgPgRpDIuMSNie1ubXRaljjlhFMNGYoG7z+rm9AHLPMf70R7887xboDH9Q+5YQbWKObFHEAtw== + dependencies: + json-stable-stringify "~0.0.0" + sha.js "~2.4.4" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -2452,7 +4702,7 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shell-quote@^1.7.3: +shell-quote@^1.4.2, shell-quote@^1.6.1, shell-quote@^1.7.3: version "1.8.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== @@ -2471,6 +4721,11 @@ signal-exit@^3.0.2: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -2516,6 +4771,11 @@ source-map@^0.7.4: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== +source-map@~0.5.3: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" @@ -2555,6 +4815,48 @@ stackframe@^1.3.4: resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== +stream-browserify@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-browserify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" + integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== + dependencies: + inherits "~2.0.4" + readable-stream "^3.5.0" + +stream-combiner2@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" + integrity sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw== + dependencies: + duplexer2 "~0.1.0" + readable-stream "^2.0.2" + +stream-http@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5" + integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.4" + readable-stream "^3.6.0" + xtend "^4.0.2" + +stream-splicer@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.1.tgz#0b13b7ee2b5ac7e0609a7463d83899589a363fcd" + integrity sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg== + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.2" + streamx@^2.15.0: version "2.15.1" resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.15.1.tgz#396ad286d8bc3eeef8f5cea3f029e81237c024c6" @@ -2579,6 +4881,13 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -2591,6 +4900,13 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== +subarg@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" + integrity sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg== + dependencies: + minimist "^1.1.0" + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -2612,6 +4928,18 @@ supports-color@^8.1.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +syntax-error@^1.1.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" + integrity sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w== + dependencies: + acorn-node "^1.2.0" + tar-fs@3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.4.tgz#a21dc60a2d5d9f55e0089ccd78124f1d3771dbbf" @@ -2661,11 +4989,33 @@ throttleit@^1.0.0: resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== -through@^2.3.8: +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through2@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" + integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== + dependencies: + readable-stream "3" + +"through@>=2.2.7 <3", through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== +timers-browserify@^1.0.1: + version "1.4.2" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" + integrity sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q== + dependencies: + process "~0.11.0" + tmp@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -2673,6 +5023,18 @@ tmp@~0.2.1: dependencies: rimraf "^3.0.0" +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + tough-cookie@^4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" @@ -2708,6 +5070,11 @@ tslib@^2.0.1, tslib@^2.1.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== +tty-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" + integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== + tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -2732,6 +5099,16 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + +umd@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.3.tgz#aa9fe653c42b9097678489c01000acb69f0b26cf" + integrity sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow== + unbzip2-stream@1.4.3, unbzip2-stream@^1.3.3: version "1.4.3" resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" @@ -2740,6 +5117,40 @@ unbzip2-stream@1.4.3, unbzip2-stream@^1.3.3: buffer "^5.2.1" through "^2.3.8" +undeclared-identifiers@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz#9254c1d37bdac0ac2b52de4b6722792d2a91e30f" + integrity sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw== + dependencies: + acorn-node "^1.3.0" + dash-ast "^1.0.0" + get-assigned-identifiers "^1.2.0" + simple-concat "^1.0.0" + xtend "^4.0.1" + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + unique-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" @@ -2767,6 +5178,14 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== +update-browserslist-db@^1.0.11: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + url-parse@^1.5.3: version "1.5.10" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" @@ -2775,11 +5194,37 @@ url-parse@^1.5.3: querystringify "^2.1.1" requires-port "^1.0.0" -util-deprecate@^1.0.1: +url@~0.11.0: + version "0.11.3" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad" + integrity sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw== + dependencies: + punycode "^1.4.1" + qs "^6.11.2" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== +util@^0.10.4, util@~0.10.1: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + +util@~0.12.0: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + uuid@9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" @@ -2799,6 +5244,24 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +vm-browserify@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + +watchify@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/watchify/-/watchify-4.0.0.tgz#53b002d51e7b0eb640b851bb4de517a689973392" + integrity sha512-2Z04dxwoOeNxa11qzWumBTgSAohTC0+ScuY7XMenPnH+W2lhTcpEOJP4g2EIG/SWeLadPk47x++Yh+8BqPM/lA== + dependencies: + anymatch "^3.1.0" + browserify "^17.0.0" + chokidar "^3.4.0" + defined "^1.0.0" + outpipe "^1.1.0" + through2 "^4.0.2" + xtend "^4.0.2" + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -2812,6 +5275,17 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" +which-typed-array@^1.1.11, which-typed-array@^1.1.2: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -2867,11 +5341,21 @@ xdg-basedir@^4.0.0: resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== +xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" diff --git a/yarn.lock b/yarn.lock index d1296e2f0..db382a571 100644 --- a/yarn.lock +++ b/yarn.lock @@ -47,15 +47,6 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" -"@aws-crypto/crc32@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1" - integrity sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg== - dependencies: - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" - "@aws-crypto/crc32c@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f" @@ -65,15 +56,6 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" -"@aws-crypto/crc32c@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz#4e34aab7f419307821509a98b9b08e84e0c1917e" - integrity sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag== - dependencies: - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" - "@aws-crypto/ie11-detection@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" @@ -94,18 +76,6 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-crypto/sha1-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz#b0ee2d2821d3861f017e965ef3b4cb38e3b6a0f4" - integrity sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg== - dependencies: - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - "@aws-crypto/sha256-browser@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" @@ -120,19 +90,6 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-crypto/sha256-browser@5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" - integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== - dependencies: - "@aws-crypto/sha256-js" "^5.2.0" - "@aws-crypto/supports-web-crypto" "^5.2.0" - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-locate-window" "^3.0.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - "@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" @@ -142,15 +99,6 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" -"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" - integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== - dependencies: - "@aws-crypto/util" "^5.2.0" - "@aws-sdk/types" "^3.222.0" - tslib "^2.6.2" - "@aws-crypto/supports-web-crypto@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" @@ -158,13 +106,6 @@ dependencies: tslib "^1.11.1" -"@aws-crypto/supports-web-crypto@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" - integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== - dependencies: - tslib "^2.6.2" - "@aws-crypto/util@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" @@ -174,64 +115,6 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-crypto/util@^5.2.0": - version "5.2.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" - integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== - dependencies: - "@aws-sdk/types" "^3.222.0" - "@smithy/util-utf8" "^2.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-api-gateway@^3.588.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-api-gateway/-/client-api-gateway-3.624.0.tgz#3d65ddb227b4c8b1a432ed297f1a1be2186ef969" - integrity sha512-9DeJihU48KVVYlymg9/pfgiLNQ4Kiss5Ei2Ph9SUxZwGBw7uKZwHnE8dfBoGGq1KwDo+hEtQSd+/i/K6p/GwYQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/client-sts" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-sdk-api-gateway" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-stream" "^3.1.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/client-cloudformation@^3.128.0": version "3.576.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudformation/-/client-cloudformation-3.576.0.tgz#aac4b796d5998d722cded31a755731b4aec636a4" @@ -378,149 +261,6 @@ tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-cognito-identity-provider@^3.588.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.624.0.tgz#2113f44296454ec1f10f3fcea6fe43a596a7828d" - integrity sha512-AKzSCARzVUqclaXxxRE7UXZAhF+HoJGbAdYvQxj9LJdejuBRCo49LUqmiCTr7pUEPDK/RkDtv3+JLhxqN4z8YA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/client-sts" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-eventbridge@^3.588.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-eventbridge/-/client-eventbridge-3.624.0.tgz#aadd03846b7881e49da6b7c105c8f002669948e8" - integrity sha512-02HxeImNQv+yA+36Y+gn5ZM2v3JhG9gbbtXokv1YoByh9Ot9WG5Xm5Fsj9i6Dno34LneA2HCQqdMws67woXxVg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/client-sts" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/signature-v4-multi-region" "3.624.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-iam@^3.588.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.624.0.tgz#89c57b70a15c44a007483088d7f6f20844800cb8" - integrity sha512-a3Qy7AIht2nHiZPJ/HiMdyiOLiDN+iKp1R916SEbgFi9MiOyRHFeLCCPQHMf1O8YXfb0hbHr5IFnfZLfUcJaWQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/client-sts" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" - tslib "^2.6.2" - "@aws-sdk/client-lambda@^3.509.0": version "3.569.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.569.0.tgz#b95b6c5186c87ce53b3de2607faebdad1031eddc" @@ -573,58 +313,6 @@ "@smithy/util-waiter" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/client-lambda@^3.588.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.624.0.tgz#9d674bc061ba9ca5057426ae6940f5fbb1f73c6b" - integrity sha512-bfhFeg6LoC6AFM68+Gyogq9UpyW83Jwkwobo9CtxSTfaNIOYdKgTOdYtn4pM/bRYrWon4CstJQymIsPbY7ra5Q== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/client-sts" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/eventstream-serde-browser" "^3.0.5" - "@smithy/eventstream-serde-config-resolver" "^3.0.3" - "@smithy/eventstream-serde-node" "^3.0.4" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-stream" "^3.1.3" - "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" - tslib "^2.6.2" - "@aws-sdk/client-s3@^3.128.0": version "3.576.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.576.0.tgz#0e2f8f8fdbf1548ed2bd7d782f8fdf2e90131de1" @@ -753,70 +441,6 @@ "@smithy/util-waiter" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/client-s3@^3.588.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.624.0.tgz#4114c3cb4bf820e0aa480d3783c3cd2ae2575737" - integrity sha512-A18tgTKC4ZTAwV8i3pkyAL1XDLgH7WGS5hZA/0FOntI5l+icztGZFF8CdeYWEAFnZA7SfHK6vmtEbIQDOzTTAA== - dependencies: - "@aws-crypto/sha1-browser" "5.2.0" - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/client-sts" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-bucket-endpoint" "3.620.0" - "@aws-sdk/middleware-expect-continue" "3.620.0" - "@aws-sdk/middleware-flexible-checksums" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-location-constraint" "3.609.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-sdk-s3" "3.624.0" - "@aws-sdk/middleware-ssec" "3.609.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/signature-v4-multi-region" "3.624.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@aws-sdk/xml-builder" "3.609.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/eventstream-serde-browser" "^3.0.5" - "@smithy/eventstream-serde-config-resolver" "^3.0.3" - "@smithy/eventstream-serde-node" "^3.0.4" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-blob-browser" "^3.1.2" - "@smithy/hash-node" "^3.0.3" - "@smithy/hash-stream-node" "^3.1.2" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/md5-js" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-stream" "^3.1.3" - "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" - tslib "^2.6.2" - "@aws-sdk/client-sso-oidc@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.554.0.tgz#c4002879c89cf5e4a45f39c63b2963f8fab88385" @@ -1000,51 +624,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.624.0.tgz#33d0927519de333387ee07cb7f6483b0bd4db2f2" - integrity sha512-Ki2uKYJKKtfHxxZsiMTOvJoVRP6b2pZ1u3rcUb2m/nVgBPUfLdl8ZkGpqE29I+t5/QaS/sEdbn6cgMUZwl+3Dg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/client-sso@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.554.0.tgz#fef7b7ee47cad3987b50e9218ec1d11dcd42e32b" @@ -1221,50 +800,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.624.0.tgz#5d6bd308c1a6bb876c0bffc369c31a4916271219" - integrity sha512-EX6EF+rJzMPC5dcdsu40xSi2To7GSvdGQNIpe97pD9WvZwM9tRNQnNM4T6HA4gjV1L6Jwk8rBlG/CnveXtLEMw== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/client-sts@3.554.0", "@aws-sdk/client-sts@^3.410.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.554.0.tgz#511f1bafe628613f1824274f9c11a9df31ac0b09" @@ -1447,52 +982,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.624.0.tgz#ee19e08835a04d173f4997285e26558ac431d938" - integrity sha512-k36fLZCb2nfoV/DKK3jbRgO/Yf7/R80pgYfMiotkGjnZwDmRvNN08z4l06L9C+CieazzkgRxNUzyppsYcYsQaw== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.624.0" - "@aws-sdk/core" "3.624.0" - "@aws-sdk/credential-provider-node" "3.624.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.2" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.14" - "@smithy/util-defaults-mode-node" "^3.0.14" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/core@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.554.0.tgz#84def70777ace823efb54451da403bfc125a8571" @@ -1545,21 +1034,6 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" -"@aws-sdk/core@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.624.0.tgz#ff0d7745bd662f53d99dbb7293416a45ddde5aa6" - integrity sha512-WyFmPbhRIvtWi7hBp8uSFy+iPpj8ccNV/eX86hwF4irMjfc/FtsGVIAeBXxXM/vGCjkdfEzOnl+tJ2XACD4OXg== - dependencies: - "@smithy/core" "^2.3.2" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - fast-xml-parser "4.4.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-env@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.535.0.tgz#26248e263a8107953d5496cb3760d4e7c877abcf" @@ -1590,16 +1064,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/credential-provider-http@3.552.0": version "3.552.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.552.0.tgz#ecc88d02cba95621887e6b85b2583e756ad29eb6" @@ -1645,21 +1109,6 @@ "@smithy/util-stream" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.622.0": - version "3.622.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.622.0.tgz#db481fdef859849d07dd5870894f45df2debab3d" - integrity sha512-VUHbr24Oll1RK3WR8XLUugLpgK9ZuxEm/NVeVqyFts1Ck9gsKpRg1x4eH7L7tW3SJ4TDEQNMbD7/7J+eoL2svg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" - tslib "^2.6.2" - "@aws-sdk/credential-provider-imds@^3.81.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.374.0.tgz#19f1d6625b2b91114f3d5c2a479b86a4114620a6" @@ -1733,23 +1182,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.624.0.tgz#af4b485e9ceeca97e1681b2402c50dc192c1dc06" - integrity sha512-mMoNIy7MO2WTBbdqMyLpbt6SZpthE6e0GkRYpsd0yozPt0RZopcBhEh+HG1U9Y1PVODo+jcMk353vAi61CfnhQ== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.622.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.624.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/credential-provider-node@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.554.0.tgz#74e8ae0b69cfba716e57881ace9d6466deedfb5e" @@ -1822,24 +1254,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.624.0.tgz#d7ebe191194eb09764b313c1f4e259cb42795079" - integrity sha512-vYyGK7oNpd81BdbH5IlmQ6zfaQqU+rPwsKTDDBeLRjshtrGXOEpfoahVpG9PX0ibu32IOWp4ZyXBNyVrnvcMOw== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.622.0" - "@aws-sdk/credential-provider-ini" "3.624.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.624.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/credential-provider-process@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.535.0.tgz#ea1e8a38a32e36bbdc3f75eb03352e6eafa0c659" @@ -1884,17 +1298,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/credential-provider-sso@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.554.0.tgz#83e950685aaadb18d48d51c39f6201d820a5de41" @@ -1947,19 +1350,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.624.0.tgz#4a617577d04b23f80e86e1f76cc15dc3e9895c21" - integrity sha512-A02bayIjU9APEPKr3HudrFHEx0WfghoSPsPopckDkW7VBqO4wizzcxr75Q9A3vNX+cwg0wCN6UitTNe6pVlRaQ== - dependencies: - "@aws-sdk/client-sso" "3.624.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/credential-provider-web-identity@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.554.0.tgz#6076a32066b633a18fc90cae7ed0b874db78a556" @@ -1991,16 +1381,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-bucket-endpoint@3.568.0": version "3.568.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.568.0.tgz#790c0943cc097d3a83665131bc9e0743598cc6ca" @@ -2027,19 +1407,6 @@ "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-bucket-endpoint@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" - integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-config-provider" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/middleware-expect-continue@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.572.0.tgz#91df3b88a0a109450db84577609ed19520dfff38" @@ -2060,16 +1427,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-expect-continue@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" - integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-flexible-checksums@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.572.0.tgz#639ee54f838a5382a69f07351cd783488b6ad89b" @@ -2098,20 +1455,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-flexible-checksums@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" - integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== - dependencies: - "@aws-crypto/crc32" "5.2.0" - "@aws-crypto/crc32c" "5.2.0" - "@aws-sdk/types" "3.609.0" - "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/middleware-host-header@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.535.0.tgz#d5264f813592f5e77df25e5a14bbb0e6441812db" @@ -2142,16 +1485,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-location-constraint@3.567.0": version "3.567.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.567.0.tgz#c469e745a3fa146dd29d0024a9f4d2a498985822" @@ -2170,15 +1503,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-location-constraint@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" - integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-logger@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.535.0.tgz#1a8ffd6c368edd6cb32e1edf7b1dced95c1820ee" @@ -2206,15 +1530,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-recursion-detection@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.535.0.tgz#6aa1e1bd1e84730d58a73021b745e20d4341a92d" @@ -2245,26 +1560,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-sdk-api-gateway@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-api-gateway/-/middleware-sdk-api-gateway-3.620.0.tgz#479e839455bcfa22952a1080d5598061a1f1f0e3" - integrity sha512-JH8JzZb5CTry5Xit51jwyES8cqihaUWJVS3pcr5L73g8qLDUnvfg2IJJJ7pXs0hVAaCNjDs4L97DW3ity76CUA== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-sdk-s3@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.572.0.tgz#62534ecbfc55d91fcb768b97bb14f73577c3b00e" @@ -2295,26 +1590,6 @@ "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-sdk-s3@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.624.0.tgz#770cbc3f91b99ed70de6f7b9552917de99ee7e78" - integrity sha512-HUiaZ6+JXcG0qQda10ZxDGJvbT71YUp1zX+oikIsfTUeq0N75O82OY3Noqd7cyjEVtsGSo/y0e6U3aV1hO+wPw== - dependencies: - "@aws-sdk/core" "3.624.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/core" "^2.3.2" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-stream" "^3.1.3" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@aws-sdk/middleware-signing@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.572.0.tgz#d3c648e3a280774115003d7ea07860f80f79a19d" @@ -2359,15 +1634,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-ssec@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" - integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/middleware-user-agent@3.540.0": version "3.540.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.540.0.tgz#4981c64c1eeb6b5c453bce02d060b8c71d44994d" @@ -2412,17 +1678,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== - dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/property-provider@^3.78.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.374.0.tgz#ba302bfd9cdd4751efdb50ef60e7ee3cbd09c62a" @@ -2479,18 +1734,6 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - "@aws-sdk/shared-ini-file-loader@^3.80.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.374.0.tgz#dc992051b59169a33cf1acef2d268b7c8e3470f5" @@ -2523,18 +1766,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/signature-v4-multi-region@3.624.0": - version "3.624.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.624.0.tgz#86829acc07871758a592dd50812ca4d370f641ed" - integrity sha512-gu1SfCyUPnq4s0AI1xdAl0whHwhkTyltg4QZWc4vnZvEVudCpJVVxEcroUHYQIO51YyVUT9jSMS1SVRe5VqPEw== - dependencies: - "@aws-sdk/middleware-sdk-s3" "3.624.0" - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/token-providers@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.554.0.tgz#5a20ce273451654a1382f772ef119a9a156f537c" @@ -2580,17 +1811,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/types@3.535.0", "@aws-sdk/types@^3.222.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.535.0.tgz#5e6479f31299dd9df170e63f4d10fe739008cf04" @@ -2615,14 +1835,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/util-arn-parser@3.568.0": version "3.568.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-arn-parser/-/util-arn-parser-3.568.0.tgz#6a19a8c6bbaa520b6be1c278b2b8c17875b91527" @@ -2670,16 +1882,6 @@ "@smithy/util-endpoints" "^2.0.0" tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" - tslib "^2.6.2" - "@aws-sdk/util-locate-window@^3.0.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.535.0.tgz#0200a336fddd47dd6567ce15d01f62be50a315d7" @@ -2717,16 +1919,6 @@ bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - bowser "^2.11.0" - tslib "^2.6.2" - "@aws-sdk/util-user-agent-node@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.535.0.tgz#f5c26fb6f3f561d3cf35f96f303b1775afad0a5b" @@ -2757,16 +1949,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@aws-sdk/util-utf8-browser@^3.0.0": version "3.259.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" @@ -2790,14 +1972,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/xml-builder@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" - integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" @@ -4706,14 +3880,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/chunked-blob-reader-native@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.2.0.tgz#aff8bddf9fdc1052f885e1b15aa81e4d274e541e" @@ -4766,17 +3932,6 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - "@smithy/core@^1.4.2": version "1.4.2" resolved "https://registry.yarnpkg.com/@smithy/core/-/core-1.4.2.tgz#1c3ed886d403041ce5bd2d816448420c57baa19c" @@ -4805,20 +3960,6 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@smithy/core@^2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.2.tgz#4a1e3da41d2a3a494cbc6bd1fc6eeb26b2e27184" - integrity sha512-in5wwt6chDBcUv1Lw1+QzZxN9fBffi+qOixfb65yK4sDuKG7zAUO9HAFqmVzsZM3N+3tTyvZjtnDXePpvp007Q== - dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.14" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - "@smithy/credential-provider-imds@^1.0.1": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-1.1.0.tgz#4d9444c4c8de70143c3f16bdba188b0e42cb48f9" @@ -4852,17 +3993,6 @@ "@smithy/url-parser" "^3.0.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - tslib "^2.6.2" - "@smithy/eventstream-codec@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-2.2.0.tgz#63d74fa817188995eb55e792a38060b0ede98dc4" @@ -4883,16 +4013,6 @@ "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-codec@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" - integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== - dependencies: - "@aws-crypto/crc32" "5.2.0" - "@smithy/types" "^3.3.0" - "@smithy/util-hex-encoding" "^3.0.0" - tslib "^2.6.2" - "@smithy/eventstream-serde-browser@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.2.0.tgz#69c93cc0210f04caeb0770856ef88c9a82564e11" @@ -4911,15 +4031,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-browser@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" - integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== - dependencies: - "@smithy/eventstream-serde-universal" "^3.0.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/eventstream-serde-config-resolver@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.2.0.tgz#23c8698ce594a128bcc556153efb7fecf6d04f87" @@ -4936,14 +4047,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-config-resolver@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" - integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/eventstream-serde-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.2.0.tgz#b82870a838b1bd32ad6e0cf33a520191a325508e" @@ -4962,15 +4065,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-node@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" - integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== - dependencies: - "@smithy/eventstream-serde-universal" "^3.0.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/eventstream-serde-universal@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.2.0.tgz#a75e330040d5e2ca2ac0d8bccde3e390ac5afd38" @@ -4989,15 +4083,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-universal@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" - integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== - dependencies: - "@smithy/eventstream-codec" "^3.1.2" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/fetch-http-handler@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.5.0.tgz#0b8e1562807fdf91fe7dd5cde620d7a03ddc10ac" @@ -5020,17 +4105,6 @@ "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== - dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" - "@smithy/util-base64" "^3.0.0" - tslib "^2.6.2" - "@smithy/hash-blob-browser@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-2.2.0.tgz#d26db0e88b8fc4b59ee487bd026363ea9b48cf3a" @@ -5051,16 +4125,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-blob-browser@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" - integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== - dependencies: - "@smithy/chunked-blob-reader" "^3.0.0" - "@smithy/chunked-blob-reader-native" "^3.0.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/hash-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-2.2.0.tgz#df29e1e64811be905cb3577703b0e2d0b07fc5cc" @@ -5081,16 +4145,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== - dependencies: - "@smithy/types" "^3.3.0" - "@smithy/util-buffer-from" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@smithy/hash-stream-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-2.2.0.tgz#7b341fdc89851af6b98d8c01e47185caf0a4b2d9" @@ -5109,15 +4163,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-stream-node@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" - integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== - dependencies: - "@smithy/types" "^3.3.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@smithy/invalid-dependency@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-2.2.0.tgz#ee3d8980022cb5edb514ac187d159b3e773640f0" @@ -5134,14 +4179,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/is-array-buffer@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" @@ -5174,15 +4211,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/md5-js@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" - integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== - dependencies: - "@smithy/types" "^3.3.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@smithy/middleware-content-length@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-2.2.0.tgz#a82e97bd83d8deab69e07fea4512563bedb9461a" @@ -5201,15 +4229,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== - dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/middleware-endpoint@^2.5.1": version "2.5.1" resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.5.1.tgz#1333c58304aff4d843e8ef4b85c8cb88975dd5ad" @@ -5236,19 +4255,6 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== - dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - "@smithy/middleware-retry@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-2.3.1.tgz#d6fdce94f2f826642c01b4448e97a509c4556ede" @@ -5279,21 +4285,6 @@ tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.14": - version "3.0.14" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.14.tgz#739e8bac6e465e0cda26446999db614418e79da3" - integrity sha512-7ZaWZJOjUxa5hgmuMspyt8v/zVsh0GXYuF7OvCmdcbVa/xbnKQoYC+uYKunAqRGTkxjOyuOCw9rmFUFOqqC0eQ== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" - tslib "^2.6.2" - uuid "^9.0.1" - "@smithy/middleware-serde@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-2.3.0.tgz#a7615ba646a88b6f695f2d55de13d8158181dd13" @@ -5310,14 +4301,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/middleware-stack@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-2.2.0.tgz#3fb49eae6313f16f6f30fdaf28e11a7321f34d9f" @@ -5334,14 +4317,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/node-config-provider@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-1.1.0.tgz#86c64e4ef6a557863422a236ba10aa7ed51ad85d" @@ -5372,16 +4347,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== - dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/node-http-handler@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-2.5.0.tgz#7b5e0565dd23d340380489bd5fe4316d2bed32de" @@ -5404,17 +4369,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== - dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/property-provider@^1.0.1", "@smithy/property-provider@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-1.2.0.tgz#2e4ca34b0994ec6de734316c0093e671a1bfa5c7" @@ -5439,14 +4393,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/protocol-http@^3.3.0": version "3.3.0" resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-3.3.0.tgz#a37df7b4bb4960cdda560ce49acfd64c455e4090" @@ -5463,14 +4409,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/querystring-builder@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-2.2.0.tgz#22937e19fcd0aaa1a3e614ef8cb6f8e86756a4ef" @@ -5489,15 +4427,6 @@ "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== - dependencies: - "@smithy/types" "^3.3.0" - "@smithy/util-uri-escape" "^3.0.0" - tslib "^2.6.2" - "@smithy/querystring-parser@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-1.1.0.tgz#4bf4be6d1db8b769d346a0d98c5b0db4e99a8ba6" @@ -5522,14 +4451,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/service-error-classification@^2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-2.1.5.tgz#0568a977cc0db36299d8703a5d8609c1f600c005" @@ -5544,13 +4465,6 @@ dependencies: "@smithy/types" "^3.0.0" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== - dependencies: - "@smithy/types" "^3.3.0" - "@smithy/shared-ini-file-loader@^1.0.1", "@smithy/shared-ini-file-loader@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-1.1.0.tgz#144a03a303590ef7d465ebcb21ffc2a52efc3389" @@ -5575,14 +4489,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/signature-v4@^2.2.1", "@smithy/signature-v4@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-2.3.0.tgz#c30dd4028ae50c607db99459981cce8cdab7a3fd" @@ -5609,20 +4515,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== - dependencies: - "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-uri-escape" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@smithy/smithy-client@^2.5.1": version "2.5.1" resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.5.1.tgz#0fd2efff09dc65500d260e590f7541f8a387eae3" @@ -5647,18 +4539,6 @@ "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.12": - version "3.1.12" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.12.tgz#fb6386816ff8a5c50eab7503d4ee3ba2e4ebac63" - integrity sha512-wtm8JtsycthkHy1YA4zjIh2thJgIQ9vGkoR639DBx5lLlLNU0v4GARpQZkr2WjXue74nZ7MiTSWfVrLkyD8RkA== - dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" - tslib "^2.6.2" - "@smithy/types@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/types/-/types-1.2.0.tgz#9dc65767b0ee3d6681704fcc67665d6fc9b6a34e" @@ -5680,13 +4560,6 @@ dependencies: tslib "^2.6.2" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== - dependencies: - tslib "^2.6.2" - "@smithy/url-parser@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-1.1.0.tgz#1d88af653b02fda0be59064bfe5420c0b34b4dcb" @@ -5714,15 +4587,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== - dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/util-base64@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-2.3.0.tgz#312dbb4d73fb94249c7261aee52de4195c2dd8e2" @@ -5821,17 +4685,6 @@ bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.14": - version "3.0.14" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.14.tgz#21f3ebcb07b9d6ae1274b9d655c38bdac59e5c06" - integrity sha512-0iwTgKKmAIf+vFLV8fji21Jb2px11ktKVxbX6LIDPAUJyWQqGqBVfwba7xwa1f2FZUoolYQgLvxQEpJycXuQ5w== - dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - bowser "^2.11.0" - tslib "^2.6.2" - "@smithy/util-defaults-mode-node@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.3.1.tgz#4613210a3d107aadb3f85bd80cb71c796dd8bf0a" @@ -5858,19 +4711,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.14": - version "3.0.14" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.14.tgz#6bb9e837282e84bbf5093dbcd120fcd296593f7a" - integrity sha512-e9uQarJKfXApkTMMruIdxHprhcXivH1flYCe8JRDTzkkLx8dA3V5J8GZlST9yfDiRWkJpZJlUXGN9Rc9Ade3OQ== - dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.12" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/util-endpoints@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-1.2.0.tgz#b8b805f47e8044c158372f69b88337703117665d" @@ -5889,15 +4729,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/util-hex-encoding@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-2.2.0.tgz#87edb7c88c2f422cfca4bb21f1394ae9602c5085" @@ -5928,14 +4759,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== - dependencies: - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/util-retry@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-2.2.0.tgz#e8e019537ab47ba6b2e87e723ec51ee223422d85" @@ -5954,15 +4777,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== - dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@smithy/util-stream@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.2.0.tgz#b1279e417992a0f74afa78d7501658f174ed7370" @@ -5991,20 +4805,6 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== - dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-buffer-from" "^3.0.0" - "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - "@smithy/util-uri-escape@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-2.2.0.tgz#56f5764051a33b67bc93fdd2a869f971b0635406" @@ -6019,7 +4819,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.0.0", "@smithy/util-utf8@^2.3.0": +"@smithy/util-utf8@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== @@ -6053,15 +4853,6 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== - dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - "@stratiformdigital/serverless-stage-destroyer@^2.0.0": version "2.1.1" resolved "https://registry.yarnpkg.com/@stratiformdigital/serverless-stage-destroyer/-/serverless-stage-destroyer-2.1.1.tgz#6c0a5bde84d8e0646aa4ddf9ea0b0b9b099495fb" @@ -9184,13 +7975,6 @@ fast-xml-parser@4.2.5: dependencies: strnum "^1.0.5" -fast-xml-parser@4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" - integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== - dependencies: - strnum "^1.0.5" - fastest-levenshtein@^1.0.16: version "1.0.16" resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" @@ -13143,17 +11927,11 @@ serverless-webpack@^5.6.1: optionalDependencies: ts-node ">= 8.3.0" -serverless@^3.39.0: - version "3.39.0" - resolved "https://registry.yarnpkg.com/serverless/-/serverless-3.39.0.tgz#699fbea4d0b0ba0baba0510be743f9d025ac363d" - integrity sha512-FHI3fhe4TRS8+ez/KA7HmO3lt3fAynO+N1pCCzYRThMWG0J8RWCI0BI+K0mw9+sEV+QpBCpZRZbuGyUaTsaQew== - dependencies: - "@aws-sdk/client-api-gateway" "^3.588.0" - "@aws-sdk/client-cognito-identity-provider" "^3.588.0" - "@aws-sdk/client-eventbridge" "^3.588.0" - "@aws-sdk/client-iam" "^3.588.0" - "@aws-sdk/client-lambda" "^3.588.0" - "@aws-sdk/client-s3" "^3.588.0" +serverless@^3.38.0: + version "3.38.0" + resolved "https://registry.yarnpkg.com/serverless/-/serverless-3.38.0.tgz#9275763cab3ec1cd29635520cf24b9b5e7202583" + integrity sha512-NJE1vOn8XmQEqfU9UxmVhkUFaCRmx6FhYw/jITN863WlOt4Y3PQbj3hwQyIb5QS1ZrXFq5ojklwewUXH7xGpdA== + dependencies: "@serverless/dashboard-plugin" "^7.2.0" "@serverless/platform-client" "^4.5.1" "@serverless/utils" "^6.13.1" From ed88eb20145c822da770a2104ec7e14ae9b61c03 Mon Sep 17 00:00:00 2001 From: Nick Summers <ntsummers1@proton.me> Date: Wed, 25 Sep 2024 11:42:20 -0400 Subject: [PATCH 18/24] Revert "Rollback to before rework" (#139782) --- .github/workflows/audit-account.yml | 8 +- .github/workflows/deploy.yml | 4 +- .github/workflows/destroy.yml | 19 +- .../post-deploy-slack-notification.yml | 15 - .github/workflows/pull-request.yml | 19 +- .../scan_security-hub-jira-integration.yml | 5 +- .github/workflows/snyk-auto-merge.yml | 24 - .images/architecture.svg | 2 +- README.md | 9 +- package.json | 2 +- .../app-api/handlers/printing/printPdf.ts | 4 +- .../handlers/printing/tests/printPdf.test.ts | 2 +- .../stateStatus/tests/uncertify.test.ts | 17 +- .../libs/validation/backend-section.schema.ts | 3 + services/app-api/package.json | 17 +- services/app-api/yarn.lock | 1933 +- .../handlers/configureConnectors.js | 102 - .../handlers/sinkEnrollmentCounts.js | 78 +- services/carts-bigmac-streams/package.json | 14 +- services/carts-bigmac-streams/serverless.yml | 330 +- services/carts-bigmac-streams/yarn.lock | 1290 +- .../data/seed-local/seed-section.json | 14644 ++++------------ .../data/seed/seed-section-base-2023.json | 33 +- services/database/package.json | 4 +- .../scripts/remove-readonly-in-section-3c.js | 99 + services/database/serverless.yml | 1 - services/database/yarn.lock | 1117 +- services/ui-auth/package.json | 2 +- services/ui-auth/serverless.yml | 19 +- services/ui-auth/yarn.lock | 1350 +- services/ui-src/package.json | 4 +- services/ui-src/serverless.yml | 1 - services/ui-src/src/AppRoutes.jsx | 4 +- services/ui-src/src/actions/uncertify.js | 2 +- .../ui-src/src/components/fields/DataGrid.jsx | 19 +- .../ui-src/src/components/fields/Fieldset.jsx | 4 +- .../ui-src/src/components/fields/Integer.jsx | 86 +- .../src/components/fields/Integer.test.jsx | 105 +- .../ui-src/src/components/fields/Money.jsx | 2 +- .../src/components/fields/Objective.jsx | 6 +- .../src/components/fields/Objectives.jsx | 10 +- .../ui-src/src/components/fields/Question.jsx | 59 +- .../src/components/fields/Repeatable.jsx | 5 +- .../src/components/fields/Repeatables.jsx | 3 + .../components/fields/SynthesizedTable.jsx | 58 +- .../components/fields/SynthesizedValue.jsx | 44 +- .../ui-src/src/components/fields/Text.jsx | 29 +- .../components/layout/CertifyAndSubmit.jsx | 104 +- .../src/components/layout/DateRange.jsx | 427 +- .../src/components/layout/DateRange.test.jsx | 14 +- .../src/components/layout/FormActions.jsx | 51 +- .../components/layout/FormActions.test.jsx | 70 +- .../src/components/layout/FormNavigation.jsx | 35 +- .../ui-src/src/components/layout/Header.jsx | 6 +- .../src/components/layout/HomeAdmin.jsx | 18 +- .../ui-src/src/components/layout/PageInfo.jsx | 37 +- .../src/components/layout/PageInfo.test.jsx | 4 +- .../ui-src/src/components/layout/Part.jsx | 149 +- .../src/components/layout/Part.test.jsx | 3 + .../src/components/layout/SaveError.jsx | 17 +- .../src/components/layout/SaveMessage.js | 65 - .../src/components/layout/SaveMessage.jsx | 32 + .../components/layout/SaveMessage.test.jsx | 8 - .../ui-src/src/components/layout/Section.jsx | 28 +- .../src/components/layout/StateHeader.jsx | 48 +- .../components/layout/StateHeader.test.jsx | 47 +- .../src/components/layout/Subsection.jsx | 38 +- .../ui-src/src/components/layout/Timeout.jsx | 31 +- .../src/components/layout/Timeout.test.jsx | 8 +- .../ui-src/src/components/layout/Title.jsx | 24 +- .../src/components/layout/UploadComponent.jsx | 396 +- .../ui-src/src/components/sections/Print.jsx | 74 +- .../sections/{Userinfo.jsx => UserInfo.jsx} | 16 +- .../src/components/sections/UserInfo.test.jsx | 27 + .../src/components/sections/UserProfile.jsx | 16 +- .../sections/homepage/CMSHomepage.jsx | 62 +- .../sections/homepage/ReportItem.jsx | 38 +- .../src/components/utils/InvokeSection.jsx | 15 +- .../src/components/utils/ScrollToTop.js | 8 +- .../ui-src/src/components/utils/Spinner.jsx | 40 +- .../src/hooks/authHooks/authLifecycle.js | 13 +- services/ui-src/src/store/formData.js | 18 +- services/ui-src/src/store/selectors.js | 114 +- services/ui-src/src/styles/_alerts.scss | 4 +- services/ui-src/src/styles/_main.scss | 3 + services/ui-src/src/styles/_sidebar.scss | 11 +- services/ui-src/src/util/shouldDisplay.js | 70 +- .../ui-src/src/util/shouldDisplay.test.js | 172 +- services/ui-src/src/util/synthesize.js | 166 +- services/ui-src/src/util/synthesize.test.js | 269 +- services/ui-src/yarn.lock | 529 +- services/uploads/serverless.yml | 1 - tests/cypress/cypress.config.js | 8 +- tests/cypress/package.json | 3 - .../integration/submitAndUncertify.spec.js | 1 + tests/cypress/yarn.lock | 2530 +-- yarn.lock | 1234 +- 97 files changed, 10076 insertions(+), 18633 deletions(-) delete mode 100644 .github/workflows/snyk-auto-merge.yml delete mode 100644 services/carts-bigmac-streams/handlers/configureConnectors.js create mode 100644 services/database/scripts/remove-readonly-in-section-3c.js delete mode 100644 services/ui-src/src/components/layout/SaveMessage.js create mode 100644 services/ui-src/src/components/layout/SaveMessage.jsx rename services/ui-src/src/components/sections/{Userinfo.jsx => UserInfo.jsx} (57%) create mode 100644 services/ui-src/src/components/sections/UserInfo.test.jsx diff --git a/.github/workflows/audit-account.yml b/.github/workflows/audit-account.yml index f8a296d9a..3e428232a 100644 --- a/.github/workflows/audit-account.yml +++ b/.github/workflows/audit-account.yml @@ -46,16 +46,16 @@ jobs: echo "Reports with no entries will be omitted" CI_ACTIVE="$(./audit-account.sh ci_active resources.json)" [[ $(jq -r 'length' <<< "${CI_ACTIVE}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_ACTIVE}" > reports/ci_active.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_ACTIVE}" > reports/ci_active.csv || : CI_INACTIVE="$(./audit-account.sh ci_inactive resources.json)" [[ $(jq -r 'length' <<< "${CI_INACTIVE}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_INACTIVE}" > reports/ci_inactive.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CI_INACTIVE}" > reports/ci_inactive.csv || : CF_OTHER="$(./audit-account.sh cf_other resources.json)" [[ $(jq -r 'length' <<< "${CF_OTHER}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CF_OTHER}" > reports/cf_other.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${CF_OTHER}" > reports/cf_other.csv || : UNTAGGED="$(./audit-account.sh untagged resources.json)" [[ $(jq -r 'length' <<< "${UNTAGGED}") -gt 0 ]] && jq -r '(.[0] - | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${UNTAGGED}" > reports/untagged.csv + | keys_unsorted) as $keys | $keys, map([.[ $keys[] ]])[] | @csv' <<< "${UNTAGGED}" > reports/untagged.csv || : - name: Upload reports uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 69d5d21c5..5c23aa0e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,8 +7,8 @@ on: - "!skipci*" concurrency: - # Ensuring group key matches the destroy workflow currently in master - group: ${{ github.workflow }}-${{ github.ref_name }} + # Ensuring group key matches the destroy workflow currently in main + group: ${{ github.ref_name }} cancel-in-progress: false permissions: diff --git a/.github/workflows/destroy.yml b/.github/workflows/destroy.yml index 5411cd724..0a96661ec 100644 --- a/.github/workflows/destroy.yml +++ b/.github/workflows/destroy.yml @@ -8,6 +8,9 @@ on: description: "Name of the environment to destroy:" required: true +concurrency: + group: ${{ inputs.environment || github.event.ref }} + permissions: id-token: write contents: read @@ -62,4 +65,18 @@ jobs: inputs: '{ "topics": "mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.config,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.offsets,mgmt.connect.cms-carts-seds.carts-bigmac-streams-${{env.BRANCH_NAME}}.status"}' ref: refs/heads/master # Otherwise workflow-dispatch tries to operate off of our default name - name: Destroy - run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false \ No newline at end of file + run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false + + # Notify the integrations channel when a destroy action fails + notify_on_destroy_failure: + runs-on: ubuntu-latest + needs: + - destroy + if: ${{ failure() }} + steps: + - name: Slack Notification + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}." + MSG_MINIMAL: true + SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} \ No newline at end of file diff --git a/.github/workflows/post-deploy-slack-notification.yml b/.github/workflows/post-deploy-slack-notification.yml index 9a06a1e06..2fa4ee199 100755 --- a/.github/workflows/post-deploy-slack-notification.yml +++ b/.github/workflows/post-deploy-slack-notification.yml @@ -8,7 +8,6 @@ on: - 'main' - 'val' - 'production' - - 'snyk-**' jobs: notify_on_failure: @@ -24,20 +23,6 @@ jobs: MSG_MINIMAL: true SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - # Notify the integrations channel only when a Snyk auto merge fails - notify_failed_snyk_auto_merge: - runs-on: ubuntu-latest - #only check branch names that begin with snyk- - if: ${{ github.event.workflow_run.conclusion == 'failure' && startsWith(github.event.workflow_run.head_branch, 'snyk-') }} - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: ":boom: A Synk auto merge has failed in ${{ github.repository }}" - SLACK_MESSAGE: "${{ github.event.workflow_run.html_url }}" - MSG_MINIMAL: true - SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} - # Sends a slack message to the mdct-prod-releases channel in CMS slack notify_on_prod_release: runs-on: ubuntu-latest diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 90e039c4e..e6cb288b1 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -44,21 +44,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PRNUM: ${{ github.event.pull_request.number }} - PR_AUTHOR: ${{ github.event.pull_request.user.login }} - - #Notify the integrations channel only when a Snyk auto merge fails pr checks - notify_on_pr_failure: - runs-on: ubuntu-latest - needs: - - linting - - jest-frontend - - jest-backend - #only check branch names that begin with snyk- - if: ${{ failure() && startsWith(github.head_ref, 'snyk-') }} - steps: - - name: Slack Notification - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_TITLE: ":boom: A Synk auto merge has failed pull request checks in ${{ github.repository }}." - MSG_MINIMAL: true - SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }} + PR_AUTHOR: ${{ github.event.pull_request.user.login }} \ No newline at end of file diff --git a/.github/workflows/scan_security-hub-jira-integration.yml b/.github/workflows/scan_security-hub-jira-integration.yml index c891ab340..2428a1458 100644 --- a/.github/workflows/scan_security-hub-jira-integration.yml +++ b/.github/workflows/scan_security-hub-jira-integration.yml @@ -21,13 +21,12 @@ jobs: aws-region: ${{ secrets.AWS_DEFAULT_REGION }} role-to-assume: ${{ secrets.PRODUCTION_SYNC_OIDC_ROLE }} - name: Sync Security Hub and Jira - uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v1.0.5 + uses: Enterprise-CMCS/mac-fc-security-hub-visibility@v2.0.9 with: jira-username: "mdct_github_service_account" jira-token: ${{ secrets.JIRA_ENT_USER_TOKEN }} - jira-host: jiraent.cms.gov jira-project-key: CMDCT jira-ignore-statuses: Done, Closed, Canceled jira-custom-fields: '{ "customfield_10100": "CMDCT-2280", "customfield_26700" : [{"id": "40101", "value": "CARTS"}] }' aws-severities: CRITICAL, HIGH, MEDIUM - assign-jira-ticket-to: "MWTW" + jira-assignee: "MWTW" diff --git a/.github/workflows/snyk-auto-merge.yml b/.github/workflows/snyk-auto-merge.yml deleted file mode 100644 index 0694c999a..000000000 --- a/.github/workflows/snyk-auto-merge.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Snyk auto-merge -on: - pull_request: - workflow_dispatch: - -permissions: - pull-requests: write - contents: write - -jobs: - snyk: - runs-on: ubuntu-latest - if: ${{ github.actor == 'mdct-github-service-account' }} - steps: - - name: Auto-approve Snyk PR - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: Enable auto-merge for Snyk PRs - run: gh pr merge --auto --squash "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.images/architecture.svg b/.images/architecture.svg index d7d40c838..a222bc1dd 100644 --- a/.images/architecture.svg +++ b/.images/architecture.svg @@ -1 +1 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:lucid="lucid" width="2740" height="2367.33"><g transform="translate(40 0)" lucid:page-tab-id="0_0"><path d="M-1696 0h5152v2656h-5152z" fill="#fff"/><path d="M240 166a6 6 0 0 1 6-6h2428a6 6 0 0 1 6 6v1848a6 6 0 0 1-6 6H246a6 6 0 0 1-6-6z" stroke="#6f7681" fill="#fff" fill-opacity="0"/><path d="M240 160h56v56h-56v-56z" stroke="#fff" stroke-opacity="0" fill="#6f7681"/><path d="M280.88 201.22h-25c-4.13.05-7.57-3.1-7.9-7.2v-.64c-.15-3.4 1.97-6.38 5.25-7.36v-.66c.12-4.22 2.44-7.75 6.24-9.57 4.13-1.86 8.73-.96 11.8 2.3 1.1 1.1 1.85 2.2 2.45 3.6 1.2-1 2.72-1.32 4.24-.9 2.24.8 3.68 2.74 3.76 5.1 3.68.65 6.32 3.8 6.28 7.56 0 7.07-7.04 7.73-7.12 7.76zm-26.7-13.88c-2.83.6-4.75 3.14-4.6 6.04v.53c.3 3.33 3.1 5.84 6.4 5.76h24.98c3.04-.3 5.4-2.64 5.68-5.7.28-3.43-2.24-6.5-5.68-6.78-.44-.05-.72-.44-.64-.87.08-1.83-1-3.44-2.72-4.13-1.32-.37-2.64.13-3.44 1.24-.2.25-.44.38-.76.33-.28-.05-.48-.24-.6-.5-.6-1.6-1.4-2.85-2.6-4.04-2.7-2.8-6.6-3.6-10.13-2-3.24 1.6-5.2 4.63-5.32 8.24-.04.4-.04.74 0 1.14.04.4-.2.76-.6.84z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#a" transform="matrix(1,0,0,1,311,180) translate(0 14.4)"/><use xlink:href="#b" transform="matrix(1,0,0,1,311,180) translate(45.3 14.4)"/><path d="M1940 1522.15a6 6 0 0 1 6-6h648a6 6 0 0 1 6 6V1935a6 6 0 0 1-6 6h-648a6 6 0 0 1-6-6z" stroke="#248814" fill="#fff" fill-opacity="0"/><path d="M1940 1516.15h56v56h-56v-56z" stroke="#fff" stroke-opacity="0" fill="#248814"/><path d="M1971.76 1544.45h-1.18v-1.1c-.12-1.73-1.47-3.08-3.2-3.2-1.9-.13-3.54 1.3-3.67 3.2v1.07h-1.17c-.44 0-.8.36-.8.8v6.12c0 .45.36.8.8.8h9.23c.44 0 .8-.35.8-.8v-6.08c0-.45-.36-.8-.8-.8zm-6.4-1.07c.1-1.02 1-1.76 2-1.67.9.1 1.58.78 1.67 1.68v1.07h-3.72zm5.65 7.1h-7.67v-4.43h7.63z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M1982.27 1541.9c-.1-2.45-1.58-4.48-3.87-5.3-1.58-.47-3.16-.14-4.4.9-.68-1.46-1.47-2.6-2.6-3.76-3.24-3.35-7.94-4.3-12.18-2.4-4.04 1.9-6.4 5.64-6.54 10.06v.7c-3.4.97-5.66 4.08-5.5 7.64v.63c.38 4.3 3.92 7.53 8.2 7.47h26s7.42-.63 7.42-8.1c.04-3.9-2.66-7.2-6.53-7.85zm-.96 14.38h-25.9c-3.47.05-6.3-2.53-6.6-5.96v-.52c-.15-3.05 1.93-5.7 4.92-6.32.38-.1.63-.46.6-.88-.06-.4-.06-.74 0-1.15.07-3.8 2.1-6.94 5.52-8.6 1.25-.57 2.4-.8 3.83-.84 2.62.1 4.87 1.05 6.7 2.94 1.25 1.3 2.04 2.6 2.62 4.32.03.13.1.27.24.35.37.3.87.2 1.12-.15.83-1.18 2.25-1.68 3.62-1.3 1.8.72 2.87 2.4 2.83 4.32-.07.4.22.82.64.9 3.58.36 6.2 3.55 5.82 7.12-.3 3.12-2.7 5.5-5.82 5.83z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#c" transform="matrix(1,0,0,1,2011,1536.1468180000006) translate(0 14.4)"/><use xlink:href="#d" transform="matrix(1,0,0,1,2011,1536.1468180000006) translate(55.5 14.4)"/><use xlink:href="#e" transform="matrix(1,0,0,1,2011,1536.1468180000006) translate(116.4 14.4)"/><path d="M780 20h800v170.8H780z" fill="none"/><use xlink:href="#f" transform="matrix(1,0,0,1,785,25) translate(85.4972222222226 89.43333333333332)"/><use xlink:href="#g" transform="matrix(1,0,0,1,785,25) translate(251.26018518518538 89.43333333333332)"/><use xlink:href="#h" transform="matrix(1,0,0,1,785,25) translate(526.0842592592592 89.43333333333332)"/><path d="M134.82 696.8h-69.7c-2.8 0-5.12-2.28-5.12-5.07v-45.65c0-2.8 2.32-5.08 5.12-5.08h69.7c2.8 0 5.1 2.3 5.1 5.08v45.6c0 2.84-2.23 5.12-5.02 5.12h-.08zM65.2 644.4c-.96 0-1.76.73-1.76 1.68v45.6c0 .94.8 1.72 1.76 1.72h69.7c.96 0 1.67-.78 1.67-1.73v-45.6c0-.94-.7-1.67-1.67-1.67zM134 719H65.95c-3.28-.02-5.92-2.65-5.92-5.92v-7.35c0-3.27 2.64-5.94 5.92-5.96H134c3.28 0 6 2.67 6 5.96v7.35c0 3.3-2.72 5.92-6 5.92zm-68.05-15.84c-1.36 0-2.48 1.17-2.48 2.57v7.35c0 1.4 1.12 2.52 2.48 2.54H134c1.44 0 2.56-1.16 2.56-2.58v-7.3c0-1.43-1.12-2.58-2.56-2.58z" stroke="#fff" stroke-opacity="0" fill="#232f3e"/><path d="M131.9 690.45H68.1c-.95 0-1.7-.78-1.7-1.7V649c0-.92.75-1.7 1.7-1.7h63.8c.95 0 1.7.78 1.7 1.7v39.76c0 .9-.75 1.7-1.7 1.7zm-62.06-3.4h60.32V650.7H69.84zM112.74 706.13h19.16c1.13 0 1.7.57 1.7 1.7V711c0 1.14-.57 1.7-1.7 1.7h-19.16c-1.12 0-1.7-.56-1.7-1.7v-3.17c0-1.13.58-1.7 1.7-1.7z" stroke="#fff" stroke-opacity="0" fill="#232f3e"/><path d="M1160.07 940h120v120h-120V940z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3f8624"/><path d="M1258.36 1004.06c-.46-2.48-3.3-4.25-5.3-5.53-.6-.4-2.3-1.04-2.45-1.6 0-.4 0-.8.17-1.2l1.6-11.46 1.4-10.17c.37-3.05-1.1-5.13-3.62-6.9-5.13-3.6-11.88-5.04-17.94-6-7.96-1.28-14.94-1.52-23-.72-7.27.48-13.33 1.92-20.08 4.8-3.37 1.6-7.9 4.1-7.28 8.42 1.53 12.97 3.45 25.95 5.2 38.93.78 5.93 1.62 11.86 2.4 17.8.3 2.47 1.68 4.4 3.98 5.35 4.9 2.65 11.04 3.45 16.63 3.93 7.75.73 14.34.5 22-.95 4.6-.8 13.2-2.24 13.96-8 .93-7.14 1.93-14.27 2.85-21.4l.38-2.17c2.6.65 10.05 2 9.13-3.12zm-40.64-40.86c9.66 0 20.63 1.12 29.2 5.85 1.4.72 4.46 2.32 3.54 4.33-.92 1.92-3.83 2.88-5.6 3.6-2.6.96-4.98 1.6-7.74 2.16-11.96 2.4-22.54 2.65-34.65.73-5.45-.57-9.97-1.93-14.88-4.33-1.16-.72-3.08-1.84-2.54-3.45.38-.9 1-1.53 1.84-2 3.76-2.4 7.2-3.85 11.58-4.65 6.6-1.6 12.42-2.33 19.24-2.25zm25.15 67.46c-.3 1.84-3.37 2.8-4.83 3.28-3.22 1.12-6.06 1.76-9.43 2.16-7.43.97-13.87.97-21.38 0-4.68-.4-8.6-1.44-12.8-3.52-1.16-.48-1.85-1.52-1.92-2.72-1.6-12.74-3.38-25.4-5.14-38.06l-1.84-13.78c3.83 2.1 7.36 3.37 11.65 4.1 4.68.95 8.6 1.43 13.35 1.75 9.2.64 17.1.24 26.22-1.44 4.83-.72 8.8-2.08 13.1-4.4l-3.37 25.07c-8.58-2.8-15.64-5.6-23.7-9.54-.37-.16-.68-.32-.98-.48-.47-.32-.32-.16-.55-.64-.38-.96-.46-1.6-1.3-2.4-.77-.56-1.62-.8-2.54-.72-1.98.08-3.5 1.84-3.36 3.84.15 1.93 1.92 3.45 3.9 3.3.55-.1 1-.25 1.62-.5.62-.15.62-.15 1.23.17 8.2 4 15.32 6.97 24 9.85 1.2.4 1.2 0 1.2 1.04-.06.8-.14 1.53-.3 2.33l-1 7.6zm-24.7-37.9c0 .48-.6.4-.76.16-.22-.32.78-.72.78-.16zm31.52 11.22l.45-3.53c1.6.96 4.3 2.33 5.06 4.1-1.6.63-4.05-.17-5.5-.57z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#i" transform="matrix(1,0,0,1,1130.067911,1069) translate(38.827160493827165 17.77777777777778)"/><use xlink:href="#j" transform="matrix(1,0,0,1,1130.067911,1069) translate(72.16049382716051 17.77777777777778)"/><use xlink:href="#k" transform="matrix(1,0,0,1,1130.067911,1069) translate(85.67901234567901 17.77777777777778)"/><use xlink:href="#l" transform="matrix(1,0,0,1,1130.067911,1069) translate(8.209876543209873 44.44444444444444)"/><use xlink:href="#m" transform="matrix(1,0,0,1,1130.067911,1069) translate(94.07407407407406 44.44444444444444)"/><path d="M871.64 1000.5H776v-1h95.64zm287.93 0h-111.54v-1h111.54z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1160.07 1000.5h-.5v-1h.5z" fill="#3a414a"/><path d="M1160.1 1000.52h-.57v-1.04h.56zm-.52-1v.96h.46v-.96z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M775.5 1004.63L761.2 1000l14.27-4.63z" fill="#3a414a"/><path d="M776 1005.32l-16.4-5.32 16.4-5.32zm-13.16-5.32l12.15 3.95v-7.9z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><use xlink:href="#n" transform="matrix(1,0,0,1,871.6386736807476,989.3333333333334) translate(0 14.222222222222223)"/><use xlink:href="#o" transform="matrix(1,0,0,1,871.6386736807476,989.3333333333334) translate(53.23456790123457 14.222222222222223)"/><use xlink:href="#p" transform="matrix(1,0,0,1,871.6386736807476,989.3333333333334) translate(112.44444444444446 14.222222222222223)"/><path d="M639.6 940h120v120h-120V940z" stroke="#fff" stroke-opacity="0" fill="#693cc5"/><path d="M713.42 1037.07l-2.85-1.5c1.62-3.02 2.7-5.73 3.65-9.04l3.07.9c-1.02 3.54-2.16 6.4-3.88 9.64zm2.98-29.3c-.57-9.4-3.23-17.23-8.43-25.06l2.66-1.72c5.55 8.28 8.37 16.64 8.97 26.58zm-21.1-38.62c-2.45-1.8-4.67-3.16-7.4-4.5l1.47-2.87c2.9 1.43 5.26 2.86 7.86 4.82zM708.4 1011.84c-5.3-5.27-10.82-8.73-17.87-11.2l1-3.04c7.52 2.63 13.38 6.3 19.03 11.92zM721.6 1030.94c-.6-1.6-1.28-3.07-2-4.56l2.85-1.42c.83 1.65 1.47 3.08 2.13 4.8z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M712.5 1037.84l-1-3.02c4.03-1.37 7.25-3.1 10.6-5.72l1.97 2.53c-3.66 2.85-7.16 4.73-11.56 6.2zM661.65 999.2l-.73-3.1c3.74-.92 6.98-1.35 10.83-1.43l.08 3.2c-3.6.08-6.67.47-10.18 1.33zM687.9 989.02l-2.7-1.75c2.48-4 5.07-7.1 8.6-10.23l2.1 2.42c-3.3 2.92-5.7 5.8-8 9.56zM711.68 970.05l-1.08-3c2.53-.96 4.75-1.6 7.4-2.12l.6 3.2c-2.48.47-4.55 1.04-6.92 1.92zM680 1034.4c-2.74-6.38-4-12.25-4.1-19.2.05-2.67.35-4.95.98-7.54l.36-1.74 3.2.63c-.1.6-.24 1.16-.35 1.76-.6 2.38-.88 4.46-.94 6.9.07 6.53 1.24 12.05 3.8 18.06z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M699.6 1040c-22.08 0-40-17.94-40-39.97 0-.88 0-1.6.08-2.5 1.04-17.05 12.08-31 28.48-35.87 10.8-3.2 21.2-2.1 30.96 3.44 19.28 10.8 26.16 35.17 15.36 54.47-2.72 4.9-5.92 8.65-10.4 12.1-7.36 5.6-15.2 8.33-24.48 8.33zm0-76.82c-3.76 0-6.96.48-10.48 1.6-15.12 4.57-25.28 17.3-26.24 33 0 .8-.08 1.53-.08 2.25 0 20.26 16.48 36.77 36.8 36.77 4.24 0 7.84-.57 11.84-2 4.08-1.37 7.28-3.05 10.64-5.7 9.36-7.2 14.32-17.3 14.32-29.07 0-20.35-16.48-36.85-36.8-36.85z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M703.5 981.5c-3.92 0-7.1-3.2-7.1-7.1 0-3.9 3.18-7.1 7.1-7.1 3.9 0 7.08 3.2 7.08 7.1 0 3.93-3.16 7.1-7.07 7.1zm0-10.97c-2.15 0-3.9 1.74-3.9 3.88 0 2.17 1.75 3.9 3.9 3.9 2.13 0 3.88-1.73 3.88-3.9 0-2.13-1.75-3.87-3.9-3.87zM681.67 1003.8c-3.9 0-7.1-3.17-7.1-7.08 0-3.9 3.2-7.1 7.1-7.1 3.9 0 7.1 3.2 7.1 7.1-.03 3.9-3.2 7.07-7.1 7.1zm0-10.96c-2.14 0-3.9 1.74-3.9 3.88 0 2.14 1.76 3.88 3.9 3.88 2.14 0 3.88-1.74 3.88-3.88v-.03c0-2.16-1.74-3.9-3.88-3.9zM716.85 1024.32c-3.9 0-7.1-3.16-7.1-7.07-.02-3.92 3.16-7.1 7.07-7.1 3.9-.02 7.1 3.15 7.1 7.07v.03c0 3.9-3.16 7.07-7.07 7.07zm0-10.96c-2.15 0-3.9 1.75-3.9 3.9 0 2.14 1.75 3.87 3.9 3.87 2.13 0 3.87-1.73 3.87-3.88 0-2.14-1.73-3.9-3.87-3.9z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#q" transform="matrix(1,0,0,1,609.6044980898903,1069) translate(6.9135802469135825 17.77777777777778)"/><path d="M440.07 940h120v120h-120V940z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d6242d"/><path d="M518.2 1020.35l2.27-2.27 19.13 19.13-2.27 2.27-19.12-19.12zM460.54 962.67l2.26-2.26 21.2 21.23-2.25 2.25-21.2-21.2zM465.34 1032.47l11.2-11.2 2.26 2.26-11.2 11.2-2.26-2.26zM521.34 976.47l11.2-11.2 2.26 2.26-11.2 11.2-2.26-2.26z" stroke="#fff" stroke-opacity="0" stroke-width="1.41" fill="#fff"/><path d="M540.07 998.4v3.2h-3.2c-.3 7.56-2.5 13.9-6.97 20l-2.58-1.9c4-5.53 6-11.28 6.3-18.1h-3.2v-3.2h3.2c-.3-6.82-2.3-12.53-6.3-18.06l2.58-1.94c4.44 6.1 6.64 12.44 6.94 20zM521.67 970.16l-1.9 2.6c-5.53-4.03-11.28-6.02-18.1-6.32v3.2h-3.2v-3.2c-6.83.3-12.53 2.3-18.06 6.3l-1.93-2.58c6.1-4.43 12.44-6.63 20-6.92v-3.2h3.2v3.2c7.56.3 13.9 2.5 20 6.92zM521.67 1029.84c-6.1 4.43-12.44 6.63-20 6.92v3.2h-3.2v-3.2c-7.56-.3-13.9-2.5-20-6.92l1.9-2.6c5.53 4.03 11.27 6.03 18.1 6.32v-3.2h3.2v3.2c6.82-.3 12.52-2.3 18.05-6.3zM466.5 1001.6c.3 6.82 2.3 12.53 6.32 18.06l-2.6 1.94c-4.42-6.1-6.62-12.44-6.92-20h-3.2v-3.2h3.2c.3-7.56 2.5-13.9 6.93-20l2.6 1.9c-4.03 5.53-6.03 11.28-6.32 18.1h3.22v3.2z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M514.5 989.9c-.44-.26-.97-.26-1.47 0-.5.25-.8.7-.87 1.27-.1 1.02-.27 1.9-.5 2.87-.8-8.14-5.4-14.64-12.8-18.12-2.28-1.74-4.56-2.7-7.37-3.22-.58-.06-1.1.1-1.5.56-.56.66-.48 1.7.2 2.25 3.5 3.44 4.86 8.05 3.8 12.8-1.86-2.45-4.82-5.37-8.28-5.37-.57 0-1.03.26-1.33.72-.32.4-.4.97-.2 1.48.95 2.36 2.77 9.47.15 13.62l-.46.76c-3.65 6.66-1.75 14.85 4.44 19.25 3.3 2.2 6.3 3.74 10.07 5.02.2.05.4.1.58.1h.34c2.13-.2 16.6-2.04 19.56-13.56 4.07-15.6-4-20.2-4.37-20.4zm-17.88 29.78c-2.35-1.03-4.3-2.05-6.42-3.48-4.86-3.43-6.34-9.83-3.5-15.05l.38-.66c2.7-4.26 1.94-10 1.07-13.47 2.2 1.68 3.76 3.48 5.1 5.93.18.4.48.67.9.82.84.3 1.75-.15 2.05-.97 2.06-5.1 1.87-10.23-.53-15.14 2.13 1.23 3.6 2.82 4.67 5.07 2.28 4.7 1.75 11.2-1.32 16.78-3.27 6.5-4.07 13.1-2.4 20.18zm19.2-10.14c-2.1 8.2-12.1 10.5-15.7 11.06-.84-3.13-2.55-11.83 1.7-19.6 3.12-5.43 3.92-11.1 2.36-17.2 2.9 3.38 5.32 8.75 4.03 16.8-.07.45.05.9.35 1.27.57.66 1.56.76 2.24.2 2.2-2.1 3.45-4.5 4.02-7.47 1.52 2.2 3.15 6.7 1.02 14.94z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#r" transform="matrix(1,0,0,1,410.067911,1069) translate(37.808641975308646 17.77777777777778)"/><use xlink:href="#s" transform="matrix(1,0,0,1,410.067911,1069) translate(93.73456790123456 17.77777777777778)"/><path d="M310.5 993.98l.07.88.2.84.33.8.45.73.56.66.67.55.73.45.8.33.84.2.88.07h123.55v1h-123.6l-1-.08-.98-.24-.95-.4-.87-.52-.78-.66-.66-.78-.53-.87-.38-.94-.24-.98-.08-1V880.67h1zm-5.48-314.4l1 .24.93.4.87.52.78.66.66.78.53.87.38.94.24.98.08 1v173.35h-1v-173.3l-.07-.9-.2-.83-.33-.8-.45-.73-.56-.66-.67-.55-.73-.45-.8-.33-.84-.2-.88-.07H140.43v-1h163.6z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M140.44 680.5h-.5v-1h.5z" fill="#3a414a"/><path d="M140.47 680.52h-.56v-1.04h.57zm-.5-1v.96h.45v-.96z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M440.07 1000.5h-.5v-1h.5z" fill="#3a414a"/><path d="M440.1 1000.52h-.57v-1.04h.56zm-.52-1v.96h.46v-.96z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><use xlink:href="#t" transform="matrix(1,0,0,1,268.17283950617286,859.3333333333334) translate(0.005000000000002558 14.222222222222223)"/><use xlink:href="#u" transform="matrix(1,0,0,1,268.17283950617286,859.3333333333334) translate(50.177839506172845 14.222222222222223)"/><path d="M560.57 1000h78.53" stroke="#3a414a" fill="none"/><path d="M560.58 1000.5h-.5v-1h.5zM639.6 1000.5h-.5v-1h.5zM310.5 638.8l-.08 1-.24.98-.4.94-.52.87-.66.77-.78.66-.87.54-.94.4-.98.22-1 .07H140.2v-1h163.78l.88-.07.84-.2.8-.33.73-.45.66-.56.55-.65.45-.73.33-.8.2-.84.07-.88V535.1h1zm176.26-398.3H316.02l-.88.07-.84.2-.8.33-.73.45-.66.56-.55.67-.45.73-.33.8-.2.84-.07.88v267.75h-1v-267.8l.08-1 .24-.98.4-.95.52-.87.66-.78.78-.66.87-.53.94-.38.98-.24 1-.08h170.78zm336.92 0h-48.13v-1h48.13z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M140.2 645.27h-.4l-.18-.93.6-.07z" fill="#3a414a"/><path d="M140.24 645.3h-.47l-.18-.98.64-.08zm-.6-.93l.17.88h.38v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M838.45 240l-14.27 4.63v-9.26z" fill="#3a414a"/><path d="M840.07 240l-16.4 5.32v-10.64zm-15.4 3.95l12.16-3.95-12.15-3.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><use xlink:href="#v" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(0.0049999999999954525 14.222222222222223)"/><use xlink:href="#w" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(85.7827777777778 14.222222222222223)"/><use xlink:href="#x" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(122.22722222222225 14.222222222222223)"/><use xlink:href="#y" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(241.43709876543215 14.222222222222223)"/><use xlink:href="#z" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(63.16549382716052 35.55555555555556)"/><use xlink:href="#A" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(100.54820987654324 35.55555555555556)"/><use xlink:href="#B" transform="matrix(1,0,0,1,486.75595163927295,218.66666666666677) translate(132.05438271604942 35.55555555555556)"/><use xlink:href="#C" transform="matrix(1,0,0,1,248,513.7754649786721) translate(0.005000000000002558 14.222222222222223)"/><path d="M840.07 180h120v120h-120V180z" stroke="#fff" stroke-opacity="0" fill="#d6242d"/><path d="M928.08 204h-61.65c-3.46.16-6.12 3.12-5.97 6.55v39.7c-.15 3.44 2.5 6.4 5.97 6.55h34.03v-3.22h-34.03c-1.7-.2-2.88-1.7-2.73-3.33v-27.03h28.8v23.97c0 .9.67 1.57 1.55 1.57h12.82v-3.16H896.4v-.47c0-5.6 3.47-10.3 8.85-11.88 2.58 1.16 5.23 1.16 7.88 0 3.02.9 5.38 2.7 7.07 5.44l2.73-1.6c-1.77-2.8-3.98-4.75-7-6.12 1.4-1.64 2.06-3.43 2.06-5.54 0-4.86-4-8.82-8.85-8.82-4.8 0-8.76 3.96-8.76 8.82.06 2.06.72 3.85 2.05 5.44-2.88 1.26-5 3.1-6.7 5.8v-21.5h27.18v22.41h3.16v-14.36h4.78v16h3.24v-28.67-.06c.15-3.5-2.58-6.4-6.04-6.5zm-18.93 15.8c3.1 0 5.6 2.47 5.67 5.53-.07 2.06-1.1 3.8-2.94 4.8-1.77.96-3.7.96-5.38 0-1.84-1-2.87-2.74-2.95-4.8.08-3.06 2.58-5.54 5.6-5.54zm16.94.2v-6.4c0-.9-.74-1.57-1.63-1.57h-30.42c-.88 0-1.55.68-1.55 1.58v6.4h-28.8v-9.45c-.15-1.64 1.03-3.12 2.73-3.33h61.65c1.62.2 2.88 1.64 2.73 3.33V220z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M866.9 231.12h17.57v3.2H866.9v-3.2zM866.9 239.12h11.17v3.2H866.9v-3.2zM881.3 239.12h4.77v3.2h-4.77v-3.2zM923.48 276.08c-8.92.03-16.2-7.15-16.24-16.1-.03-8.94 7.16-16.22 16.1-16.25.75 0 1.37.03 2.12.13 8.84 1.1 15.16 9.2 14.06 18.05-.4 3.3-1.6 6-3.73 8.52-1.6 1.8-3.25 3.07-5.42 4.14-2.27 1.04-4.37 1.52-6.9 1.52zm0-29.15c-2.14 0-4 .45-5.9 1.42-6.2 3.24-8.72 10.68-5.77 17.02 3.02 6.5 10.74 9.32 17.25 6.28 1.75-.84 3.08-1.85 4.3-3.3 1.76-2.04 2.74-4.24 3.06-6.9.85-7.1-4.2-13.55-11.33-14.42-.56-.07-1.04-.1-1.62-.1z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M920.94 266.72c-.44 0-.8-.16-1.13-.47l-5.16-5.16 2.23-2.27 4.02 4.03 9.12-9.13 2.27 2.27L922 266.25c-.3.3-.65.46-1.08.47z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#D" transform="matrix(1,0,0,1,810.0679110000001,309.0000000000001) translate(0.03086419753087455 17.77777777777778)"/><use xlink:href="#E" transform="matrix(1,0,0,1,810.0679110000001,309.0000000000001) translate(82.62345679012347 17.77777777777778)"/><use xlink:href="#F" transform="matrix(1,0,0,1,810.0679110000001,309.0000000000001) translate(135.58641975308643 17.77777777777778)"/><path d="M840 380h120v120H840V380z" stroke="#fff" stroke-opacity="0" fill="#d6242d"/><path d="M928 404h-61.64c-3.46.16-6.1 3.12-5.97 6.55v39.7c-.15 3.44 2.5 6.4 5.96 6.55h34.03v-3.22h-34.04c-1.7-.2-2.87-1.7-2.73-3.33v-27.03h28.8v23.97c0 .9.67 1.57 1.55 1.57h12.82v-3.16h-10.46v-.47c0-5.6 3.46-10.3 8.84-11.88 2.58 1.16 5.23 1.16 7.88 0 3.02.9 5.38 2.7 7.07 5.44l2.73-1.6c-1.77-2.8-3.98-4.75-7-6.12 1.4-1.64 2.06-3.43 2.06-5.54 0-4.86-3.97-8.82-8.84-8.82-4.8 0-8.76 3.96-8.76 8.82.07 2.06.73 3.85 2.06 5.44-2.87 1.26-5 3.1-6.7 5.8v-21.5h27.18v22.41h3.17v-14.36h4.78v16h3.25v-28.67-.06c.15-3.5-2.57-6.4-6.03-6.5zm-18.92 15.8c3.1 0 5.6 2.47 5.67 5.53-.07 2.06-1.1 3.8-2.94 4.8-1.76.96-3.67.96-5.37 0-1.84-1-2.87-2.74-2.94-4.8.06-3.06 2.56-5.54 5.58-5.54zm16.95.2v-6.4c0-.9-.74-1.57-1.63-1.57H894c-.88 0-1.54.68-1.54 1.58v6.4h-28.8v-9.45c-.15-1.64 1.02-3.12 2.72-3.33H928c1.63.2 2.9 1.64 2.74 3.33V420z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M866.83 431.12h17.57v3.2h-17.57v-3.2zM866.83 439.12H878v3.2h-11.17v-3.2zM881.23 439.12H886v3.2h-4.77v-3.2zM923.4 476.08c-8.9.03-16.2-7.15-16.23-16.1-.03-8.94 7.16-16.22 16.1-16.25.76 0 1.37.03 2.12.13 8.84 1.1 15.16 9.2 14.06 18.05-.4 3.3-1.6 6-3.73 8.52-1.6 1.8-3.24 3.07-5.42 4.14-2.25 1.04-4.36 1.52-6.9 1.52zm0-29.15c-2.13 0-3.98.45-5.9 1.42-6.18 3.24-8.7 10.68-5.76 17.02 3 6.5 10.73 9.32 17.25 6.28 1.74-.84 3.07-1.85 4.3-3.3 1.75-2.04 2.72-4.24 3.04-6.9.85-7.1-4.2-13.55-11.34-14.42-.55-.07-1.04-.1-1.62-.1z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M920.88 466.72c-.45 0-.8-.16-1.13-.47l-5.17-5.16 2.22-2.27 4.02 4.03 9.13-9.13 2.27 2.27-10.27 10.25c-.3.3-.65.46-1.07.47z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#D" transform="matrix(1,0,0,1,810,509.0000000000001) translate(12.932098765432102 17.77777777777778)"/><use xlink:href="#G" transform="matrix(1,0,0,1,810,509.0000000000001) translate(95.5246913580247 17.77777777777778)"/><use xlink:href="#F" transform="matrix(1,0,0,1,810,509.0000000000001) translate(67.80864197530865 44.44444444444444)"/><path d="M435.93 467.98l.07.88.2.84.33.8.45.73.56.66.66.55.73.45.8.33.84.2.88.07H839.5v1H441.4l-1-.08-.98-.24-.94-.4-.87-.52-.77-.66-.66-.78-.53-.87-.4-.94-.23-.98-.07-1V240.5h1z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M840 474.5h-.5v-1h.5z" fill="#3a414a"/><path d="M840.02 474.52h-.56v-1.04h.56zm-.5-1v.96h.46v-.96zM435.93 240.5h-1v-.5h1z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M720 1262.3h120v120H720v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3f8624"/><path d="M818.3 1326.36c-.47-2.48-3.3-4.24-5.3-5.53-.62-.4-2.3-1.04-2.46-1.6 0-.4 0-.8.16-1.2l1.6-11.46 1.4-10.17c.37-3.05-1.1-5.13-3.62-6.9-5.13-3.6-11.88-5.04-17.94-6-7.97-1.28-14.95-1.52-23-.72-7.28.48-13.34 1.92-20.08 4.8-3.38 1.6-7.9 4.1-7.3 8.42 1.55 12.98 3.46 25.95 5.23 38.93.75 5.93 1.6 11.86 2.36 17.8.3 2.47 1.7 4.4 4 5.36 4.9 2.63 11.03 3.43 16.63 3.9 7.73.73 14.32.5 22-.95 4.6-.8 13.18-2.24 13.95-8 .9-7.14 1.9-14.27 2.83-21.4l.38-2.16c2.6.63 10.05 2 9.13-3.14zm-40.65-40.86c9.66 0 20.63 1.13 29.22 5.85 1.38.72 4.44 2.33 3.52 4.33-.93 1.92-3.84 2.88-5.6 3.6-2.6.96-5 1.6-7.75 2.17-11.96 2.4-22.54 2.64-34.65.72-5.45-.56-9.97-1.93-14.88-4.33-1.15-.72-3.06-1.84-2.53-3.44.38-.88 1-1.53 1.83-2 3.76-2.4 7.2-3.85 11.58-4.65 6.6-1.6 12.43-2.33 19.25-2.25zm25.15 67.46c-.3 1.84-3.37 2.8-4.83 3.28-3.22 1.13-6.06 1.77-9.43 2.17-7.44.97-13.88.97-21.4 0-4.67-.4-8.58-1.44-12.8-3.52-1.14-.48-1.83-1.52-1.9-2.72-1.62-12.74-3.38-25.4-5.15-38.06l-1.85-13.77c3.84 2.08 7.36 3.36 11.66 4.08 4.68.97 8.6 1.45 13.35 1.77 9.2.64 17.1.24 26.22-1.44 4.83-.72 8.82-2.08 13.1-4.4l-3.37 25.07c-8.58-2.8-15.64-5.6-23.7-9.53-.37-.16-.68-.32-.98-.48-.46-.34-.3-.17-.54-.66-.38-.96-.46-1.6-1.3-2.4-.77-.56-1.6-.8-2.53-.72-2 .08-3.53 1.84-3.38 3.85.16 1.92 1.92 3.44 3.9 3.28.55-.08 1-.24 1.62-.48.6-.16.6-.16 1.22.16 8.2 4 15.33 6.97 24 9.85 1.23.4 1.23 0 1.23 1.05-.08.8-.16 1.52-.3 2.32l-1 7.6zm-24.7-37.9c0 .5-.6.4-.75.17-.23-.33.76-.73.76-.16zm31.52 11.22l.47-3.52c1.6.96 4.28 2.32 5.04 4.08-1.6.64-4.06-.16-5.5-.56z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#i" transform="matrix(1,0,0,1,690,1391.3019420000005) translate(43.17901234567901 17.77777777777778)"/><use xlink:href="#j" transform="matrix(1,0,0,1,690,1391.3019420000005) translate(76.51234567901236 17.77777777777778)"/><use xlink:href="#H" transform="matrix(1,0,0,1,690,1391.3019420000005) translate(90.03086419753086 17.77777777777778)"/><use xlink:href="#I" transform="matrix(1,0,0,1,690,1391.3019420000005) translate(22.129629629629633 44.44444444444444)"/><use xlink:href="#J" transform="matrix(1,0,0,1,690,1391.3019420000005) translate(151.69753086419752 44.44444444444444)"/><use xlink:href="#K" transform="matrix(1,0,0,1,690,1391.3019420000005) translate(49.32098765432099 71.11111111111111)"/><path d="M156.02 712.66l1 .23.93.38.87.54.78.66.66.78.53.87.38.94.24 1 .08 1v597.2l.07.9.2.83.33.8.45.73.56.66.67.55.73.45.8.33.84.2.88.07h109.65v1h-109.7l-1-.08-.98-.24-.95-.38-.87-.54-.78-.66-.66-.78-.53-.87-.38-.94-.24-.98-.08-1V719.1l-.07-.88-.2-.84-.33-.8-.45-.73-.56-.66-.67-.57-.73-.45-.8-.33-.84-.2-.88-.07H140.5v-1h14.52zM719.5 1321.8v1h-53.87v-1z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M140.5 713.58h-.64l.14-.5v-.5h.5z" fill="#3a414a"/><path d="M140.54 713.6h-.7l.13-.53v-.52h.57zm-.5-1v.48l-.14.47h.6v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M720 1322.8h-.5v-1h.5z" fill="#3a414a"/><path d="M720.02 1322.83h-.56v-1.05h.56zm-.5-1v.95h.46v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><use xlink:href="#L" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(0.0049999999999954525 12.58666666666667)"/><use xlink:href="#M" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(39.29462962962963 12.58666666666667)"/><use xlink:href="#N" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(66.34722222222223 12.58666666666667)"/><use xlink:href="#O" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(163.15092592592595 12.58666666666667)"/><use xlink:href="#P" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(191.12129629629632 12.58666666666667)"/><use xlink:href="#Q" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(265.19907407407413 12.58666666666667)"/><use xlink:href="#R" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(297.45240740740746 12.58666666666667)"/><use xlink:href="#S" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(0.6605555555555611 31.466666666666672)"/><use xlink:href="#T" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(60.88425925925928 31.466666666666672)"/><use xlink:href="#U" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(80.02648148148151 31.466666666666672)"/><use xlink:href="#V" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(107.90944444444447 31.466666666666672)"/><use xlink:href="#W" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(157.90648148148153 31.466666666666672)"/><use xlink:href="#X" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(193.65611111111116 31.466666666666672)"/><use xlink:href="#Y" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(268.7827777777778 31.466666666666672)"/><use xlink:href="#Z" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(287.0946296296297 31.466666666666672)"/><use xlink:href="#aa" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(309.7768518518519 31.466666666666672)"/><use xlink:href="#ab" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(333.37685185185194 31.466666666666672)"/><use xlink:href="#ac" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(32.84833333333336 50.34666666666668)"/><use xlink:href="#ad" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(138.2616666666667 50.34666666666668)"/><use xlink:href="#ae" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(155.74314814814818 50.34666666666668)"/><use xlink:href="#af" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(229.0342592592593 50.34666666666668)"/><use xlink:href="#ag" transform="matrix(1,0,0,1,276.6665981587564,1293.9819420000006) translate(292.5794444444445 50.34666666666668)"/><path d="M887.66 1322.8h-31.28v-1h31.28zm276.02 0h-31.28v-1h31.28z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M855.88 1326.94l-14.26-4.64 14.26-4.63z" fill="#3a414a"/><path d="M856.38 1327.63L840 1322.3l16.38-5.32zm-13.14-5.33l12.14 3.95v-7.9z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1178.45 1322.3l-14.27 4.64v-9.27z" fill="#3a414a"/><path d="M1180.07 1322.3l-16.4 5.33v-10.65zm-15.4 3.95l12.16-3.95-12.15-3.94z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><use xlink:href="#ah" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(9.882037037037051 12.58666666666667)"/><use xlink:href="#ai" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(36.060555555555574 12.58666666666667)"/><use xlink:href="#aj" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(76.22425925925928 12.58666666666667)"/><use xlink:href="#ak" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(103.27685185185187 12.58666666666667)"/><use xlink:href="#al" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(159.04277777777781 12.58666666666667)"/><use xlink:href="#am" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(179.10277777777782 12.58666666666667)"/><use xlink:href="#an" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(2.8457407407407516 31.466666666666672)"/><use xlink:href="#ao" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(35.099074074074096 31.466666666666672)"/><use xlink:href="#ap" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(58.699074074074105 31.466666666666672)"/><use xlink:href="#aq" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(105.81166666666671 31.466666666666672)"/><use xlink:href="#ar" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(168.61388888888894 31.466666666666672)"/><use xlink:href="#as" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(181.72500000000005 31.466666666666672)"/><use xlink:href="#at" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(0.0049999999999954525 50.34666666666668)"/><use xlink:href="#au" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(33.08870370370371 50.34666666666668)"/><use xlink:href="#av" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(71.46055555555557 50.34666666666668)"/><use xlink:href="#aw" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(134.87462962962965 50.34666666666668)"/><use xlink:href="#U" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(194.1805555555556 50.34666666666668)"/><use xlink:href="#ax" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(222.06351851851858 50.34666666666668)"/><use xlink:href="#ay" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(12.37314814814816 69.22666666666667)"/><use xlink:href="#az" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(31.515370370370388 69.22666666666667)"/><use xlink:href="#aA" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(80.41981481481484 69.22666666666667)"/><use xlink:href="#aB" transform="matrix(1,0,0,1,887.6635851296296,1284.5419420000005) translate(105.68055555555559 69.22666666666667)"/><path d="M1180.07 1262.3h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M1276.87 1362.3h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32h-22.02v14.4h11.2c.65 0 1.16.32 1.48.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M1224.02 1362.3h-20.78c-.57 0-1.06-.3-1.38-.73-.32-.53-.32-1.12-.07-1.6l21.76-45.46c.25-.58.82-.92 1.42-.92.64 0 1.17.34 1.45.88l10.4 21.44c.26.43.26.92 0 1.4l-11.36 23.98c-.2.63-.77 1.02-1.45 1.02zm-18.23-3.2h17.23l10.6-22.38-8.62-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#aC" transform="matrix(1,0,0,1,1150.067911,1391.3019420000005) translate(4.907407407407419 17.77777777777778)"/><use xlink:href="#aD" transform="matrix(1,0,0,1,1150.067911,1391.3019420000005) translate(92.43827160493828 17.77777777777778)"/><use xlink:href="#j" transform="matrix(1,0,0,1,1150.067911,1391.3019420000005) translate(22.530864197530875 44.44444444444444)"/><use xlink:href="#aE" transform="matrix(1,0,0,1,1150.067911,1391.3019420000005) translate(36.049382716049394 44.44444444444444)"/><use xlink:href="#aF" transform="matrix(1,0,0,1,1150.067911,1391.3019420000005) translate(121.85185185185185 44.44444444444444)"/><use xlink:href="#aG" transform="matrix(1,0,0,1,1150.067911,1391.3019420000005) translate(48.67283950617284 71.11111111111111)"/><path d="M1357.56 1322.8h-41.1v-1h41.1zm241.94 0h-17v-1h17z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1315.95 1326.94l-14.26-4.64 14.25-4.63z" fill="#3a414a"/><path d="M1316.45 1327.63l-16.38-5.33 16.38-5.32zm-13.15-5.33l12.15 3.95v-7.9z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1600 1322.8h-.5v-1h.5z" fill="#3a414a"/><path d="M1600.03 1322.83h-.57v-1.05h.57zm-.52-1v.95h.47v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><use xlink:href="#aH" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(4.025740740740744 12.58666666666667)"/><use xlink:href="#aI" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(65.03611111111113 12.58666666666667)"/><use xlink:href="#aJ" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(128.4501851851852 12.58666666666667)"/><use xlink:href="#aK" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(0.0049999999999954525 31.466666666666672)"/><use xlink:href="#aL" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(107.25388888888891 31.466666666666672)"/><use xlink:href="#aM" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(167.3901851851852 31.466666666666672)"/><use xlink:href="#aN" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(206.63611111111115 31.466666666666672)"/><use xlink:href="#aO" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(30.903518518518524 50.34666666666668)"/><use xlink:href="#aP" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(54.50351851851853 50.34666666666668)"/><use xlink:href="#aQ" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(109.4390740740741 50.34666666666668)"/><use xlink:href="#aR" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(127.75092592592596 50.34666666666668)"/><use xlink:href="#aS" transform="matrix(1,0,0,1,1357.5579466185186,1293.9819420000006) translate(157.38203703703707 50.34666666666668)"/><path d="M1600 1262.3h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3f8624"/><path d="M1698.3 1326.36c-.47-2.48-3.3-4.24-5.3-5.53-.62-.4-2.3-1.04-2.45-1.6 0-.4 0-.8.15-1.2l1.6-11.46 1.4-10.17c.37-3.05-1.1-5.13-3.62-6.9-5.13-3.6-11.88-5.04-17.94-6-7.97-1.28-14.95-1.52-23-.72-7.28.48-13.34 1.92-20.08 4.8-3.38 1.6-7.9 4.1-7.3 8.42 1.55 12.98 3.46 25.95 5.23 38.93.75 5.93 1.6 11.86 2.36 17.8.3 2.47 1.7 4.4 4 5.36 4.9 2.63 11.03 3.43 16.63 3.9 7.73.73 14.32.5 22-.95 4.6-.8 13.18-2.24 13.94-8 .92-7.14 1.92-14.27 2.84-21.4l.38-2.16c2.6.63 10.05 2 9.13-3.14zm-40.65-40.86c9.66 0 20.63 1.13 29.2 5.85 1.4.72 4.46 2.33 3.54 4.33-.93 1.92-3.84 2.88-5.6 3.6-2.6.96-5 1.6-7.75 2.17-11.96 2.4-22.54 2.64-34.65.72-5.45-.56-9.97-1.93-14.88-4.33-1.15-.72-3.06-1.84-2.53-3.44.38-.88 1-1.53 1.83-2 3.76-2.4 7.2-3.85 11.58-4.65 6.6-1.6 12.43-2.33 19.25-2.25zm25.15 67.46c-.3 1.84-3.37 2.8-4.83 3.28-3.22 1.13-6.06 1.77-9.43 2.17-7.44.97-13.88.97-21.4 0-4.67-.4-8.58-1.44-12.8-3.52-1.14-.48-1.83-1.52-1.9-2.72-1.62-12.74-3.38-25.4-5.15-38.06l-1.85-13.77c3.84 2.08 7.36 3.36 11.66 4.08 4.68.97 8.6 1.45 13.35 1.77 9.2.64 17.1.24 26.22-1.44 4.83-.72 8.8-2.08 13.1-4.4l-3.37 25.07c-8.58-2.8-15.64-5.6-23.7-9.53-.37-.16-.68-.32-.98-.48-.46-.34-.3-.17-.54-.66-.38-.96-.46-1.6-1.3-2.4-.77-.56-1.6-.8-2.53-.72-2 .08-3.53 1.84-3.38 3.85.16 1.92 1.92 3.44 3.9 3.28.55-.08 1-.24 1.62-.48.6-.16.6-.16 1.22.16 8.2 4 15.33 6.97 24 9.85 1.22.4 1.22 0 1.22 1.05-.07.8-.15 1.52-.3 2.32l-1 7.6zm-24.7-37.9c0 .5-.6.4-.75.17-.23-.33.76-.73.76-.16zm31.53 11.22l.45-3.52c1.62.96 4.3 2.32 5.07 4.08-1.62.64-4.07-.16-5.53-.56z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#i" transform="matrix(1,0,0,1,1570,1391.3019420000005) translate(26.759259259259267 17.77777777777778)"/><use xlink:href="#j" transform="matrix(1,0,0,1,1570,1391.3019420000005) translate(60.0925925925926 17.77777777777778)"/><use xlink:href="#aT" transform="matrix(1,0,0,1,1570,1391.3019420000005) translate(73.61111111111111 17.77777777777778)"/><use xlink:href="#aU" transform="matrix(1,0,0,1,1570,1391.3019420000005) translate(30.061728395061728 44.44444444444444)"/><use xlink:href="#aV" transform="matrix(1,0,0,1,1570,1391.3019420000005) translate(38.2716049382716 71.11111111111111)"/><path d="M720 1656.15h120v120H720v-120z" stroke="#fff" stroke-opacity="0" fill="#693cc5"/><path d="M797.6 1754.57c-.35 0-.64-.16-.93-.3-.43-.32-.67-.78-.67-1.32v-73.6c0-.55.3-1.1.77-1.4.48-.3 1.08-.3 1.6-.07l20.8 10.22c.56.23.9.77.9 1.38v56.56c.02.77-.4 1.38-1.1 1.6l-20.8 6.93h-.56zm1.63-72.62v68.77l17.6-5.84v-54.4zM762.4 1754.57h-.52l-20.8-6.92c-.67-.23-1.1-.92-1.08-1.6v-56.57c0-.6.33-1.15.9-1.38l20.8-10.22c.52-.23 1.1-.23 1.6.07.48.3.75.85.75 1.4v73.6c0 .54-.24 1-.67 1.3-.3.24-.6.32-1 .32zm-19.2-9.6l17.6 5.83v-68.85l-17.6 8.6z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M796 1700.15h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zm-9.6 0H772v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zM796 1735.35h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zm-9.6 0H772v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zM772.98 1721.65l-6.02-5.13c-.67-.57-.75-1.6-.18-2.26.06-.07.1-.12.18-.18l6-5.13 2.08 2.42-4.58 3.98 4.58 3.9zM787.04 1721.65l-2.08-2.43 4.57-3.87-4.6-3.9 2.1-2.5 6 5.12c.68.57.76 1.6.2 2.26l-.2.16z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M775.3 1725.02l6.35-18.8 3.03 1.03-6.35 18.8-3.04-1.03z" stroke="#fff" stroke-opacity="0" stroke-width=".32" fill="#fff"/><use xlink:href="#aW" transform="matrix(1,0,0,1,690,1785.1468180000006) translate(25.21604938271605 17.77777777777778)"/><use xlink:href="#aX" transform="matrix(1,0,0,1,690,1785.1468180000006) translate(67.19135802469137 17.77777777777778)"/><path d="M1600 1656.15h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3b48cc"/><path d="M1680.4 1720.93l-10.6 10.55c2-.56 3.65-1.2 5.5-2.24 1.1.64 1.68 1.68 1.9 2.88 0 2.96-6.2 6.15-15.4 7.43-3.05.4-5.55.56-8.6.56h-1.58c-12.95-.23-22.42-4.3-22.42-7.98.17-1.2.82-2.16 1.9-2.88 5.02 2.8 13.18 4.48 22.1 4.48h.17l.92-3.2h-1.1c-8.8 0-16.98-1.76-21.28-4.48-1.74-1.12-2.72-2.4-2.72-3.43v-7.43c4.9 3.76 14.64 5.68 24 5.68 1.25 0 2.5 0 3.76-.08l.92-3.2c-1.63.08-3.1.16-4.68.16-13.7 0-24-4.24-24-8 .17-1.27.82-2.23 1.9-2.87 4.42 2.48 11.22 4 18.9 4.4l.1-3.2c-7.56-.4-14.42-2-18.18-4.48-1.74-1.04-2.66-2.32-2.72-3.44v-7.35c4.9 3.75 14.64 5.66 24 5.66h.33l1.74-3.2h-2.07c-13.7 0-24-4.15-24-8 0-3.74 10.3-7.98 24-7.98 4.85 0 8.98.48 13.72 1.6h8.8c-4.83-2.96-13.1-4.8-22.52-4.8-13.17 0-27.2 3.92-27.2 11.2v12.86c.1 1.92.92 3.52 2.44 4.72-1.52 1.28-2.34 2.88-2.45 4.8v12.8c.1 1.98.92 3.58 2.44 4.86-1.52 1.2-2.34 2.8-2.45 4.8V1745.22c.43 7.04 14.2 10.8 27.2 10.8s26.78-3.76 27.2-10.87V1732.03c-.04-1.9-.9-3.6-2.44-4.8 1.53-1.2 2.34-2.87 2.45-4.78zm-3.2 23.98c0 3.76-10.28 8-24 8-13.7 0-24-4.16-24-8v-7.35c4.9 3.68 14.64 5.68 24 5.68s19.1-2 24-5.68z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M1636 1700.18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1636 1722.58c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1636 1744.98c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM1657.2 1738.52c-.3 0-.53-.06-.82-.22-.64-.38-.92-1.15-.72-1.85l8.98-29.95h-9.06c-.88.05-1.6-.65-1.6-1.58 0-.27.04-.55.2-.76l9.58-19.22c.28-.55.8-.88 1.45-.88h20.82c.88-.05 1.6.66 1.64 1.53.04.2 0 .37-.04.6l-4.13 12.24h8.97c.88.05 1.6.76 1.6 1.63 0 .44-.16.77-.44 1.1l-35.2 36.8c-.32.38-.72.55-1.24.55zm1-35.18h8.6c.53 0 .97.22 1.3.6.27.43.4.92.23 1.4l-7.7 25.6 28.03-29.23h-7.46c-.88 0-1.64-.65-1.68-1.52 0-.22 0-.43.08-.6l4.1-12.3h-17.6z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#aY" transform="matrix(1,0,0,1,1570,1785.1468180000006) translate(33.30246913580247 17.77777777777778)"/><path d="M560.57 1716.15H719.5" stroke="#3a414a" fill="none"/><path d="M560.58 1716.65h-.5v-1h.5zM720 1716.65h-.5v-1h.5z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M440.07 1656.15h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d6242d"/><path d="M518.2 1736.5l2.27-2.27 19.13 19.12-2.27 2.27-19.12-19.13zM460.54 1678.8l2.26-2.24 21.2 21.2-2.25 2.27-21.2-21.22zM465.34 1748.62l11.2-11.2 2.26 2.25-11.2 11.2-2.26-2.25zM521.34 1692.62l11.2-11.2 2.26 2.26-11.2 11.2-2.26-2.26z" stroke="#fff" stroke-opacity="0" stroke-width="1.41" fill="#fff"/><path d="M540.07 1714.55v3.2h-3.2c-.3 7.56-2.5 13.9-6.97 20l-2.58-1.9c4-5.53 6-11.28 6.3-18.1h-3.2v-3.2h3.2c-.3-6.83-2.3-12.53-6.3-18.06l2.58-1.95c4.44 6.1 6.64 12.44 6.94 20zM521.67 1686.3l-1.9 2.6c-5.53-4.02-11.28-6.02-18.1-6.3v3.2h-3.2v-3.2c-6.83.28-12.53 2.28-18.06 6.3l-1.93-2.6c6.1-4.42 12.44-6.62 20-6.92v-3.2h3.2v3.2c7.56.3 13.9 2.5 20 6.92zM521.67 1746c-6.1 4.42-12.44 6.62-20 6.9v3.2l-3.2.02v-3.2c-7.56-.3-13.9-2.5-20-6.93l1.9-2.6c5.53 4 11.27 6 18.1 6.3v-3.2h3.2v3.2c6.82-.3 12.52-2.3 18.05-6.3zM466.5 1717.74c.3 6.83 2.3 12.53 6.32 18.06l-2.6 1.95c-4.42-6.1-6.62-12.44-6.92-20h-3.2v-3.2h3.2c.3-7.56 2.5-13.9 6.93-20l2.6 1.9c-4.03 5.53-6.03 11.27-6.32 18.1h3.22v3.2z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M514.5 1706.04c-.44-.26-.97-.26-1.47 0-.5.25-.8.72-.87 1.28-.1 1.02-.27 1.9-.5 2.86-.8-8.13-5.4-14.63-12.8-18.1-2.28-1.75-4.56-2.72-7.37-3.24-.58-.05-1.1.1-1.5.57-.56.67-.48 1.7.2 2.26 3.5 3.43 4.86 8.03 3.8 12.8-1.86-2.47-4.82-5.38-8.28-5.38-.57 0-1.03.25-1.33.72-.32.4-.4.97-.2 1.48.95 2.35 2.77 9.47.15 13.6l-.46.78c-3.65 6.65-1.75 14.84 4.44 19.24 3.3 2.2 6.3 3.74 10.07 5.02.2.05.4.1.58.1h.34c2.13-.2 16.6-2.05 19.56-13.56 4.07-15.6-4-20.22-4.37-20.42zm-17.88 29.78c-2.35-1.02-4.3-2.04-6.42-3.48-4.86-3.43-6.34-9.82-3.5-15.04l.38-.67c2.7-4.25 1.94-9.98 1.07-13.46 2.2 1.7 3.76 3.48 5.1 5.94.18.42.48.67.9.83.84.3 1.75-.16 2.05-.98 2.06-5.1 1.87-10.23-.53-15.14 2.13 1.24 3.6 2.82 4.67 5.07 2.28 4.7 1.75 11.2-1.32 16.8-3.27 6.5-4.07 13.1-2.4 20.15zm19.2-10.13c-2.1 8.18-12.1 10.48-15.7 11.04-.84-3.12-2.55-11.82 1.7-19.6 3.12-5.42 3.92-11.1 2.36-17.2 2.9 3.4 5.32 8.76 4.03 16.8-.07.45.05.9.35 1.27.57.68 1.56.78 2.24.22 2.2-2.1 3.45-4.5 4.02-7.47 1.52 2.2 3.15 6.7 1.02 14.94z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#r" transform="matrix(1,0,0,1,410.067911,1785.1468180000006) translate(37.808641975308646 17.77777777777778)"/><use xlink:href="#s" transform="matrix(1,0,0,1,410.067911,1785.1468180000006) translate(93.73456790123456 17.77777777777778)"/><path d="M155.02 712.66l1 .23.93.38.87.54.78.66.66.78.53.87.38.94.24 1 .08 1v991.06l.07.88.2.85.33.8.45.73.56.65.67.57.73.45.8.33.84.2.88.07h93.55v1h-93.6l-1-.08-.98-.24-.95-.4-.87-.52-.78-.66-.66-.77-.53-.87-.38-.94-.24-1-.08-1V719.1l-.07-.88-.2-.84-.33-.8-.45-.73-.56-.66-.67-.57-.73-.45-.8-.33-.84-.2-.88-.07H140.5v-1h13.52zm284.55 1003v1h-29.14v-1z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M140.5 713.58h-.64l.14-.5v-.5h.5z" fill="#3a414a"/><path d="M140.54 713.6h-.7l.13-.53v-.52h.57zm-.5-1v.48l-.14.47h.6v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M440.07 1716.65h-.5v-1h.5z" fill="#3a414a"/><path d="M440.1 1716.67h-.57v-1.05h.56zm-.52-1v.95h.46v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><g><use xlink:href="#aZ" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(0.0049999999999954525 14.222222222222223)"/><use xlink:href="#ba" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(78.91858024691359 14.222222222222223)"/><use xlink:href="#bb" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(25.65932098765431 35.55555555555556)"/><use xlink:href="#bc" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(70.10376543209875 35.55555555555556)"/><use xlink:href="#bd" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(1.6346296296296146 56.88888888888889)"/><use xlink:href="#be" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(73.4370987654321 56.88888888888889)"/><use xlink:href="#bf" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(117.7333950617284 56.88888888888889)"/><use xlink:href="#bg" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(42.89388888888889 78.22222222222223)"/><use xlink:href="#bh" transform="matrix(1,0,0,1,259.5679012345679,1673.4801513333339) translate(77.41240740740741 78.22222222222223)"/></g><path d="M2040 1262.3h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M2136.8 1362.3h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32h-22v14.4h11.2c.63 0 1.14.32 1.46.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M2083.96 1362.3h-20.8c-.55 0-1.05-.3-1.37-.73-.33-.53-.33-1.12-.08-1.6l21.78-45.46c.24-.58.8-.92 1.4-.92.65 0 1.18.34 1.46.88l10.4 21.44c.26.43.26.92 0 1.4l-11.35 23.98c-.2.63-.77 1.02-1.44 1.02zm-18.24-3.2h17.24l10.6-22.38-8.6-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><g><use xlink:href="#aC" transform="matrix(1,0,0,1,2010,1391.3019420000005) translate(4.907407407407419 17.77777777777778)"/><use xlink:href="#aD" transform="matrix(1,0,0,1,2010,1391.3019420000005) translate(92.43827160493828 17.77777777777778)"/><use xlink:href="#j" transform="matrix(1,0,0,1,2010,1391.3019420000005) translate(22.530864197530875 44.44444444444444)"/><use xlink:href="#aE" transform="matrix(1,0,0,1,2010,1391.3019420000005) translate(36.049382716049394 44.44444444444444)"/><use xlink:href="#aF" transform="matrix(1,0,0,1,2010,1391.3019420000005) translate(121.85185185185185 44.44444444444444)"/><use xlink:href="#aG" transform="matrix(1,0,0,1,2010,1391.3019420000005) translate(48.67283950617284 71.11111111111111)"/></g><path d="M1775.07 1322.8h-38.7v-1h38.7zm264.43 0h-54.57v-1h54.57z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M2040 1322.8h-.5v-1h.5z" fill="#3a414a"/><path d="M2040.03 1322.83h-.57v-1.05h.57zm-.52-1v.95h.47v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1735.88 1326.94l-14.26-4.64 14.26-4.63z" fill="#3a414a"/><path d="M1736.38 1327.63l-16.38-5.33 16.38-5.32zm-13.14-5.33l12.14 3.95v-7.9z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><g><use xlink:href="#bi" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(5.861296296296317 12.58666666666667)"/><use xlink:href="#bj" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(20.982777777777798 12.58666666666667)"/><use xlink:href="#bk" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(80.33240740740744 12.58666666666667)"/><use xlink:href="#bl" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(146.49981481481484 12.58666666666667)"/><use xlink:href="#bm" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(184.87166666666673 12.58666666666667)"/><use xlink:href="#bn" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(17.705000000000027 31.466666666666672)"/><use xlink:href="#bo" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(30.81611111111114 31.466666666666672)"/><use xlink:href="#bp" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(103.23314814814819 31.466666666666672)"/><use xlink:href="#bq" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(122.37537037037042 31.466666666666672)"/><use xlink:href="#br" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(171.27981481481487 31.466666666666672)"/><use xlink:href="#bs" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(0.0049999999999954525 50.34666666666668)"/><use xlink:href="#bt" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(34.924259259259266 50.34666666666668)"/><use xlink:href="#bu" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(98.33833333333335 50.34666666666668)"/><use xlink:href="#bv" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(181.98722222222227 50.34666666666668)"/><use xlink:href="#bw" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(0.3764814814815054 69.22666666666667)"/><use xlink:href="#bx" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(56.14240740740744 69.22666666666667)"/><use xlink:href="#by" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(84.02537037037041 69.22666666666667)"/><use xlink:href="#bz" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(158.93351851851855 69.22666666666667)"/><use xlink:href="#bA" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(2.6490740740740932 88.10666666666668)"/><use xlink:href="#bB" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(98.3164814814815 88.10666666666668)"/><use xlink:href="#bC" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(168.9416666666667 88.10666666666668)"/><use xlink:href="#bD" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(192.4542592592593 88.10666666666668)"/><use xlink:href="#bE" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(68.31388888888891 106.98666666666668)"/><use xlink:href="#bF" transform="matrix(1,0,0,1,1775.0674074074075,1265.6619420000004) translate(104.93759259259262 106.98666666666668)"/></g><path d="M743.36 939.5h-1v-73.06h1zm96.2-199H748.9l-.88.07-.84.2-.8.33-.73.45-.66.56-.56.67-.44.73-.33.8-.2.84-.07.88v56.42h-1v-56.46l.08-1 .24-1 .4-.93.52-.87.66-.78.78-.66.87-.53.95-.38 1-.24 1-.08h90.72z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M840.07 740.5h-.52v-1h.52z" fill="#3a414a"/><path d="M840.1 740.52h-.57v-1.04h.56zm-.52-1v.96h.46v-.96z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M743.36 940h-1v-.5h1z" fill="#3a414a"/><path d="M743.4 940.02h-1.06v-.56h1.05zm-1-.5v.46h.94v-.47z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><g><use xlink:href="#bG" transform="matrix(1,0,0,1,675.874220328402,802.4368896830468) translate(0.0049999999999954525 14.222222222222223)"/><use xlink:href="#bH" transform="matrix(1,0,0,1,675.874220328402,802.4368896830468) translate(70.91858024691359 14.222222222222223)"/><use xlink:href="#bI" transform="matrix(1,0,0,1,675.874220328402,802.4368896830468) translate(10.3012962962963 35.55555555555556)"/><use xlink:href="#bJ" transform="matrix(1,0,0,1,675.874220328402,802.4368896830468) translate(61.609938271604946 35.55555555555556)"/><use xlink:href="#bK" transform="matrix(1,0,0,1,675.874220328402,802.4368896830468) translate(36.99265432098767 56.88888888888889)"/><use xlink:href="#bL" transform="matrix(1,0,0,1,675.874220328402,802.4368896830468) translate(58.6222839506173 56.88888888888889)"/></g><path d="M840.07 680h120v120h-120V680z" stroke="#fff" stroke-opacity="0" fill="#d6242d"/><path d="M892.07 757.6h30.4v3.2h-30.4v-3.2zM877.67 757.6h8v3.2h-8v-3.2zM892.07 764h19.2v3.2h-19.2V764zM877.67 764h8v3.2h-8V764zM861.67 712.8h76.8v3.2h-76.8v-3.2z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M938.47 776.8h-8v-3.16h6.72v-67.2h-73.93v67.2h51.2v3.16h-52.8c-.88 0-1.6-.74-1.6-1.62v-70.36c0-.9.72-1.62 1.6-1.62h76.72c.87-.08 1.6.6 1.67 1.47v70.51c0 .44-.16.8-.48 1.18-.33.3-.65.44-1.13.44z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M890.82 751.33c-.37 0-.63-.1-.93-.3-.54-.37-.77-.97-.64-1.6l1.6-9.45-6.92-6.73c-.6-.63-.56-1.65.07-2.25.24-.25.54-.38.87-.44l9.5-1.4 4.26-8.62c.26-.54.8-.9 1.42-.9.64 0 1.17.33 1.43.9l4.26 8.62 9.6 1.37c.9.12 1.5.92 1.4 1.8-.07.38-.24.67-.5.92l-6.88 6.73 1.6 9.48c.13.63-.1 1.24-.64 1.58-.5.38-1.13.42-1.66.13l-8.54-4.47-8.5 4.47c-.27.13-.5.2-.8.16zm-2.3-18.08l5.2 5.04c.36.38.52.85.45 1.4l-1.22 7.13 6.4-3.37c.47-.25 1-.25 1.47 0l6.4 3.33-1.2-7.1c-.08-.55.05-1.06.45-1.44l5.18-5.04-7.14-1c-.56-.08-1-.4-1.22-.9l-3.2-6.4-3.18 6.5c-.27.47-.66.8-1.23.85z" stroke="#fff" stroke-opacity="0" fill="#fff"/><g><use xlink:href="#r" transform="matrix(1,0,0,1,810.0679110000001,809) translate(12.160493827160494 17.77777777777778)"/><use xlink:href="#bM" transform="matrix(1,0,0,1,810.0679110000001,809) translate(68.0864197530864 17.77777777777778)"/><use xlink:href="#bN" transform="matrix(1,0,0,1,810.0679110000001,809) translate(46.23456790123456 44.44444444444444)"/></g><path d="M1200.07 1636.15h120v120h-120z" stroke="#282c33" fill="#d86613"/><path d="M1180.07 1656.15h120v120h-120z" stroke="#282c33" fill="#d86613"/><path d="M1160.07 1676.15h120v120h-120z" stroke="#282c33" fill="#d86613"/><path d="M1160.07 1676.15h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M1256.87 1776.15h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32h-22.02v14.4h11.2c.65 0 1.16.32 1.48.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M1204.02 1776.15h-20.78c-.57 0-1.06-.3-1.38-.73-.32-.54-.32-1.13-.07-1.6l21.76-45.47c.25-.58.82-.92 1.42-.92.64 0 1.17.34 1.45.87l10.4 21.44c.26.44.26.93 0 1.4l-11.36 23.98c-.2.64-.77 1.03-1.45 1.03zm-18.23-3.22h17.23l10.6-22.36-8.62-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M877.7 1716.65h-37.2v-1h37.2zm265.48 0h-21.32v-1h21.32z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M840.5 1716.65h-.5v-1h.5z" fill="#3a414a"/><path d="M840.54 1716.67h-.56v-1.05h.56zm-.5-1v.95h.45v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1157.95 1716.15l-14.27 4.63v-9.27z" fill="#3a414a"/><path d="M1159.57 1716.15l-16.4 5.32v-10.65zm-15.4 3.94l12.16-3.95-12.15-3.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><g><use xlink:href="#bO" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(10.177839506172859 14.222222222222223)"/><use xlink:href="#bP" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(44.69635802469138 14.222222222222223)"/><use xlink:href="#bQ" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(80.20253086419756 14.222222222222223)"/><use xlink:href="#bR" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(151.1654938271605 14.222222222222223)"/><use xlink:href="#bS" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(165.9803086419753 14.222222222222223)"/><use xlink:href="#bT" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(0.0049999999999954525 35.55555555555556)"/><use xlink:href="#bU" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(74.77043209876544 35.55555555555556)"/><use xlink:href="#bR" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(103.31364197530866 35.55555555555556)"/><use xlink:href="#bV" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(118.12845679012347 35.55555555555556)"/><use xlink:href="#bW" transform="matrix(1,0,0,1,877.7098814259259,1694.8134846666674) translate(169.38771604938273 35.55555555555556)"/></g><path d="M1350.4 1716.65h-29.33v-1h29.34zm249.1 0h-29.34v-1h29.34z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1600 1716.65h-.5v-1h.5z" fill="#3a414a"/><path d="M1600.03 1716.67h-.57v-1.05h.57zm-.52-1v.95h.47v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1321.08 1716.65h-.5v-1h.5z" fill="#3a414a"/><path d="M1321.1 1716.67h-.56v-1.05h.57zm-.5-1v.95h.46v-.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><g><use xlink:href="#bX" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(22.10376543209877 14.222222222222223)"/><use xlink:href="#bY" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(98.00500000000001 14.222222222222223)"/><use xlink:href="#bZ" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(129.60993827160496 14.222222222222223)"/><use xlink:href="#ca" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(37.955617283950616 35.55555555555556)"/><use xlink:href="#cb" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(85.31364197530866 35.55555555555556)"/><use xlink:href="#cc" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(164.07907407407407 35.55555555555556)"/><use xlink:href="#cd" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(0.0049999999999954525 56.88888888888889)"/><use xlink:href="#ce" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(67.01734567901235 56.88888888888889)"/><use xlink:href="#cf" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(111.36302469135802 56.88888888888889)"/><use xlink:href="#cg" transform="matrix(1,0,0,1,1350.4074122901234,1684.1468180000006) translate(142.8691975308642 56.88888888888889)"/></g><path d="M479.64 2124h120v120h-120z" fill="url(#ch)"/><path d="M419.64 2250a6 6 0 0 1 6-6h228a6 6 0 0 1 6 6v48a6 6 0 0 1-6 6h-228a6 6 0 0 1-6-6z" stroke="#000" stroke-opacity="0" fill="#fff" fill-opacity="0"/><g><use xlink:href="#ci" transform="matrix(1,0,0,1,424.6384535898902,2249) translate(47.191358024691354 30.27777777777778)"/></g><path d="M100.5 2177.98l.07.88.2.84.33.8.45.73.56.66.67.55.73.45.8.33.84.2.88.07h357.24v1H105.98l-1-.08-1-.24-.93-.4-.87-.52-.78-.66-.66-.78-.53-.87-.38-.94-.24-.98-.08-1V735.38h1z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M478.02 2184l-14.26 4.64v-9.28z" fill="#3a414a"/><path d="M479.64 2184l-16.38 5.32v-10.64zm-15.38 3.95l12.14-3.95-12.14-3.95z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M104.64 734.88h-9.28l4.64-14.26z" fill="#3a414a"/><path d="M105.32 735.38H94.68L100 719zm-9.27-1h7.9L100 722.24z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M-20 606a6 6 0 0 1 6-6h228a6 6 0 0 1 6 6v48a6 6 0 0 1-6 6H-14a6 6 0 0 1-6-6z" stroke="#000" stroke-opacity="0" fill="#fff" fill-opacity="0"/><g><use xlink:href="#cj" transform="matrix(1,0,0,1,-15,605) translate(86.69753086419753 30.27777777777778)"/></g><path d="M616.02 2184h576.12a6 6 0 0 0 6-6v-365.47" stroke="#3a414a" fill="none"/><path d="M601.26 2184l14.26-4.64v9.28zM1198.14 1797.77l4.64 14.26h-9.27z" stroke="#3a414a" fill="#3a414a"/><path d="M419.64 2290a6 6 0 0 1 6-6h228a6 6 0 0 1 6 6v51.33a6 6 0 0 1-6 6h-228a6 6 0 0 1-6-6z" stroke="#000" stroke-opacity="0" fill="#fff" fill-opacity="0"/><g><use xlink:href="#ck" transform="matrix(1,0,0,1,424.6384535898902,2289) translate(21.388888888888914 19.375)"/><use xlink:href="#cl" transform="matrix(1,0,0,1,424.6384535898902,2289) translate(99.00000000000001 19.375)"/><use xlink:href="#cm" transform="matrix(1,0,0,1,424.6384535898902,2289) translate(182.05555555555554 19.375)"/><use xlink:href="#cn" transform="matrix(1,0,0,1,424.6384535898902,2289) translate(49.58333333333334 43.37499999999999)"/></g><path d="M60 346a6 6 0 0 1 6-6h148a6 6 0 0 1 6 6v88a6 6 0 0 1-6 6H66a6 6 0 0 1-6-6z" stroke="#3a414a" fill="#fff"/><g><use xlink:href="#co" transform="matrix(1,0,0,1,65,345) translate(75 48.00416666666667)"/></g><path d="M70.6 366.75h138.8v46.5H70.6z" fill="url(#cp)"/><path d="M221 374.25h423a6 6 0 0 0 6-6v-92.97a6 6 0 0 1 6-6h183.57" stroke="#3a414a" fill="none"/><path d="M221 374.75h-.5v-1h.5zM840.07 269.78h-.52v-1h.52zM644.9 389.58l1 .24.95.4.87.52.77.66.65.78.54.87.38.94.24.98.07 1V939.5h-1V396.02l-.08-.88-.2-.84-.33-.8-.46-.73-.56-.66-.65-.55-.74-.45-.8-.33-.85-.2-.88-.07H221v-1h422.9z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M221 390.5h-.5v-1h.5z" fill="#3a414a"/><path d="M221.04 390.52h-.56v-1.04h.56zm-.5-1v.96h.45v-.96z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M650.4 940h-1v-.5h1z" fill="#3a414a"/><path d="M650.42 940.02h-1.05v-.56h1.05zm-1-.5v.46h.95v-.47z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M1720.5 1680.54h463.12" stroke="#3a414a" fill="none"/><path d="M1720.5 1681.04h-.5v-1h.5z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M2198.38 1680.54l-14.26 4.63v-9.27z" stroke="#3a414a" fill="#3a414a"/><path d="M1736.38 1740H2094a6 6 0 0 1 6 6v48a6 6 0 0 0 6 6h293.5" stroke="#3a414a" fill="none"/><path d="M1721.62 1740l14.26-4.63v9.27z" stroke="#3a414a" fill="#3a414a"/><path d="M2400 1800.5h-.5v-1h.5z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M2200 1600h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M2296.8 1700h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32h-22v14.4h11.2c.63 0 1.14.32 1.46.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M2243.96 1700h-20.8c-.55 0-1.05-.3-1.37-.73-.33-.54-.33-1.12-.08-1.6l21.78-45.46c.24-.58.8-.92 1.4-.92.65 0 1.18.34 1.46.88l10.4 21.43c.26.43.26.92 0 1.4l-11.35 23.98c-.2.63-.77 1.02-1.44 1.02zm-18.24-3.22h17.24l10.6-22.36-8.6-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><g><use xlink:href="#r" transform="matrix(1,0,0,1,2170,1729) translate(21.944444444444443 17.77777777777778)"/><use xlink:href="#cq" transform="matrix(1,0,0,1,2170,1729) translate(77.87037037037035 17.77777777777778)"/></g><path d="M2400 1740h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M2439.66 1798.24c.14.14.23.27.4.36.23.23.45.4.72.58l.18.14.8.4.5.22h.36l.4.18c.76.27 1.57.58 2.5.9l1.5.4.75.22c4.2 1.03 7.88 1.47 12.23 1.43 6.6.13 12.2-.94 18.23-3.48 2.6-1.22 4.13-3.6 4.17-6.45v-22.96c0-1-.54-1.84-1.43-2.28l-19.9-9.25c-.67-.36-1.43-.36-2.1 0l-19.94 9.25c-.9.44-1.43 1.3-1.43 2.27v23.04c0 1.8.58 3.3 1.75 4.7.1.13.18.22.3.3zm8.15.23l-1.33-.4c-.85-.27-1.57-.54-2.24-.76l-.58-.26-.54-.22c-.17-.1-.35-.18-.53-.27l-.4-.32-.18-.22-.14-.12-.14-.14c-.63-.76-.94-1.56-.94-2.54v-21.1l17.6 8.28v19.56c-3.5-.04-6.44-.44-9.85-1.25zm29.13-1.7c-5.1 2.2-9.8 3.17-15.36 3.22v-19.3l17.6-8.05v20.5c.05 1.6-.8 2.95-2.24 3.62zm-16.93-35.1l17.7 8.26-17.43 7.8-.1-.08-17.2-8z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M2487.62 1784.3l-.83 3.05c7.15 2.13 11.64 5.14 11.64 7.85 0 5.3-15.8 11.2-38.44 11.2-22.63 0-38.44-5.9-38.44-11.2 0-2.7 4.5-5.72 11.65-7.85l-.82-3.06c-9 2.62-13.98 6.52-13.98 10.9 0 9.34 21.47 14.4 41.6 14.4 20.13 0 41.6-5.06 41.6-14.4 0-4.38-5-8.25-13.98-10.9zM2487.54 1814.63l-7.44-3.2c-.6-.3-1.2-.3-1.8 0l-7.6 3.26c-.7.36-1.1 1-1.1 1.75v8.25l-7.1-3.1c-.6-.3-1.2-.3-1.8 0l-7.17 3.1v-8.28c0-.8-.44-1.48-1.14-1.8l-7.5-3.2c-.56-.28-1.2-.28-1.8 0l-7.6 3.27c-.72.36-1.1 1-1.1 1.75v9.74c0 .8.43 1.47 1.2 1.8l7.44 3.2h.16c.27.12.5.17.82.17.27 0 .54-.02.76-.18l7.22-3.1v8.25c0 .8.44 1.46 1.15 1.8l7.44 3.2h.1c.27.13.54.2.87.2.27 0 .54-.08.8-.2l7.62-3.27c.7-.37 1.08-1 1.13-1.8v-8.18l7.07 3.1h.2c.28.12.56.17.88.2.27-.03.5-.1.7-.2l7.67-3.2c.7-.33 1.1-1 1.1-1.75v-9.83c0-.8-.45-1.48-1.2-1.8zm-8.37-.15l4.35 1.88-4.07 1.67-4.24-1.82zm-17.6 10.22l4.34 1.85-4.06 1.6-4.24-1.75zm-17.6-10.22l4.34 1.88-4.07 1.6-4.23-1.75zm-6.42 4.2l4.84 2.02v6.73l-4.85-2.06zm8.04 8.72v-6.4l4.78-1.97v6.4zm9.56 1.46l4.83 2.06v6.67l-4.84-2.07zm7.98 8.76v-6.43l4.84-1.98v6.4zm9.62-18.95l4.78 2.03v6.73l-4.78-2.06zm8 8.76v-6.4l4.82-2v6.4z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><g><use xlink:href="#cr" transform="matrix(1,0,0,1,2370,1869) translate(17.191358024691368 17.77777777777778)"/><use xlink:href="#cs" transform="matrix(1,0,0,1,2370,1869) translate(80.15432098765433 17.77777777777778)"/><use xlink:href="#ct" transform="matrix(1,0,0,1,2370,1869) translate(17.87037037037038 44.44444444444444)"/><use xlink:href="#cu" transform="matrix(1,0,0,1,2370,1869) translate(73.7962962962963 44.44444444444444)"/><use xlink:href="#cv" transform="matrix(1,0,0,1,2370,1869) translate(85.70987654320987 44.44444444444444)"/></g><defs><image width="10" height="10" id="fu" xlink:href="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAARCABZAQoDASIAAhEBAxEB/8QAHQAAAwACAwEBAAAAAAAAAAAAAAgJBgcBBAUDAv/EAFAQAAEDAwIDAwcGCAsFCQAAAAECAwQABQYHERIhMQhBUQkTNmFxdbMUFSIyQnI0N3OBkaGxshgjJDVDUldidIKTFoOSlMEXJTNTVJWi0dL/xAAcAQACAwEBAQEAAAAAAAAAAAAGBwAFCAQBAgP/xAA9EQABAgQDBQUHAwMCBwAAAAABAgMABAURBiExEkFRYXEHE4GRsSNSobLB0fAyNeEUImIkQhUWcpKiwtL/2gAMAwEAAhEDEQA/AKp0UUVIkFFFFSJBRRRUiQUUUVIkFIv5RG63MZXitlE98QDbXZBjBwhou+dI4ynoTsANz0p6KQzyiXp9inudz4yqK8FAGsN34K9DAV2gKKaE5Y70+ohTKcnydd2ua7rmNkXPfVAbixZDcZThLaHCtYKkp6AkciR12G/QUm1N95On0pzT3fE+IumVi0A0Z+/AfMIU2CVFNel7cT8ph6KKKKRUaOgoooqRIKxHV6dMtmleX3G3SnY0qNZJrrLzSilbawyohSSOYIPMGsurCtbPxPZt7gn/AAF10yYBmWwfeHrHLPEiVcI90+hiSLrrjzinnnFOOLUVKWo7lRPUknqa9XD7zdcfyi1XiyXB+FNjS2ltPsrKVJPEO/w7iOhHI149dyz/AM7Qv8S3+8K0Y4kKQUkZWjKaFKQoKSbERZmua4HSuazVGtoKKKKkSCiiipEgoooqRIKKKKkSCiiipEgoooqRIKKK1Rrt2isM0NtSfnI/OV9ltqVBtTKwFr26LcVz823v9ogk89gdjt0Ssq9OuhiXSVKOgEc05OMU9lUxMqCUDUn8+EbXrCr9rXpHjL64t91Ix6K+2SlbSp7alpI7ilJJB9VTf1T7SGqurMp9N7yF6Da3d0ptUBamYyUeCgDu56ysn1bDlWrunSmFI9nylJCpx2x4JH1P28YV9Q7T0pWUyDNxxUbX8B9/CKtxu0roNLc80zqnYQonYecf4B+lQArObFkmPZPE+cMbvtvusbfYuw5KHkA+BKSdj6qjXXo2HI7/AItcUXbGr1Ntc1HJL8R9TS9vDdJG49VdMx2esFP+neIPMAj4Wjklu1CYC/8AUsAp/wASQfjeLK0UkOhXbrnsSI2MazpTIjK2bbvrLezjZ32Hn20jZSfFadiNuaTuSHYhzIlwiszoEpqTGkIDjTzKwtDiCNwpKhyII7xQBVaNN0d3u5lOuhGh6H6awy6NXpKus97KK01ByI6j6jKPtSGeUS9PsU9zufGVT50hnlEvT7FPc7nxlVcYK/eEdFehii7Qf2Jzqn1EKZTfeTp9Kc093xPiLpQab7ydPpTmnu+J8RdMrFn7M/0HzCFNgr9+l+p+Uw9FFFat1+14x7Q7E1XGWpuXfJqVItVu4ubzgH117c0tpO257+g5mkhKyzs48lhhN1KyAjQ05NsyDCpmYVsoSLk/nwjJ8v1W03wGWzAzPNbTaJUhvzrbEqQEuKRvtxcPXbcEb+o+FeB/CT0G/tVx/wD5mpeZhmGRZ5kc3KsquTk65T3C466s8h4JSOiUgcgkcgBXjUzWOz6X7tPfOq2t9rWvyuIUUx2nzXeq/p2E7F8r3vbnY2iueLay6V5tdE2TFM9s1zuC0KWmMxJBcUkDckJ6nYc+VfnWz8T2be4J/wABdKD2ItBL7dskh6zXovQbRa1uC2I22VOeKShSuf8ARJCiN/tK5Doab7Wz8T2be4J/wF0H1KnytMqqJaVcKwCm99xvpl4ekHdJqc5V6O5NzjQQVBWzbem2Rz45+GcSOr7wn0xZseUpJUGXUOEDqQCDXwop6EXyjOUVRtfai0Fuluj3BOpdojefbSssyXC062SOaVJUAQR0rt/wk9Bv7Vcf/wCZqUdFAJ7PpEnJ1fw+0MtPadUAACyj/wAvvFhsP1AwnP4z8zCsot95ZirDb6ojwX5tRG4Ch1G46VkFI95OdSvnzN0cR4TEgnbu343aeGl5Xaaikz65RtRITbM65gH6w0cOVZdbprc64kJKr5DTIkfSCisH1a1iwvRnHDkGXTSFOEoiQmdlSJTm31UJ36DvUeQ7zzAM/NWu1pqvqlIcjMXRzHLKd0ot1teUgqSf/NdGynDty7k/3RXXRcNTla/vb/tb94/Qb/TnHHX8WyFA9m6dpz3Rr4nd68oobkurml+HPqiZPn1it0hB2Ww9NbDqT60A8Q/RWON9p/QFx0Mp1SsoUe9S1pT/AMRTt+upV9SSep51xRq32eygTZx5RPIAfDP1hfOdqE6VXbYQBzJJ88vSLEYznmFZmhS8Tyy03fgTxKTDmNuqSPEpSdx+cV+My1CwnT2IxOzbJ4FmZkrLbCpToSXVAbkJHU7AjfbpvUgYU6bbJjVwtsx+JKYVxtPsOFtxtXilQ5g+ysmzfVTOtR4Fng5tfnrt8xIebhvPgF0IcKCoKV9v6idiefiTy25VdnoD6bPXb35WUMt2oOfSOxPagTLq2mLO7s7pOed9CMusUq/hOaBf2p2T/VV/9VlmG6i4NqHHkSsJym33luKoIfMV0KLRPTiHUb7Hbcc9qj5Td+TqWsZfmLYUeE22MSN+RIdVsf1n9NfhW8GStNkHJtpxRKbZG1tQNwHGOrD+PZyrVFuSeaSErvmL30J3k8IeuiiilzDTjX+uWrds0X09m5hNaEiVuItvi8W3yiUsHgSf7oAKld/Ck7c9qlflWVX/ADbIJuU5PcXJ1yuDpdfeX3nuAA5BIGwAHIAACt/du3UReU6sIw2K+swcTjpZUnf6CpTyUuOKHjsktp9RSqlrp04Oo6KfIpmVD2jgvfgncPqf4hAY8rrlTqKpRB9k0bAcVDU+eQ5dTBXdtNlvN/mJt1itE25S1/VYiR1vOK9iUAk1tzszdnidrnkrr1xddh4xaFoNxkoGynlHmGGj04iOZP2QQdtyAaQYfg2I4BZ2bFh+Pw7XDZQEBLDYCl7faWr6y1HvUoknxr2vYtYozn9O2nbc3i9gOpzz5R5hrBMzXm/6l1Xdtbja5VxsMsufHcYk5eNMNSsehquN/wBPcltsRPNT8u1PtNp9qlJAFYzVpSlKgUqAIPIgjrS4dpLsk41qNaZWU4DbI1qyyOguebjoDbFyCQT5taRslLh7nO88lbjYpq6Zj1qYdDU43sA/7gbgdRw5xcVfs2elWC9IOd4R/tIsT0N8zy+O6J002XYn7QkvHr5G0gyuapy0XR3zdndcWP5JJUTszufsOE7AdyyNh9I7KjIjvxH3IsplbLzK1NuNrSUqQoHYpIPMEHltXDLzsd5uQw4pt1pQWhaTspKgdwQe4g0Y1SnM1aVVLO6HQ8DuI/OUAdHqr9FnETbBzGo4jeD1+Bzi0dIZ5RL0+xT3O58ZVN1ojn6NT9K8dzTc+fmxAiWD1Elslt783GhRHqIpRfKJen2Ke53PjKpU4RZXLV0MuCyk7YPUAiHRjl9E1hwvtm6VbBHQkEQplN95On0pzT3fE+IulBrYei+uGW6G36XfMWjQJQuDAjyo81tSm3EBW4IKVJIUDvsd+87g00K9JO1GnOyzP6lAWvyIP0hP4bqDNLqjM3MX2Ek3tnqCPrFI9atZ8X0TxB3I78vz8t7iat1vbWA7Le25Ab9EDcFSvsjxJAMvtRNQ8n1RyuZmOWzvlE2WrZKE7hphoE8LTaSTwoTvyHtJJJJPa1R1Ty7V7KXcszCYhyQpIaYYZBSxGaHRDaSTsO87kkk7kmsQquw3hxuiNbbmbqtTw5Dlx4+UWmLMVO4gf7tq6WE6DifePPgNw53grfPZb7N03We/fP2QNPR8Qtbo+Uuj6JmOjY/J0Hw2I41DoDsNiRtj/Z30DvmuOWJipDkTHretK7rP2I2TuP4ls7EF1Q6dwHM9wNOsaxuyYfYYOM45b2oVttzKWI7DY5JSPHxJ6knmSSTXBizEwpqDJyp9qdT7o+53cNeEWeCsImrOCenB7FJyHvkf+o38dOMdu3W6BaIEe12uGzEhxGksR47KAhtptI2SlKRyAAAAArEtbPxPZt7gn/AXWa1hWtn4ns29wT/gLpUSZJmmyfeHrDpngEyjgGmyfQxI6iiuzbUpXcYqFpBSp5AIPeOIVo0mwvGUxmYyW26QasXiCzc7TpllUyHJQHGZDFnkLbcQeikqCNiD4iuz/wBhutH9kmY/+xyf/wAVWxlttpltppCUIQkJSlI2AAHIAV+6Vh7Qpi+TKbdTDlT2XS1s5hV/+kfeFE7B2mWeYVJyy8ZhitysjE5qLHjJnx1MOOKQpwqIQsBWw4hz2258qZ3OszsunuI3TNMheLcC1Ry+5sRxLPRKE78uJSilIHioV71JX5QvUUhePaWQnnB9E3m4AHZKgSpthPr5peJH3DVEz3mLKyC4Nnbte25KR9h5mCR/usFUBSWlbRQDs33qUcvAE3twEK9qvqjkur2ZS8vyWQoqdUURYwVu3EjgkoaQPAb8z1J3J61h1FZ7otpDf9as3j4jZV/JmQkvzpqkFSIrAIBWRy3JJASncbk9w3Ic5MvTpe5shtA8ABCCSmZqs1YXW64fEk/nhGERIcufIREgxXpL7p4UNMoK1rPgAOZNZPK0i1XhRFT5mmOWMRkJ41OuWaSlKU+JJRyFVE0y0dwDSSzN2jDrEywsD+OmuJC5UhXepbhG5+6NkjuArNaXsz2hWctLM3TxJzPgNPjDPlOy/aaBmpiy+CRcDxJz8hEWlJUklKgQRyINcVUfXLs04JrLaHnVQI9qyRtCjEu0doJVx9yXgnbzqCfHmOfCRz3mdlmLXvCckuOKZHCXEuVsfVHkNK7iOhB70kEKBHIggjrRbQsQy9dQe7GytOqT6g7x+cICsR4XmsOODvDtNq0UPQjcfXdvjyabrydfplmHuyP8U0otN15Ov0yzD3ZH+Ka+cV/sz/QfMI+8Ffv0v1PymHsooopERo+JFayT3rnq3mc2Qd1uX6cD+Z9YH6hWHVnGuVqdsuseaW55KgpF8mL+kNiQt1SwfYQoH2GsHrR8kUmWbKdNkekZSqAUJt0L12lX8zFROyRiTGI6CYw2hKfPXdg3d9YG3Gp88SN/Y35tP+WtxVpLscZi1l2gthZLyFyrF5y0yEpP1PNK3aH+kpv9dbtpB1kOCovh39W2r1/LRpagFpVLlyx+nYTbyHx484KKKKrIt4mJ2w8QjYhr3fkQkJRHu6GbshA+yp1P8Z+lxLh/PWlK3H2t80j5vrtkEuC4lyJbC3amFj7XmU7OH/VLm3q2rTlaGowcFOYD36thN/L1jLteLJqkwWP07areZ05cIoh2AriuZonNiLPKBf5LCfYWmXP2rNai8ol6fYp7nc+Mqtv9gS2OQdEZUxYITcb7JkI3HUJbZa/a2a1B5RL0+xT3O58ZVAFN2f8Am5zZ4r9M/jDMq20MENbWtkeuXwhTKKK5AKjskEk9wpownY4rsQI7UudGiPyUR23nkNreWCUtpKgCo7c9gDvy8K+HTka4rw5jKPRkYsBpzgWMaa4hb8SxKKhqBEbB84OapDhA4nln7SlHmT07hsABWTUlXZG7VwQIOlGptx2SOGNZrq8r2JRGdJ/QhZ9ST3GnVrP9bp01TZtTc3mTnte9z+/CNOYfqslVpFDklkkAAp92263pxEFYVrZ+J7NvcE/4C6zWsb1Ks8nIdO8nsUNvjkXCzzIzKf6zi2VJSP0kVwSigiYQo6Aj1iynUlcs4lOpSfSI+12rX/OcT8u3+8K6oO43HfX0YdUw82+n6zagse0HetHkXFoyiNYtAj6ifYK/VeJhOTW/M8Rs+VWt9Dsa6wmpSFJO+3EkEpPrB3BHcQRXt1mtxCm1lChYjKNaNuJdQFoNwRceMFTL7adwdndojIWXN9oTMKOj7vyZtf7VmqaVNPtu2xdv7Qd3kLQUi4QocpJI+sPMhvcfnbI/NRpgEpFTVf3DbzTAB2lhRpCNnTvBf/tV9Y0LT/eT5xaNb9M71lqkJ+V3e7KjhXeGGG08I/43HP1UgNPn5PTL40zBchwhx0fK7ZcvnBtBPMsPNpTyHgFtK3++KNMbBw0hexpdN+l/vaF/2fFoVxHea2Vbrb7Xhs6KKKSkaCgpCfKFYfFtWeY5mcbZK79AdjSEgdXIyk7LPrKHkp/yCn2qf/lAs2j3vUizYXEUlacbgKcfUDzD8kpUUH2NttH/AD0W4JDpq6C3pZW10t97QEdoRaFDX3mu0nZ63/8AnahWabrydfplmHuyP8U0otNl5O6W2jUDKoJWA49Z23Up7yEPpBP/AMx+mmVisXo79uA+YQpsFkJrsuTxPymH0ooopERpCEA7fWmzti1Cg6jQYahCyRhLEt1IJSmYykJG/cCpoI2Hf5tR8aViq76saaWPVvBrjhN+BS3LRxx30j6UaQnm26n2HqO8EjvqVmoOn+T6Y5VMxDLIBjTYiuShuW3mz9VxtX2kKHQ+0HYginJgysonpMSaz7RsW6p3EdND4cYQ2PqAunTyp5seydN+it4PXUePCMu7Puu970Ly1V1jMKnWa4BLV0gcWxdQN+FaD0DiSTsTyIJB67ijunOtGm2qkBmZh+URJD7jYWuC44G5bJ7wtoni5HluN0+BI51JCuUkpUFpJCkncEdQa7K5hWVrS++vsOcRnfqPrcRw4dxnOUBHcbIca12SbEdDna/CxizlwuNvtMRyfdJ8eHGZTxOPSHUttoHiVKIAFKl2j+2dj1ptM3CtJLiLld5TZZfvDCv5PDSrcK80oc1u7dFD6KdwdyRsEYmXO5XEIFwuEmUG/qB51S+H2bnlXWqrpmBJaUdD0yvvLaC1h45m8W9X7R5ueZLEo33V8ib3PhkAOuZ4RypSlKKlKKlE7kk7kmvtAgzLpOj2y3x3JEqW6hhhltJUpxxZCUpAHUkkACvhTndifs5y0zI+s2awFNNNpKrDFdGylqO4MlSe4AbhG/Xfi6cJJTV6ozSJVUy7u0HE7h9+AgOodHfrk6mVZGv6jwG8n6cTlDU6RYHF0y02x/CIyRxWyGlMhQO/nJC91vL9hcUsgdwIHdSd+US9PsU9zufGVT50hnlEvT7FPc7nxlUqsHurfrgdcN1K2iepBMObHTCJbDqmWhZKdgAcgQBCmU13k9rPa7hnuTT50Bh9+FbGvk63GwotFbv0infoSEgbilRpuvJ1emOYe7I3xVUyMVEpo75HAfMIVODUhVdlwRvPoYzXta9lBGTsydTdMLWhF4ZQXLpao6AkTkgD+OaA2AdABKkgfT6j6fJaIkEEgjYjkRVpaTztd9lQXZM3VfTW3H5ckKfvNrYQT8oHMqkNJH9J3qSPrc1D6W/EH4TxV3ezT55WWiVHd/ieXA7tNNDrGuDO82qnTk56rSN/+SefEb9Rne6OU7fZH7V/ywQ9KtT7mA+kJYs92fWB5wDkmO8o/a7krPXoeexKSkEEgjYigEpIUkkEcwR3UeVaky9Ylyw+Oh3g8R9RvhbUStTNCmhMy56jcocD9Dui0tFKB2Su1h8+iHpbqbcf+8gAzabq8r8K8GXlH+k6BKj9bofpbcTf0jKpS5ikTBl5gZ7juI4j8yjRdHrEtW5UTUsct43g8D+Z6xKTtGadStMdXr/YFRfNQZEhU+3KSNkLjPEqTw/dJUg+tB7tq1pVM+1boENZ8NTOsLDQymxhTkBSjw/KWjzcjk+vbdJPRQA3AUo1NKZDl2+U9BnxXo0mOstusvIKFtrB2KVJPMEHuNOTDFZRVpJNz7RAAUPr4+txCGxfQXKJUFWHslklJ3Z6jqPSxhkeyn2qWtJk/wCwmdl1zFn3S5HkttlblucUfpEpHNTR6kAEg7kA7kU/ONZZjGY25N2xS/wLtDVy89EfS6kHwOx+ifUedRvrtW+6XO0SPlVpuMqE/tt52O8pte3hukg1wVvBstVXTMMq7tZ1yuCeNsrHj6RZ4fx5NUZkSr6O8bGmdiBwvnccBble0WcpQPKC6bLuNhseqFuglblqUbbcnUJ3IjuK3ZUrwSlwrTv4vCtJdk7UHLUa/Y5HnZRdZLF0W7DktyJjjiXUllZSFBRO+ygCPCqNZHj1oyywz8av0RMq33OOuNJaJI4kKGx5jmD4EcwedA70s7g6qtLKtsWubC1wbgj7eEMRibZx5Rnm0o2Dewub2IsoHTz8YjXWWaXal5HpLmcLNMYdSJMUlDrLm/m5LKtuNpYHVJ2HsIBHMCvb100UyLRLMXrFc23HrZJUp21z9voSWN+W56BxI2Ck9x59CDWuKcCFy9SltpNlNrHgQYRTjc1SZrZVdDrZ8QR+ZRVHSbtKaXatwGFWy+MWy7uDhdtM91LchC+8I35OjwKd+XUA7gbScdaZbU866hDaRupalAADxJqLnXrXaeulzkRkw5FxlOx0fVaW8pSB7Ek7UCTPZ6ytzal3ilPAi9uhuPj5wx5TtPfba2ZpgLUN4Vs36ix+HlFF9dO2HgenFtkWrDLhEyPJXG1oZRGcDsWIvbYLecSdjsefAk7nbYlO+9TrvN4ueQ3eZfbzMclz7g+uRIfcO6nHFHdRP5zXSooqotBlaG2Us5qOqjqfsOUBuIMSzmIXQqYsEp0SNB9zz8rQVtPs06qw9H9WLdlF2LgtUhpy3XEtp4lJjuFJ49hzPCtCFEDmQk7bnlWrKKtJqWbnGFy7v6VAg+MU8nNuyEwiZZP9yCCPCLC4/qFgmVxUTcbzCz3FlYBBjzG1Ee0b7g8xyI3rIetRZKQeoBqk2ll3uqtMMQUq4ySTYbeSS4f/AE6KUVewkmkpS427tBRtYjTxvn5CHhhvGyq4tbbrOyUgG4N7+FsvMwwFYDq/ophGtNh+ZsshKTIYCjCuDGyZERR6lCiDuDsN0ncHbx2Iz6ihFh92VcDzKilQ0Ig4mZZmcaUw+kKSrUHSJo6p9jjV3T2U/IstpcyqzoHG3LtrZW8E+C2BusEf3eIevqBot9h+M6piSy404glKkLSUqSR1BB6VaKlj7Tv4S/8AcH/WmTQ8aTM04JaZbCj7wNvMWI8rQp8Q4AlJRtU1KOFI90ja8jcHzv1ietZRhOmGoOosv5HhWI3K6qSQFuMsnzLe/wDXdOyE/nIrbOlXpB/vR+2qD4N6LQPyQ/ZVvXsUuUkbLbQJO8nLyt9YpMN4NbrR2nnSEjcBn5k5eRhZtCew1bMbfi5Tq69Hutwa2cas7J4orKuo86r+lI/qjZG/9cU2wSEgJSAABsAO6uaKVVSqs1Vne+mlXO4bh0H5zhzUmjSdFZ7iTRYbzvJ4k/gG4QUiHlE2Hk5xiUksrDK7U8hLnCeEqD25APTcBSeXrFPfWpe0f6IQ/wDFj9lduGp3+gqTbuzfUcNRFfi2Q/4lSXGdrZ0N7X0I6RLOm+8nTGkKynM5YZWWEW+K2pzh+iFlxZCd/EhJP5q/FMv2c/Qd/wDxy/3U0dYmrfe0xxnu7bVhe/MHhyhdYSw6GKs2+XL7Nza2uRHHnG1KKKKU8OmEo7XvZUDAmar6ZWsBocT96tbCdgnqVSWkju71pH3h30mFWje/8Fz7p/ZU+b1/O8z8uv8AbTRwpiN9yXMu+NrYtY3ztwORvbjCgxjhKWTNJmpZWx3l7i1xcWzGYte+Y4wsYJSQpJIIO4I7qop2K9bMp1TxS6Y9lrbkqZi4jtouijzlNO+c4Ur5c1p83zV9oEE89yV6ptuy7+Ll73i7+6ivvF081N04hbX9wIsb6cd28ZW+0fOCqW9IVMFt47JB2k2yVllv3HO/hvjcFaK197KGHazqXf7c8mw5Rw7Gc02C3K2GwD6B9Y7AALH0gABzAAretFLaSnpinvB+WUUqH5Y8RDUn6fLVRgy82gKSdx9QdQeYiT+pHZ91Z0scdcynEpRgNrKRcoaS/EUN+R40j6APcFhJ9Va6IIOxqz8z8Ef/ACav2VOztN/hr/5Y/vGmrh3Fb1WX3D7YCuIP0z9YTGKsFsURozMu6SngQL+Yt6RqzQmXJg604NIiNrW4Mggo4UAklKnkpV0/uk1Wyp4diT8ZEL76/hKqh9DOPXw5Pobt+lOvG5gu7NJct0xbt77StOFh9Yx3PNP8S1Lx1/F8ytDVwgPHiCVcltLAOy21DmlQ3OxHrHQkUi2rXYY1DxKS5cNOlnKbSSSlkFKJzKe4KRyS5y70cyfsiqF0VQUjEE7RjZhV0nVJzH8Hp4wS1zDFPr6bzKbLGihkf5HXwiM12st4sM522Xy0zLdMYVwux5bCmXEHwKVAEV0qqT2g/wCaGPuq/wCtKXY/SP8A3qaaNMxOZ+X75TViOf8AEJ+q4PFOme4S9cH/AB/mND4nguZZ1PFsw/GLleJB23TEjqWEA961AcKB61ECms0U7Bs92RGyHWaUiOw2vjTY4roUtwDoHnU8kg96UEnb7Q6U1ulXofG9prMKD6xjadeKmJZIbGlxmrzyt5X5wc0Ls+p7ARMzSi6dbEWT4jMnxNuUI/2lexhcmLi9mujFnQ/BeAVLsUcbLYUBzXHT9pJ23KPrAn6O4OyVBnQJ1sluwLnCkRJLCih1l9pTbjah1CkqAII8DVnqXDtQ/hLX3E11YcxdNEpk5hO3wVex8db+vG8cWKcDSdlT0qru7nNNri54Zi3TMcLROkAqIABJPQCqWaYYzkDGmmJMP2aW243YoCFoW0QpKhHQCCD0NaU0J9MLX+WT+/TyV5jCtqcUiXCLWub38OAj7wNh5LCXJkuXvYWtbnxMf//Z" preserveAspectRatio="none"/><image width="10" height="10" id="fc" xlink:href="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAARCACAAIADASIAAhEBAxEB/8QAHAABAAMAAwEBAAAAAAAAAAAAAAYHCAEDBQkE/8QANxAAAQMDAwMCAwQJBQAAAAAAAQACAwQFEQYHEgghMRMiFBUyI0FCUQkWFzNSYXKxsnGBkbPC/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AIeiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIpVpXa/XGtrBetSaWsclxorA1jq70XtMrQ4E+2PPJ+A0k8QewQRVFwCCAQQQe4IXKAiIgIiICIiAiIgIiICIpFt7Poim1na5tx6GsrNNtkf8who3FsrmmNwZggtOA/gXYIPEOx3wCEdVj7D7w3LZnXMF+j9ae01YFNdqNjv38GezgD29Rh9zT/U3ID3K3bp0e6c1xaRqvYLcqjvFvleR8LcX94zjJZ6rG5a4ZaOD4wQCCXfnQGtdtNfbdVLKXW2lLhaXSHEck0YdDIR5DJmExvI+8NccZH5hBpHqP6b7fqC1/tp2agbV0VxgbcK230jPbLE9vL4qBuM9wcuZj8yBnIOSQQRkHIK1J0ab7nTt1j2l1TVkWu5yn5PM93amqnOyYfH0ykkg57P7YPqEiQ9UvSwJRWbm7YWz7QAzXWz00X7w5y6ogaPxeS9gHf6m98hwY6REQEREBERAREQERWVt108bo7pWU6h0jaKWW3tqH03rT1kcX2jQCRxJ5fiHfCCtUWhafoY3tqG5dW6Upj+U9xm/8QOXs0PQPuNIB8z1lpuA/f6Hrzf5RsQZ/wBGa81ft5eG33Rl/qrXWAcXOhdlkrf4ZGHLZG574cCMgHyti7WdZWidc0v6rbvW2istVVNML6lzPUtlU1x48ZA/JhyHd+fJmGuJe3IaonD+j9uh/f7oUrf6LU5395Qv1wfo+WiQGp3ZLmfe2OxcT/s41B/sgsHXvRttFrmE3TSZk0xVzxl8UtuxLRvLgC15gJxxA8CN0YIP+itrbyi1tatMUtm19XUdxulA0QG40r3EVsbezZZGuaCyUge4Dk0n3A+4tbDtnNianZ1ppLduZqG42s8j8rqGQ/CBxJPJjS0ujOS4ng5ocTl2cDFroMh9UnSv8SazczbC2j1vfU3e0wNJMp8ungaPxeS6MfV5b7sh2OAQRkHIK+waxv1h9PNntFvrd5dJelQtE8ZvVD4jkdLI2Ns8QA7PMj2h7fB5cuxDuQZEREQEREBERAXrWbV+rNOwup9P6nu1sie/1HMo62WFrn4A5EMcATgAZ/kF5KIJazd7dmIj0t0tXsAOcNvlUB/wH4XuW7qS32tePhdzbu7j4+IMdR/2tdlVsiC44er3qEi+vXjJv67VRD/GIL07d1jdQMtXDS092oq+eokZDFB8qjc6SRxw1rWxgOLiSAAO5JGF4uz/AEzbi7uOiuEFL8lsDiC6610bg2RvIA+hH2dMfPfsz2kF4PZaos1m6bulGk9S4Xik/WEwZfU1B+JuczSXdmRMBMTCfb7WtaeI5uJbyQSHZu49SGoIYbxulT6XslvkAe2hbb5jcJWnP1ET8IPwnBa93kFrSFbyxzqzrZ1Zq26Q6T2V0WYqu5PbS0lVceMlS+V/YcIQ70mEHw573t+9wABzpbSFvq9vtEur9wtYOuFwjidXXq7Vc3GFrw0c/TBw2KFgGA1oaOxcRyc4kJPcrlb7Pb6m7XWtho6KjidPUVEzwyOKNoy5znHsAAM5Xz66k+pOv3duDtNaZkmpNH0codG0gsluMjfEsoPcMH4Iz4+p3uwGcdSPUpct3a9+mtNvmotIUc2Y2ZLJLi9viWYfcwHuyM+Ozne7AZRaAiIgIiICIiAiIgKQaA1La9Haxtmpr1pak1HR0EjpJLZVvDYqjLHNbyJa4e1zg4ZaRlo7KPoguncDq43h1wHUlBd26ZtxDmins+YpC3PblOT6mQO3sLAf4fGKXe90ji97i5zjkknJJXCuvpk2ksmu79X601zVUtPpDSLW1Vw+JcAyok7uZG/Pb08NLn58gBuPcSAu/pL2at23WmJt69wTT0VVVUZmonVTuLbfQluXTOJOGukb/LLWds+9zRTHUl1JXLd65P05pySei0jRS/ZxH2vuD2ntNKPIaCMsYfH1O92AzjqR6krlu/cHad08+aj0hSS5jiILZLhI09ppR9zRgFkZ8fU73YDaNQEREBERAREQEREBERAREQF3RVtZBTVFFBVzR09Vw9eFshDJeByzm0dncScjPg+F0ogIiICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIg//9k=" preserveAspectRatio="none"/><path fill="#232f3e" d="M205 0l-28-72H64L36 0H1l101-248h38L239 0h-34zm-38-99l-47-123c-12 45-31 82-46 123h93" id="cw"/><path fill="#232f3e" d="M266 0h-40l-56-210L115 0H75L2-248h35L96-30l15-64 43-154h32l59 218 59-218h35" id="cx"/><path fill="#232f3e" d="M185-189c-5-48-123-54-124 2 14 75 158 14 163 119 3 78-121 87-175 55-17-10-28-26-33-46l33-7c5 56 141 63 141-1 0-78-155-14-162-118-5-82 145-84 179-34 5 7 8 16 11 25" id="cy"/><g id="a"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#cw"/><use transform="matrix(0.05,0,0,0.05,11.35,0)" xlink:href="#cx"/><use transform="matrix(0.05,0,0,0.05,28.299999999999997,0)" xlink:href="#cy"/></g><path fill="#232f3e" d="M212-179c-10-28-35-45-73-45-59 0-87 40-87 99 0 60 29 101 89 101 43 0 62-24 78-52l27 14C228-24 195 4 139 4 59 4 22-46 18-125c-6-104 99-153 187-111 19 9 31 26 39 46" id="cz"/><path fill="#232f3e" d="M24 0v-261h32V0H24" id="cA"/><path fill="#232f3e" d="M100-194c62-1 85 37 85 99 1 63-27 99-86 99S16-35 15-95c0-66 28-99 85-99zM99-20c44 1 53-31 53-75 0-43-8-75-51-75s-53 32-53 75 10 74 51 75" id="cB"/><path fill="#232f3e" d="M84 4C-5 8 30-112 23-190h32v120c0 31 7 50 39 49 72-2 45-101 50-169h31l1 190h-30c-1-10 1-25-2-33-11 22-28 36-60 37" id="cC"/><path fill="#232f3e" d="M85-194c31 0 48 13 60 33l-1-100h32l1 261h-30c-2-10 0-23-3-31C134-8 116 4 85 4 32 4 16-35 15-94c0-66 23-100 70-100zm9 24c-40 0-46 34-46 75 0 40 6 74 45 74 42 0 51-32 51-76 0-42-9-74-50-73" id="cD"/><g id="b"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#cz"/><use transform="matrix(0.05,0,0,0.05,12.950000000000001,0)" xlink:href="#cA"/><use transform="matrix(0.05,0,0,0.05,16.900000000000002,0)" xlink:href="#cB"/><use transform="matrix(0.05,0,0,0.05,26.900000000000002,0)" xlink:href="#cC"/><use transform="matrix(0.05,0,0,0.05,36.900000000000006,0)" xlink:href="#cD"/></g><path fill="#248814" d="M137 0h-34L2-248h35l83 218 83-218h36" id="cE"/><path fill="#248814" d="M24-231v-30h32v30H24zM24 0v-190h32V0H24" id="cF"/><path fill="#248814" d="M114-163C36-179 61-72 57 0H25l-1-190h30c1 12-1 29 2 39 6-27 23-49 58-41v29" id="cG"/><path fill="#248814" d="M59-47c-2 24 18 29 38 22v24C64 9 27 4 27-40v-127H5v-23h24l9-43h21v43h35v23H59v120" id="cH"/><path fill="#248814" d="M84 4C-5 8 30-112 23-190h32v120c0 31 7 50 39 49 72-2 45-101 50-169h31l1 190h-30c-1-10 1-25-2-33-11 22-28 36-60 37" id="cI"/><path fill="#248814" d="M141-36C126-15 110 5 73 4 37 3 15-17 15-53c-1-64 63-63 125-63 3-35-9-54-41-54-24 1-41 7-42 31l-33-3c5-37 33-52 76-52 45 0 72 20 72 64v82c-1 20 7 32 28 27v20c-31 9-61-2-59-35zM48-53c0 20 12 33 32 33 41-3 63-29 60-74-43 2-92-5-92 41" id="cJ"/><path fill="#248814" d="M24 0v-261h32V0H24" id="cK"/><g id="c"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#cE"/><use transform="matrix(0.05,0,0,0.05,11.65,0)" xlink:href="#cF"/><use transform="matrix(0.05,0,0,0.05,15.600000000000001,0)" xlink:href="#cG"/><use transform="matrix(0.05,0,0,0.05,21.55,0)" xlink:href="#cH"/><use transform="matrix(0.05,0,0,0.05,26.55,0)" xlink:href="#cI"/><use transform="matrix(0.05,0,0,0.05,36.55,0)" xlink:href="#cJ"/><use transform="matrix(0.05,0,0,0.05,46.55,0)" xlink:href="#cK"/></g><path fill="#248814" d="M30-248c87 1 191-15 191 75 0 78-77 80-158 76V0H30v-248zm33 125c57 0 124 11 124-50 0-59-68-47-124-48v98" id="cL"/><path fill="#248814" d="M108 0H70L1-190h34L89-25l56-165h34" id="cM"/><path fill="#248814" d="M100-194c63 0 86 42 84 106H49c0 40 14 67 53 68 26 1 43-12 49-29l28 8c-11 28-37 45-77 45C44 4 14-33 15-96c1-61 26-98 85-98zm52 81c6-60-76-77-97-28-3 7-6 17-6 28h103" id="cN"/><g id="d"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#cL"/><use transform="matrix(0.05,0,0,0.05,12,0)" xlink:href="#cG"/><use transform="matrix(0.05,0,0,0.05,17.95,0)" xlink:href="#cF"/><use transform="matrix(0.05,0,0,0.05,21.9,0)" xlink:href="#cM"/><use transform="matrix(0.05,0,0,0.05,30.899999999999995,0)" xlink:href="#cJ"/><use transform="matrix(0.05,0,0,0.05,40.9,0)" xlink:href="#cH"/><use transform="matrix(0.05,0,0,0.05,45.9,0)" xlink:href="#cN"/></g><path fill="#248814" d="M212-179c-10-28-35-45-73-45-59 0-87 40-87 99 0 60 29 101 89 101 43 0 62-24 78-52l27 14C228-24 195 4 139 4 59 4 22-46 18-125c-6-104 99-153 187-111 19 9 31 26 39 46" id="cO"/><path fill="#248814" d="M100-194c62-1 85 37 85 99 1 63-27 99-86 99S16-35 15-95c0-66 28-99 85-99zM99-20c44 1 53-31 53-75 0-43-8-75-51-75s-53 32-53 75 10 74 51 75" id="cP"/><path fill="#248814" d="M85-194c31 0 48 13 60 33l-1-100h32l1 261h-30c-2-10 0-23-3-31C134-8 116 4 85 4 32 4 16-35 15-94c0-66 23-100 70-100zm9 24c-40 0-46 34-46 75 0 40 6 74 45 74 42 0 51-32 51-76 0-42-9-74-50-73" id="cQ"/><g id="e"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#cO"/><use transform="matrix(0.05,0,0,0.05,12.950000000000001,0)" xlink:href="#cK"/><use transform="matrix(0.05,0,0,0.05,16.900000000000002,0)" xlink:href="#cP"/><use transform="matrix(0.05,0,0,0.05,26.900000000000002,0)" xlink:href="#cI"/><use transform="matrix(0.05,0,0,0.05,36.900000000000006,0)" xlink:href="#cQ"/></g><path d="M67-125c0 53 21 87 73 88 37 1 54-22 65-47l45 17C233-25 199 4 140 4 58 4 20-42 15-125 8-235 124-281 211-232c18 10 29 29 36 50l-46 12c-8-25-30-41-62-41-52 0-71 34-72 86" id="cR"/><path d="M199 0l-22-63H83L61 0H9l90-248h61L250 0h-51zm-33-102l-36-108c-10 38-24 72-36 108h72" id="cS"/><path d="M240-174c0 40-23 61-54 70L253 0h-59l-57-94H76V0H24v-248c93 4 217-23 216 74zM76-134c48-2 112 12 112-38 0-48-66-32-112-35v73" id="cT"/><path d="M136-208V0H84v-208H4v-40h212v40h-80" id="cU"/><path d="M169-182c-1-43-94-46-97-3 18 66 151 10 154 114 3 95-165 93-204 36-6-8-10-19-12-30l50-8c3 46 112 56 116 5-17-69-150-10-154-114-4-87 153-88 188-35 5 8 8 18 10 28" id="cV"/><g id="f"><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,0,0)" xlink:href="#cR"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,32.13518518518515,0)" xlink:href="#cS"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,64.2703703703703,0)" xlink:href="#cT"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,96.40555555555545,0)" xlink:href="#cU"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,123.57777777777764,0)" xlink:href="#cV"/></g><path d="M135-150c-39-12-60 13-60 57V0H25l-1-190h47c2 13-1 29 3 40 6-28 27-53 61-41v41" id="cW"/><path d="M190-63c-7 42-38 67-86 67-59 0-84-38-90-98-12-110 154-137 174-36l-49 2c-2-19-15-32-35-32-30 0-35 28-38 64-6 74 65 87 74 30" id="cX"/><path d="M114-157C55-157 80-60 75 0H25v-261h50l-1 109c12-26 28-41 61-42 86-1 58 113 63 194h-50c-7-57 23-157-34-157" id="cY"/><path d="M25-224v-37h50v37H25zM25 0v-190h50V0H25" id="cZ"/><path d="M115-3C79 11 28 4 28-45v-112H4v-33h27l15-45h31v45h36v33H77v99c-1 23 16 31 38 25v30" id="da"/><path d="M185-48c-13 30-37 53-82 52C43 2 14-33 14-96s30-98 90-98c62 0 83 45 84 108H66c0 31 8 55 39 56 18 0 30-7 34-22zm-45-69c5-46-57-63-70-21-2 6-4 13-4 21h74" id="db"/><path d="M85 4C-2 5 27-109 22-190h50c7 57-23 150 33 157 60-5 35-97 40-157h50l1 190h-47c-2-12 1-28-3-38-12 25-28 42-61 42" id="dc"/><g id="g"><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,0,0)" xlink:href="#cS"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,32.13518518518515,0)" xlink:href="#cW"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,49.5055555555555,0)" xlink:href="#cX"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,74.32037037037028,0)" xlink:href="#cY"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,101.49259259259247,0)" xlink:href="#cZ"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,113.89999999999986,0)" xlink:href="#da"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,128.66481481481466,0)" xlink:href="#db"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,153.47962962962944,0)" xlink:href="#cX"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,178.29444444444422,0)" xlink:href="#da"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,193.05925925925902,0)" xlink:href="#dc"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,220.2314814814812,0)" xlink:href="#cW"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,237.60185185185156,0)" xlink:href="#db"/></g><path d="M24-248c120-7 223 5 221 122C244-46 201 0 124 0H24v-248zM76-40c74 7 117-18 117-86 0-67-45-88-117-82v168" id="dd"/><path d="M133-34C117-15 103 5 69 4 32 3 11-16 11-54c-1-60 55-63 116-61 1-26-3-47-28-47-18 1-26 9-28 27l-52-2c7-38 36-58 82-57s74 22 75 68l1 82c-1 14 12 18 25 15v27c-30 8-71 5-69-32zm-48 3c29 0 43-24 42-57-32 0-66-3-65 30 0 17 8 27 23 27" id="de"/><path d="M195-6C206 82 75 100 31 46c-4-6-6-13-8-21l49-6c3 16 16 24 34 25 40 0 42-37 40-79-11 22-30 35-61 35-53 0-70-43-70-97 0-56 18-96 73-97 30 0 46 14 59 34l2-30h47zm-90-29c32 0 41-27 41-63 0-35-9-62-40-62-32 0-39 29-40 63 0 36 9 62 39 62" id="df"/><path d="M220-157c-53 9-28 100-34 157h-49v-107c1-27-5-49-29-50C55-147 81-57 75 0H25l-1-190h47c2 12-1 28 3 38 10-53 101-56 108 0 13-22 24-43 59-42 82 1 51 116 57 194h-49v-107c-1-25-5-48-29-50" id="dg"/><g id="h"><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,0,0)" xlink:href="#dd"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,32.13518518518515,0)" xlink:href="#cZ"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,44.54259259259254,0)" xlink:href="#de"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,69.35740740740732,0)" xlink:href="#df"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,96.52962962962951,0)" xlink:href="#cW"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,113.89999999999986,0)" xlink:href="#de"/><use transform="matrix(0.12407407407407395,0,0,0.12407407407407395,138.71481481481464,0)" xlink:href="#dg"/></g><path fill="#3a414a" d="M185-189c-5-48-123-54-124 2 14 75 158 14 163 119 3 78-121 87-175 55-17-10-28-26-33-46l33-7c5 56 141 63 141-1 0-78-155-14-162-118-5-82 145-84 179-34 5 7 8 16 11 25" id="dh"/><path fill="#3a414a" d="M126-127c33 6 58 20 58 59 0 88-139 92-164 29-3-8-5-16-6-25l32-3c6 27 21 44 54 44 32 0 52-15 52-46 0-38-36-46-79-43v-28c39 1 72-4 72-42 0-27-17-43-46-43-28 0-47 15-49 41l-32-3c6-42 35-63 81-64 48-1 79 21 79 65 0 36-21 52-52 59" id="di"/><g id="i"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#di"/></g><path fill="#3a414a" d="M16-82v-28h88v28H16" id="dj"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dj" id="j"/><path fill="#3a414a" d="M59-47c-2 24 18 29 38 22v24C64 9 27 4 27-40v-127H5v-23h24l9-43h21v43h35v23H59v120" id="dk"/><path fill="#3a414a" d="M141-36C126-15 110 5 73 4 37 3 15-17 15-53c-1-64 63-63 125-63 3-35-9-54-41-54-24 1-41 7-42 31l-33-3c5-37 33-52 76-52 45 0 72 20 72 64v82c-1 20 7 32 28 27v20c-31 9-61-2-59-35zM48-53c0 20 12 33 32 33 41-3 63-29 60-74-43 2-92-5-92 41" id="dl"/><path fill="#3a414a" d="M24-231v-30h32v30H24zM24 0v-190h32V0H24" id="dm"/><path fill="#3a414a" d="M96-169c-40 0-48 33-48 73s9 75 48 75c24 0 41-14 43-38l32 2c-6 37-31 61-74 61-59 0-76-41-82-99-10-93 101-131 147-64 4 7 5 14 7 22l-32 3c-4-21-16-35-41-35" id="dn"/><g id="k"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.98765432098765,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.33333333333333,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.50617283950617,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,44.382716049382715,0)" xlink:href="#dn"/></g><path fill="#3a414a" d="M266 0h-40l-56-210L115 0H75L2-248h35L96-30l15-64 43-154h32l59 218 59-218h35" id="do"/><path fill="#3a414a" d="M100-194c63 0 86 42 84 106H49c0 40 14 67 53 68 26 1 43-12 49-29l28 8c-11 28-37 45-77 45C44 4 14-33 15-96c1-61 26-98 85-98zm52 81c6-60-76-77-97-28-3 7-6 17-6 28h103" id="dp"/><path fill="#3a414a" d="M115-194c53 0 69 39 70 98 0 66-23 100-70 100C84 3 66-7 56-30L54 0H23l1-261h32v101c10-23 28-34 59-34zm-8 174c40 0 45-34 45-75 0-40-5-75-45-74-42 0-51 32-51 76 0 43 10 73 51 73" id="dq"/><path fill="#3a414a" d="M135-143c-3-34-86-38-87 0 15 53 115 12 119 90S17 21 10-45l28-5c4 36 97 45 98 0-10-56-113-15-118-90-4-57 82-63 122-42 12 7 21 19 24 35" id="dr"/><g id="l"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#do"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.493827160493826,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,32.839506172839506,0)" xlink:href="#dq"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,45.18518518518518,0)" xlink:href="#dr"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,56.29629629629629,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,61.172839506172835,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,67.34567901234567,0)" xlink:href="#dp"/></g><path fill="#3a414a" d="M212-179c-10-28-35-45-73-45-59 0-87 40-87 99 0 60 29 101 89 101 43 0 62-24 78-52l27 14C228-24 195 4 139 4 59 4 22-46 18-125c-6-104 99-153 187-111 19 9 31 26 39 46" id="ds"/><path fill="#3a414a" d="M100-194c62-1 85 37 85 99 1 63-27 99-86 99S16-35 15-95c0-66 28-99 85-99zM99-20c44 1 53-31 53-75 0-43-8-75-51-75s-53 32-53 75 10 74 51 75" id="dt"/><path fill="#3a414a" d="M117-194c89-4 53 116 60 194h-32v-121c0-31-8-49-39-48C34-167 62-67 57 0H25l-1-190h30c1 10-1 24 2 32 11-22 29-35 61-36" id="du"/><g id="m"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,40.67901234567901,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,46.851851851851855,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,59.19753086419753,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,71.54320987654322,0)" xlink:href="#dk"/></g><path fill="#333" d="M169-182c-1-43-94-46-97-3 18 66 151 10 154 114 3 95-165 93-204 36-6-8-10-19-12-30l50-8c3 46 112 56 116 5-17-69-150-10-154-114-4-87 153-88 188-35 5 8 8 18 10 28" id="dv"/><path fill="#333" d="M115-3C79 11 28 4 28-45v-112H4v-33h27l15-45h31v45h36v33H77v99c-1 23 16 31 38 25v30" id="dw"/><path fill="#333" d="M133-34C117-15 103 5 69 4 32 3 11-16 11-54c-1-60 55-63 116-61 1-26-3-47-28-47-18 1-26 9-28 27l-52-2c7-38 36-58 82-57s74 22 75 68l1 82c-1 14 12 18 25 15v27c-30 8-71 5-69-32zm-48 3c29 0 43-24 42-57-32 0-66-3-65 30 0 17 8 27 23 27" id="dx"/><path fill="#333" d="M25-224v-37h50v37H25zM25 0v-190h50V0H25" id="dy"/><path fill="#333" d="M190-63c-7 42-38 67-86 67-59 0-84-38-90-98-12-110 154-137 174-36l-49 2c-2-19-15-32-35-32-30 0-35 28-38 64-6 74 65 87 74 30" id="dz"/><g id="n"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dv"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,11.851851851851853,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,17.728395061728396,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,27.60493827160494,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,33.48148148148148,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,38.41975308641975,0)" xlink:href="#dz"/></g><path fill="#333" d="M231 0h-52l-39-155L100 0H48L-1-190h46L77-45c9-52 24-97 36-145h53l37 145 32-145h46" id="dA"/><path fill="#333" d="M185-48c-13 30-37 53-82 52C43 2 14-33 14-96s30-98 90-98c62 0 83 45 84 108H66c0 31 8 55 39 56 18 0 30-7 34-22zm-45-69c5-46-57-63-70-21-2 6-4 13-4 21h74" id="dB"/><path fill="#333" d="M137-138c1-29-70-34-71-4 15 46 118 7 119 86 1 83-164 76-172 9l43-7c4 19 20 25 44 25 33 8 57-30 24-41C81-84 22-81 20-136c-2-80 154-74 161-7" id="dC"/><g id="o"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dA"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,13.827160493827162,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,23.703703703703706,0)" xlink:href="#dC"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,33.580246913580254,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,38.518518518518526,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,44.39506172839507,0)" xlink:href="#dB"/></g><path fill="#333" d="M110-194c64 0 96 36 96 99 0 64-35 99-97 99-61 0-95-36-95-99 0-62 34-99 96-99zm-1 164c35 0 45-28 45-65 0-40-10-65-43-65-34 0-45 26-45 65 0 36 10 65 43 65" id="dD"/><path fill="#333" d="M135-194c87-1 58 113 63 194h-50c-7-57 23-157-34-157-59 0-34 97-39 157H25l-1-190h47c2 12-1 28 3 38 12-26 28-41 61-42" id="dE"/><g id="p"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,31.506172839506174,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,37.38271604938272,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,47.25925925925927,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,58.074074074074076,0)" xlink:href="#dw"/></g><path fill="#3a414a" d="M24 0v-261h32V0H24" id="dF"/><path fill="#3a414a" d="M84 4C-5 8 30-112 23-190h32v120c0 31 7 50 39 49 72-2 45-101 50-169h31l1 190h-30c-1-10 1-25-2-33-11 22-28 36-60 37" id="dG"/><path fill="#3a414a" d="M85-194c31 0 48 13 60 33l-1-100h32l1 261h-30c-2-10 0-23-3-31C134-8 116 4 85 4 32 4 16-35 15-94c0-66 23-100 70-100zm9 24c-40 0-46 34-46 75 0 40 6 74 45 74 42 0 51-32 51-76 0-42-9-74-50-73" id="dH"/><path fill="#3a414a" d="M197 0v-115H63V0H30v-248h33v105h134v-105h34V0h-34" id="dI"/><path fill="#3a414a" d="M87 75C49 33 22-17 22-94c0-76 28-126 65-167h31c-38 41-64 92-64 168S80 34 118 75H87" id="dJ"/><path fill="#3a414a" d="M30-248c118-7 216 8 213 122C240-48 200 0 122 0H30v-248zM63-27c89 8 146-16 146-99s-60-101-146-95v194" id="dK"/><path fill="#3a414a" d="M190 0L58-211 59 0H30v-248h39L202-35l-2-213h31V0h-41" id="dL"/><path fill="#3a414a" d="M33-261c38 41 65 92 65 168S71 34 33 75H2C39 34 66-17 66-93S39-220 2-261h31" id="dM"/><g id="q"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.864197530864196,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.20987654320987,0)" xlink:href="#dG"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,45.55555555555555,0)" xlink:href="#dH"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,57.90123456790123,0)" xlink:href="#dI"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,73.88888888888889,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,86.23456790123457,0)" xlink:href="#dr"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,97.34567901234568,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,103.51851851851852,0)" xlink:href="#dJ"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,110.8641975308642,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,126.85185185185188,0)" xlink:href="#dK"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,142.83950617283952,0)" xlink:href="#dL"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,158.82716049382717,0)" xlink:href="#dM"/></g><path fill="#3a414a" d="M205 0l-28-72H64L36 0H1l101-248h38L239 0h-34zm-38-99l-47-123c-12 45-31 82-46 123h93" id="dN"/><g id="r"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.012345679012345,0)" xlink:href="#do"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,34.938271604938265,0)" xlink:href="#dh"/></g><path fill="#3a414a" d="M63-220v92h138v28H63V0H30v-248h175v28H63" id="dO"/><g id="s"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#do"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.123456790123456,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,34.938271604938265,0)" xlink:href="#dO"/></g><path fill="#333" d="M76-208v77h127v40H76V0H24v-248h183v40H76" id="dP"/><path fill="#333" d="M135-150c-39-12-60 13-60 57V0H25l-1-190h47c2 13-1 29 3 40 6-28 27-53 61-41v41" id="dQ"/><g id="t"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dP"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,17.728395061728396,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,28.543209876543205,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,39.358024691358025,0)" xlink:href="#dw"/></g><path fill="#333" d="M24 0v-248h195v40H76v63h132v40H76v65h150V0H24" id="dR"/><path fill="#333" d="M88-194c31-1 46 15 58 34l-1-101h50l1 261h-48c-2-10 0-23-3-31C134-8 116 4 84 4 32 4 16-41 15-95c0-56 19-97 73-99zm17 164c33 0 40-30 41-66 1-37-9-64-41-64s-38 30-39 65c0 43 13 65 39 65" id="dS"/><g id="u"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dR"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,11.851851851851853,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,22.666666666666668,0)" xlink:href="#dS"/></g><path fill="#333" d="M240-174c0 40-23 61-54 70L253 0h-59l-57-94H76V0H24v-248c93 4 217-23 216 74zM76-134c48-2 112 12 112-38 0-48-66-32-112-35v73" id="dT"/><path fill="#333" d="M195-6C206 82 75 100 31 46c-4-6-6-13-8-21l49-6c3 16 16 24 34 25 40 0 42-37 40-79-11 22-30 35-61 35-53 0-70-43-70-97 0-56 18-96 73-97 30 0 46 14 59 34l2-30h47zm-90-29c32 0 41-27 41-63 0-35-9-62-40-62-32 0-39 29-40 63 0 36 9 62 39 62" id="dU"/><g id="v"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dT"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,22.66666666666667,0)" xlink:href="#dU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,33.48148148148149,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,38.41975308641976,0)" xlink:href="#dC"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,48.296296296296305,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,54.17283950617284,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,64.0493827160494,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,70.96296296296298,0)" xlink:href="#dC"/></g><g id="w"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dS"/></g><path fill="#333" d="M85 4C-2 5 27-109 22-190h50c7 57-23 150 33 157 60-5 35-97 40-157h50l1 190h-47c-2-12 1-28-3-38-12 25-28 42-61 42" id="dV"/><path fill="#333" d="M114-157C55-157 80-60 75 0H25v-261h50l-1 109c12-26 28-41 61-42 86-1 58 113 63 194h-50c-7-57 23-157-34-157" id="dW"/><g id="x"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,26.567901234567902,0)" xlink:href="#dW"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,37.38271604938272,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,47.25925925925927,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,58.074074074074076,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,63.95061728395062,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,68.8888888888889,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,78.76543209876544,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,88.64197530864199,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,94.51851851851853,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,104.39506172839508,0)" xlink:href="#dC"/></g><g id="y"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dC"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,30.567901234567906,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,37.48148148148149,0)" xlink:href="#dC"/></g><g id="z"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,4.938271604938272,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,15.753086419753087,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,21.62962962962963,0)" xlink:href="#dD"/></g><g id="A"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dW"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.691358024691358,0)" xlink:href="#dB"/></g><path fill="#333" d="M135-194c53 0 70 44 70 98 0 56-19 98-73 100-31 1-45-17-59-34 3 33 2 69 2 105H25l-1-265h48c2 10 0 23 3 31 11-24 29-35 60-35zM114-30c33 0 39-31 40-66 0-38-9-64-40-64-56 0-55 130 0 130" id="dX"/><path fill="#333" d="M25 0v-261h50V0H25" id="dY"/><g id="B"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dX"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dX"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,31.506172839506174,0)" xlink:href="#dY"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,36.44444444444445,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,41.38271604938272,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,51.25925925925927,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,61.13580246913581,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,67.01234567901236,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,71.95061728395063,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,82.76543209876544,0)" xlink:href="#dE"/></g><path fill="#333" d="M199 0l-22-63H83L61 0H9l90-248h61L250 0h-51zm-33-102l-36-108c-10 38-24 72-36 108h72" id="dZ"/><g id="C"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,23.60493827160494,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,29.481481481481485,0)" xlink:href="#dW"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,40.2962962962963,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,50.17283950617284,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,60.98765432098766,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,66.8641975308642,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,71.80246913580248,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,81.67901234567903,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,91.55555555555557,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,97.43209876543212,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,102.37037037037038,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,113.18518518518519,0)" xlink:href="#dE"/></g><path fill="#3a414a" d="M177-190C167-65 218 103 67 71c-23-6-38-20-44-43l32-5c15 47 100 32 89-28v-30C133-14 115 1 83 1 29 1 15-40 15-95c0-56 16-97 71-98 29-1 48 16 59 35 1-10 0-23 2-32h30zM94-22c36 0 50-32 50-73 0-42-14-75-50-75-39 0-46 34-46 75s6 73 46 73" id="ea"/><g id="D"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#ea"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,40.67901234567901,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,53.02469135802469,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,57.901234567901234,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,64.07407407407408,0)" xlink:href="#dt"/></g><path fill="#3a414a" d="M232-93c-1 65-40 97-104 97C67 4 28-28 28-90v-158h33c8 89-33 224 67 224 102 0 64-133 71-224h33v155" id="eb"/><path fill="#3a414a" d="M114-163C36-179 61-72 57 0H25l-1-190h30c1 12-1 29 2 39 6-27 23-49 58-41v29" id="ec"/><g id="E"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eb"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dr"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,27.098765432098766,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.44444444444444,0)" xlink:href="#ec"/></g><path fill="#3a414a" d="M30-248c87 1 191-15 191 75 0 78-77 80-158 76V0H30v-248zm33 125c57 0 124 11 124-50 0-59-68-47-124-48v98" id="ed"/><g id="F"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ed"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,27.160493827160494,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.50617283950617,0)" xlink:href="#dF"/></g><path fill="#3a414a" d="M33 0v-248h34V0H33" id="ee"/><path fill="#3a414a" d="M179-190L93 31C79 59 56 82 12 73V49c39 6 53-20 64-50L1-190h34L92-34l54-156h33" id="ef"/><g id="G"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ee"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,6.172839506172839,0)" xlink:href="#dH"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,18.51851851851852,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,30.864197530864196,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,43.20987654320987,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,49.382716049382715,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,54.25925925925926,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,60.4320987654321,0)" xlink:href="#ef"/></g><g id="H"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eb"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dr"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,27.098765432098766,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.44444444444444,0)" xlink:href="#ec"/></g><path fill="#3a414a" d="M106-169C34-169 62-67 57 0H25v-261h32l-1 103c12-21 28-36 61-36 89 0 53 116 60 194h-32v-121c2-32-8-49-39-48" id="eg"/><path fill="#3a414a" d="M210-169c-67 3-38 105-44 169h-31v-121c0-29-5-50-35-48C34-165 62-65 56 0H25l-1-190h30c1 10-1 24 2 32 10-44 99-50 107 0 11-21 27-35 58-36 85-2 47 119 55 194h-31v-121c0-29-5-49-35-48" id="eh"/><g id="I"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.98765432098765,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,27.16049382716049,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.50617283950617,0)" xlink:href="#dn"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,50.61728395061728,0)" xlink:href="#eg"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,62.962962962962955,0)" xlink:href="#eh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,81.41975308641975,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,93.76543209876543,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,106.11111111111111,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,112.28395061728395,0)" xlink:href="#dr"/></g><path fill="#3a414a" d="M0 4l72-265h28L28 4H0" id="ei"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ei" id="J"/><path fill="#3a414a" d="M115-194c55 1 70 41 70 98S169 2 115 4C84 4 66-9 55-30l1 105H24l-1-265h31l2 30c10-21 28-34 59-34zm-8 174c40 0 45-34 45-75s-6-73-45-74c-42 0-51 32-51 76 0 43 10 73 51 73" id="ej"/><g id="K"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eb"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#ej"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.20987654320987,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,45.55555555555555,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,57.90123456790123,0)" xlink:href="#dH"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,70.24691358024691,0)" xlink:href="#dr"/></g><path d="M238-95c0 69-44 99-111 99C63 4 22-25 22-93v-155h51v151c-1 38 19 59 55 60 90 1 49-130 58-211h52v153" id="ek"/><path d="M137-138c1-29-70-34-71-4 15 46 118 7 119 86 1 83-164 76-172 9l43-7c4 19 20 25 44 25 33 8 57-30 24-41C81-84 22-81 20-136c-2-80 154-74 161-7" id="el"/><g id="L"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#ek"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.060000000000002,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,28.800740740740746,0)" xlink:href="#cW"/></g><path d="M121-226c-27-7-43 5-38 36h38v33H83V0H34v-157H6v-33h28c-9-59 32-81 87-68v32" id="em"/><path d="M25 0v-261h50V0H25" id="en"/><g id="M"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111112,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.941481481481482,0)" xlink:href="#db"/></g><path d="M135-194c87-1 58 113 63 194h-50c-7-57 23-157-34-157-59 0-34 97-39 157H25l-1-190h47c2 12-1 28 3 38 12-26 28-41 61-42" id="eo"/><g id="N"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.941481481481484,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222223,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.882962962962964,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.623703703703704,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,46.19481481481482,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,60.18000000000001,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,68.92074074074075,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,78.49185185185186,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,83.6925925925926,0)" xlink:href="#el"/></g><g id="O"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.859259259259261,0)" xlink:href="#db"/></g><path d="M135-194c53 0 70 44 70 98 0 56-19 98-73 100-31 1-45-17-59-34 3 33 2 69 2 105H25l-1-265h48c2 10 0 23 3 31 11-24 29-35 60-35zM114-30c33 0 39-31 40-66 0-38-9-64-40-64-56 0-55 130 0 130" id="ep"/><path d="M110-194c64 0 96 36 96 99 0 64-35 99-97 99-61 0-95-36-95-99 0-62 34-99 96-99zm-1 164c35 0 45-28 45-65 0-40-10-65-43-65-34 0-45 26-45 65 0 36 10 65 43 65" id="eq"/><path d="M88-194c31-1 46 15 58 34l-1-101h50l1 261h-48c-2-10 0-23-3-31C134-8 116 4 84 4 32 4 16-41 15-95c0-56 19-97 73-99zm17 164c33 0 40-30 41-66 1-37-9-64-41-64s-38 30-39 65c0 43 13 65 39 65" id="er"/><g id="P"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#ep"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,33.08370370370371,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.82444444444445,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.39555555555556,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,60.13629629629631,0)" xlink:href="#er"/></g><g id="Q"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#er"/></g><path d="M231 0h-52l-39-155L100 0H48L-1-190h46L77-45c9-52 24-97 36-145h53l37 145 32-145h46" id="es"/><g id="R"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#es"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,31.379259259259264,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,40.95037037037038,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,45.32074074074076,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,54.89185185185187,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,63.63259259259261,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,73.20370370370372,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,81.94444444444447,0)" xlink:href="#er"/></g><path d="M123 10C108 53 80 86 19 72V37c35 8 53-11 59-39L3-190h52l48 148c12-52 28-100 44-148h51" id="et"/><g id="S"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.941481481481485,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.060000000000006,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,28.80074074074075,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.54148148148149,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,42.74222222222223,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,47.11259259259261,0)" xlink:href="#et"/></g><g id="T"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#eq"/></g><g id="U"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#db"/></g><path d="M62-158H24l-5-90h48" id="eu"/><g id="V"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.052592592592596,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,33.17111111111112,0)" xlink:href="#eu"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.88592592592593,0)" xlink:href="#el"/></g><g id="W"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#es"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,21.808148148148153,0)" xlink:href="#eo"/></g><path d="M147 0L96-86 75-71V0H25v-261h50v150l67-79h53l-66 74L201 0h-54" id="ev"/><g id="X"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#ev"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,17.481481481481485,0)" xlink:href="#et"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,26.222222222222232,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,34.96296296296297,0)" xlink:href="#ep"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,44.534074074074084,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,53.274814814814825,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,62.015555555555565,0)" xlink:href="#db"/></g><g id="Y"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,4.370370370370371,0)" xlink:href="#eo"/></g><g id="Z"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#eo"/></g><path d="M128-127c34 4 56 21 59 58 7 91-148 94-172 28-4-9-6-17-7-26l51-5c1 24 16 35 40 36 23 0 39-12 38-36-1-31-31-36-65-34v-40c32 2 59-3 59-33 0-20-13-33-34-33s-33 13-35 32l-50-3c6-44 37-68 86-68 50 0 83 20 83 66 0 35-22 52-53 58" id="ew"/><g id="aa"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cV"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,10.48888888888889,0)" xlink:href="#ew"/></g><path d="M135-194c52 0 70 43 70 98 0 56-19 99-73 100-30 1-46-15-58-35L72 0H24l1-261h50v104c11-23 29-37 60-37zM114-30c31 0 40-27 40-66 0-37-7-63-39-63s-41 28-41 65c0 36 8 64 40 64" id="ex"/><path d="M24 0v-54h51V0H24" id="ey"/><g id="ab"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#ex"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.88296296296297,0)" xlink:href="#ev"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.62370370370371,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,45.36444444444445,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,50.56518518518519,0)" xlink:href="#ey"/></g><path d="M12 0v-35l95-120H19v-35h142v35L67-36h103V0H12" id="ez"/><g id="ac"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cS"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.890370370370373,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,26.091111111111115,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,35.662222222222226,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,45.23333333333334,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.35185185185186,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,55.72222222222224,0)" xlink:href="#ez"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,63.588888888888896,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,72.32962962962965,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,77.53037037037039,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,81.90074074074076,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,91.47185185185187,0)" xlink:href="#eo"/></g><g id="ad"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,4.370370370370371,0)" xlink:href="#el"/></g><g id="ae"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.985185185185188,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,22.725925925925928,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,32.29703703703704,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.037777777777784,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,50.6088888888889,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,59.34962962962964,0)" xlink:href="#er"/></g><g id="af"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.890370370370373,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,30.461481481481485,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,40.0325925925926,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,49.60370370370371,0)" xlink:href="#cY"/></g><g id="ag"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cR"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.890370370370373,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,30.461481481481485,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,40.0325925925926,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,44.402962962962974,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,49.60370370370371,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,59.17481481481483,0)" xlink:href="#ey"/></g><path d="M140-251c80 0 125 45 125 126S219 4 139 4C58 4 15-44 15-125s44-126 125-126zm-1 214c52 0 73-35 73-88 0-50-21-86-72-86-52 0-73 35-73 86s22 88 72 88" id="eA"/><g id="ah"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eA"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,12.23703703703704,0)" xlink:href="#eo"/></g><g id="ai"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,17.481481481481485,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,26.222222222222232,0)" xlink:href="#cY"/></g><g id="aj"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111112,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.941481481481482,0)" xlink:href="#db"/></g><g id="ak"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#ep"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,33.08370370370371,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.82444444444445,0)" xlink:href="#er"/></g><g id="al"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#cW"/></g><path d="M76-54c-1 42 2 86-19 110H24C36 42 46 24 48 0H25v-54h51" id="eB"/><g id="am"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#ep"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,28.71333333333334,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.45407407407408,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,42.65481481481482,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.39555555555556,0)" xlink:href="#eB"/></g><g id="an"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#er"/></g><g id="ao"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cV"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,10.48888888888889,0)" xlink:href="#ew"/></g><path d="M24 0v-248h195v40H76v63h132v40H76v65h150V0H24" id="eC"/><path d="M128 0H69L1-190h53L99-40l48-150h52" id="eD"/><g id="ap"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eC"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,10.48888888888889,0)" xlink:href="#eD"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.229629629629635,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.970370370370375,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.54148148148149,0)" xlink:href="#da"/></g><g id="aq"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,25.260740740740744,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,34.83185185185186,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,43.5725925925926,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,49.69111111111112,0)" xlink:href="#el"/></g><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de" id="ar"/><path d="M24 0v-248h52v208h133V0H24" id="eE"/><g id="as"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eE"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,32.29703703703704,0)" xlink:href="#ex"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.86814814814816,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.43925925925927,0)" xlink:href="#de"/></g><g id="at"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#da"/></g><g id="au"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,6.11851851851852,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,25.260740740740744,0)" xlink:href="#el"/></g><path d="M147 0H94L2-248h55l64 206c17-72 42-137 63-206h54" id="eF"/><g id="av"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cR"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,24.430370370370373,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,38.415555555555564,0)" xlink:href="#cS"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,48.55481481481482,0)" xlink:href="#eF"/></g><g id="aw"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.052592592592596,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,31.422962962962966,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,40.99407407407408,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,49.73481481481482,0)" xlink:href="#da"/></g><g id="ax"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111112,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.941481481481482,0)" xlink:href="#db"/></g><g id="ay"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#eq"/></g><g id="az"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.052592592592596,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,35.79333333333334,0)" xlink:href="#ev"/></g><g id="aA"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#cW"/></g><path d="M4 7l51-268h42L46 7H4" id="eG"/><g id="aB"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eD"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.111111111111116,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.229629629629635,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,28.80074074074075,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.54148148148149,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,46.28222222222223,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,55.02296296296297,0)" xlink:href="#eG"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,59.393333333333345,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,73.37851851851853,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,82.11925925925928,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,86.48962962962965,0)" xlink:href="#es"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,98.72666666666667,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,107.46740740740744,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,113.58592592592595,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,122.32666666666671,0)" xlink:href="#ey"/></g><g id="aC"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eb"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#ej"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.20987654320987,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,45.55555555555555,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,57.90123456790123,0)" xlink:href="#dH"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,70.24691358024691,0)" xlink:href="#dr"/></g><g id="aD"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#dn"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,25.925925925925924,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,38.2716049382716,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,50.61728395061728,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,62.962962962962955,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,75.30864197530863,0)" xlink:href="#ec"/></g><path fill="#3a414a" d="M137 0h-34L2-248h35l83 218 83-218h36" id="eH"/><g id="aE"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.864197530864196,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.20987654320987,0)" xlink:href="#eh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,51.66666666666666,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,64.81481481481481,0)" xlink:href="#eH"/></g><g id="aF"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dO"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,13.518518518518517,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,18.39506172839506,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,23.2716049382716,0)" xlink:href="#dp"/></g><g id="aG"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#dn"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,25.925925925925924,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,38.2716049382716,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,50.61728395061728,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,62.962962962962955,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,75.30864197530863,0)" xlink:href="#ec"/></g><g id="aH"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cR"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.890370370370373,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.008888888888894,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,33.12740740740741,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.86814814814815,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.439259259259266,0)" xlink:href="#da"/></g><g id="aI"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cR"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,24.430370370370373,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,38.415555555555564,0)" xlink:href="#cS"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,48.55481481481482,0)" xlink:href="#eF"/></g><g id="aJ"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eD"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,22.682222222222226,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,32.25333333333334,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,40.99407407407408,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,47.1125925925926,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,55.85333333333334,0)" xlink:href="#ex"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,65.42444444444445,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,69.79481481481481,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,74.16518518518518,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,78.53555555555555,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,83.73629629629629,0)" xlink:href="#et"/></g><g id="aK"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.882962962962967,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.45407407407408,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.82444444444445,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,47.025185185185194,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.39555555555556,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,60.96666666666668,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,70.53777777777779,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,79.27851851851854,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,88.01925925925929,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,94.13777777777779,0)" xlink:href="#db"/></g><g id="aL"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.941481481481484,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222223,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.882962962962964,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.45407407407408,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,46.19481481481482,0)" xlink:href="#er"/></g><g id="aM"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,20.890370370370377,0)" xlink:href="#dg"/></g><g id="aN"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#eo"/></g><g id="aO"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cV"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,10.48888888888889,0)" xlink:href="#ew"/></g><g id="aP"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#ex"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.88296296296297,0)" xlink:href="#ev"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.62370370370371,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,45.36444444444445,0)" xlink:href="#da"/></g><g id="aQ"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#da"/></g><g id="aR"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,6.11851851851852,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#eo"/></g><g id="aS"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111112,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.5562962962963,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,32.29703703703704,0)" xlink:href="#ey"/></g><g id="aT"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.864197530864196,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.20987654320987,0)" xlink:href="#eh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,51.66666666666666,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,64.81481481481481,0)" xlink:href="#eH"/></g><g id="aU"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eH"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.012345679012345,0)" xlink:href="#dG"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,26.358024691358025,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,31.23456790123457,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,43.58024691358025,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,55.925925925925924,0)" xlink:href="#ec"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,63.2716049382716,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,75.61728395061728,0)" xlink:href="#dq"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,87.96296296296296,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,92.8395061728395,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,97.71604938271605,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,102.5925925925926,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,108.76543209876543,0)" xlink:href="#ef"/></g><path fill="#3a414a" d="M101-234c-31-9-42 10-38 44h38v23H63V0H32v-167H5v-23h27c-7-52 17-82 69-68v24" id="eI"/><g id="aV"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dK"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#eI"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,34.50617283950617,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.382716049382715,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,51.72839506172839,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,56.60493827160494,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,62.77777777777778,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,67.65432098765432,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,80,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,92.34567901234568,0)" xlink:href="#dr"/></g><g id="aW"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#ed"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,29.629629629629626,0)" xlink:href="#ee"/></g><path fill="#3a414a" d="M143 4C61 4 22-44 18-125c-5-107 100-154 193-111 17 8 29 25 37 43l-32 9c-13-25-37-40-76-40-61 0-88 39-88 99 0 61 29 100 91 101 35 0 62-11 79-27v-45h-74v-28h105v86C228-13 192 4 143 4" id="eJ"/><path fill="#3a414a" d="M206 0h-36l-40-164L89 0H53L-1-190h32L70-26l43-164h34l41 164 42-164h31" id="eK"/><g id="aX"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eJ"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,17.28395061728395,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,29.629629629629626,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,35.80246913580247,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,48.148148148148145,0)" xlink:href="#eK"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,64.1358024691358,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,76.48148148148148,0)" xlink:href="#ef"/></g><path fill="#3a414a" d="M160-131c35 5 61 23 61 61C221 17 115-2 30 0v-248c76 3 177-17 177 60 0 33-19 50-47 57zm-97-11c50-1 110 9 110-42 0-47-63-36-110-37v79zm0 115c55-2 124 14 124-45 0-56-70-42-124-44v89" id="eL"/><g id="aY"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dK"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#ef"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,27.098765432098766,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,39.44444444444444,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,51.79012345679012,0)" xlink:href="#eh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,70.24691358024691,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,82.5925925925926,0)" xlink:href="#dK"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,98.58024691358025,0)" xlink:href="#eL"/></g><path fill="#333" d="M24-248c120-7 223 5 221 122C244-46 201 0 124 0H24v-248zM76-40c74 7 117-18 117-86 0-67-45-88-117-82v168" id="eM"/><path fill="#333" d="M123 10C108 53 80 86 19 72V37c35 8 53-11 59-39L3-190h52l48 148c12-52 28-100 44-148h51" id="eN"/><path fill="#333" d="M220-157c-53 9-28 100-34 157h-49v-107c1-27-5-49-29-50C55-147 81-57 75 0H25l-1-190h47c2 12-1 28 3 38 10-53 101-56 108 0 13-22 24-43 59-42 82 1 51 116 57 194h-49v-107c-1-25-5-48-29-50" id="eO"/><g id="aZ"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eM"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#eN"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,22.66666666666667,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,33.48148148148149,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,43.35802469135803,0)" xlink:href="#eO"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,59.1604938271605,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,64.09876543209877,0)" xlink:href="#dz"/></g><path fill="#333" d="M135-194c52 0 70 43 70 98 0 56-19 99-73 100-30 1-46-15-58-35L72 0H24l1-261h50v104c11-23 29-37 60-37zM114-30c31 0 40-27 40-66 0-37-7-63-39-63s-41 28-41 65c0 36 8 64 40 64" id="eP"/><path fill="#333" d="M147 0L96-86 75-71V0H25v-261h50v150l67-79h53l-66 74L201 0h-54" id="eQ"/><g id="ba"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eP"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,30.567901234567906,0)" xlink:href="#eQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,40.44444444444445,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,50.320987654320994,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,61.13580246913581,0)" xlink:href="#dS"/></g><g id="bb"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,19.75308641975309,0)" xlink:href="#dY"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,24.69135802469136,0)" xlink:href="#dY"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,29.629629629629633,0)" xlink:href="#dC"/></g><g id="bc"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,6.913580246913581,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,17.728395061728396,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,28.543209876543205,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,34.41975308641975,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,44.2962962962963,0)" xlink:href="#dS"/></g><g id="bd"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dW"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.691358024691358,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,23.604938271604937,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,34.41975308641975,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,45.23456790123457,0)" xlink:href="#dU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,56.04938271604939,0)" xlink:href="#dW"/></g><path fill="#333" d="M275 0h-61l-44-196L126 0H64L0-248h53L97-49l45-199h58l43 199 44-199h52" id="eR"/><g id="be"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eR"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,15.753086419753085,0)" xlink:href="#dZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,28.543209876543205,0)" xlink:href="#dP"/></g><g id="bf"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dS"/></g><path fill="#333" d="M24-248c93 1 206-16 204 79-1 75-69 88-152 82V0H24v-248zm52 121c47 0 100 7 100-41 0-47-54-39-100-39v80" id="eS"/><path fill="#333" d="M24 0v-248h52V0H24" id="eT"/><g id="bg"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#eS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,24.641975308641978,0)" xlink:href="#eT"/></g><path fill="#333" d="M67-125c0 54 23 88 75 88 28 0 53-7 68-21v-34h-60v-39h108v91C232-14 192 4 140 4 58 4 20-42 15-125 8-236 126-280 215-234c19 10 29 26 37 47l-47 15c-11-23-29-39-63-39-53 1-75 33-75 86" id="eU"/><g id="bh"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,13.827160493827162,0)" xlink:href="#eR"/></g><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cS" id="bi"/><g id="bj"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,4.370370370370371,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,13.111111111111116,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.096296296296302,0)" xlink:href="#ex"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.66740740740742,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,46.23851851851853,0)" xlink:href="#de"/></g><g id="bk"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,24.342962962962968,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,33.08370370370371,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,38.28444444444445,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,42.65481481481483,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,52.22592592592594,0)" xlink:href="#eo"/></g><g id="bl"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,6.11851851851852,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,25.260740740740744,0)" xlink:href="#el"/></g><g id="bm"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#eo"/></g><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de" id="bn"/><g id="bo"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,17.481481481481485,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.052592592592596,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,35.79333333333334,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,45.36444444444445,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,54.93555555555557,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,59.30592592592595,0)" xlink:href="#db"/></g><g id="bp"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#eq"/></g><g id="bq"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.052592592592596,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,35.79333333333334,0)" xlink:href="#ev"/></g><g id="br"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#cW"/></g><g id="bs"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#es"/></g><g id="bt"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#cR"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,11.31925925925926,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,15.689629629629632,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,24.430370370370373,0)" xlink:href="#dg"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,38.415555555555564,0)" xlink:href="#cS"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,48.55481481481482,0)" xlink:href="#eF"/></g><g id="bu"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.882962962962967,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.45407407407408,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.82444444444445,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,47.025185185185194,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.39555555555556,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,60.96666666666668,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,70.53777777777779,0)" xlink:href="#el"/></g><g id="bv"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#er"/></g><g id="bw"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#ep"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,28.71333333333334,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.45407407407408,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,42.65481481481482,0)" xlink:href="#db"/></g><g id="bx"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#cY"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,14.771851851851855,0)" xlink:href="#db"/></g><g id="by"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.882962962962967,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,37.45407407407408,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.82444444444445,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,47.025185185185194,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.39555555555556,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,60.96666666666668,0)" xlink:href="#eo"/></g><g id="bz"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#ex"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,19.142222222222227,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.88296296296297,0)" xlink:href="#ev"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.62370370370371,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,45.36444444444445,0)" xlink:href="#da"/></g><g id="bA"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,17.481481481481485,0)" xlink:href="#cX"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,26.222222222222232,0)" xlink:href="#eq"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,35.793333333333344,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,41.911851851851864,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,51.48296296296298,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,55.85333333333335,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,65.42444444444446,0)" xlink:href="#df"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,74.99555555555557,0)" xlink:href="#en"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,79.36592592592594,0)" xlink:href="#et"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,86.92666666666668,0)" xlink:href="#eB"/></g><g id="bB"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,8.740740740740742,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,27.052592592592596,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,36.62370370370371,0)" xlink:href="#cW"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,42.74222222222223,0)" xlink:href="#cZ"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,47.11259259259261,0)" xlink:href="#eo"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,56.68370370370372,0)" xlink:href="#df"/></g><g id="bC"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#dc"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#ep"/></g><g id="bD"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,5.200740740740741,0)" xlink:href="#eq"/></g><g id="bE"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#de"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#da"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#db"/></g><g id="bF"><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,0,0)" xlink:href="#er"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,9.571111111111113,0)" xlink:href="#db"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,18.311851851851856,0)" xlink:href="#em"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,23.512592592592597,0)" xlink:href="#el"/><use transform="matrix(0.04370370370370371,0,0,0.04370370370370371,32.25333333333334,0)" xlink:href="#ey"/></g><path fill="#333" d="M67-125c0 53 21 87 73 88 37 1 54-22 65-47l45 17C233-25 199 4 140 4 58 4 20-42 15-125 8-235 124-281 211-232c18 10 29 29 36 50l-46 12c-8-25-30-41-62-41-52 0-71 34-72 86" id="eV"/><g id="bG"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,23.60493827160494,0)" xlink:href="#dC"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,33.48148148148148,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,39.358024691358025,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,50.17283950617284,0)" xlink:href="#eO"/></g><g id="bH"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,21.62962962962963,0)" xlink:href="#eO"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,37.4320987654321,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,47.308641975308646,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,52.24691358024692,0)" xlink:href="#dE"/></g><g id="bI"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#eO"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,36.49382716049383,0)" xlink:href="#dB"/></g><g id="bJ"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dX"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dX"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,31.506172839506174,0)" xlink:href="#dY"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,36.44444444444445,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,41.38271604938272,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,51.25925925925927,0)" xlink:href="#dS"/></g><g id="bK"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dD"/></g><path fill="#333" d="M175 0L67-191c6 58 2 128 3 191H24v-248h59L193-55c-6-58-2-129-3-193h46V0h-61" id="eW"/><g id="bL"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#eM"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,25.58024691358025,0)" xlink:href="#eW"/></g><g id="bM"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#ec"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,35.67901234567901,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,41.851851851851855,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,46.7283950617284,0)" xlink:href="#eI"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,52.90123456790124,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,57.777777777777786,0)" xlink:href="#dn"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,68.8888888888889,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,81.23456790123458,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,87.40740740740742,0)" xlink:href="#dp"/></g><path fill="#3a414a" d="M240 0l2-218c-23 76-54 145-80 218h-23L58-218 59 0H30v-248h44l77 211c21-75 51-140 76-211h43V0h-30" id="eX"/><g id="bN"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#eX"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,18.456790123456788,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,30.80246913580247,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,43.148148148148145,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,55.49382716049382,0)" xlink:href="#ea"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,67.8395061728395,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,80.18518518518519,0)" xlink:href="#ec"/></g><g id="bO"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#eS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,24.641975308641978,0)" xlink:href="#eT"/></g><g id="bP"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,13.827160493827162,0)" xlink:href="#eR"/></g><g id="bQ"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,17.728395061728396,0)" xlink:href="#dU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,28.543209876543205,0)" xlink:href="#dU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,39.358024691358025,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,49.23456790123457,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,56.14814814814815,0)" xlink:href="#dC"/></g><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx" id="bR"/><path fill="#333" d="M24 0v-248h52v208h133V0H24" id="eY"/><g id="bS"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eY"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#eO"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,36.49382716049383,0)" xlink:href="#eP"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,47.308641975308646,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,58.12345679012346,0)" xlink:href="#dx"/></g><path fill="#333" d="M121-226c-27-7-43 5-38 36h38v33H83V0H34v-157H6v-33h28c-9-59 32-81 87-68v32" id="eZ"/><g id="bT"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.691358024691358,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,27.50617283950617,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,37.382716049382715,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,43.25925925925926,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,48.19753086419753,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,59.01234567901235,0)" xlink:href="#dE"/></g><g id="bU"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.691358024691358,0)" xlink:href="#dQ"/></g><path fill="#333" d="M128 0H69L1-190h53L99-40l48-150h52" id="fa"/><g id="bV"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dU"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,15.753086419753087,0)" xlink:href="#fa"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,25.629629629629633,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,35.50617283950618,0)" xlink:href="#dE"/></g><g id="bW"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,31.506172839506174,0)" xlink:href="#dX"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,42.320987654320994,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,53.135802469135804,0)" xlink:href="#dy"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,58.074074074074076,0)" xlink:href="#dE"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,68.8888888888889,0)" xlink:href="#dw"/></g><g id="bX"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dT"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,22.66666666666667,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,32.543209876543216,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,43.35802469135803,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,50.271604938271615,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,61.08641975308644,0)" xlink:href="#dC"/></g><g id="bY"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.790123456790127,0)" xlink:href="#dB"/></g><path fill="#333" d="M76-54c-1 42 2 86-19 110H24C36 42 46 24 48 0H25v-54h51" id="fb"/><g id="bZ"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dz"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,9.876543209876544,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.790123456790127,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,26.666666666666668,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,36.543209876543216,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,42.41975308641976,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,52.2962962962963,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,63.111111111111114,0)" xlink:href="#fb"/></g><g id="ca"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,6.913580246913581,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.790123456790127,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,26.666666666666668,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,37.48148148148149,0)" xlink:href="#fb"/></g><g id="cb"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dV"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dX"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,21.62962962962963,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,32.44444444444444,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,42.32098765432099,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,48.19753086419753,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,58.074074074074076,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,68.88888888888889,0)" xlink:href="#fb"/></g><g id="cc"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dQ"/></g><g id="cd"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dY"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,25.629629629629633,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,35.50617283950618,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,41.38271604938272,0)" xlink:href="#dB"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,51.25925925925927,0)" xlink:href="#dS"/></g><g id="ce"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#eZ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dQ"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,12.790123456790125,0)" xlink:href="#dD"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,23.604938271604937,0)" xlink:href="#eO"/></g><g id="cf"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,5.8765432098765435,0)" xlink:href="#dW"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,16.691358024691358,0)" xlink:href="#dB"/></g><g id="cg"><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,0,0)" xlink:href="#dS"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,10.814814814814815,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,20.69135802469136,0)" xlink:href="#dw"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,26.567901234567902,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,36.44444444444445,0)" xlink:href="#eP"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,47.25925925925927,0)" xlink:href="#dx"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,57.135802469135804,0)" xlink:href="#dC"/><use transform="matrix(0.04938271604938272,0,0,0.04938271604938272,67.01234567901236,0)" xlink:href="#dB"/></g><pattern id="ch" patternUnits="userSpaceOnUse" x="479.64" y="2124" width="120" height="120"><use xlink:href="#fc" transform="translate(0, 0) scale(12,12)"/></pattern><path fill="#3a414a" d="M30 0v-248h33v221h125V0H30" id="fd"/><path fill="#3a414a" d="M143 0L79-87 56-68V0H24v-261h32v163l83-92h37l-77 82L181 0h-38" id="fe"/><g id="ci"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#fd"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,12.345679012345679,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,24.691358024691358,0)" xlink:href="#dG"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,37.03703703703704,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,49.382716049382715,0)" xlink:href="#dn"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,60.49382716049382,0)" xlink:href="#eg"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,72.8395061728395,0)" xlink:href="#dK"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,88.82716049382717,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,101.17283950617285,0)" xlink:href="#ec"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,108.51851851851853,0)" xlink:href="#fe"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,119.62962962962965,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,124.50617283950619,0)" xlink:href="#ef"/></g><g id="cj"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dF"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,20.864197530864196,0)" xlink:href="#dm"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,25.74074074074074,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,38.08641975308642,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,50.432098765432094,0)" xlink:href="#dk"/></g><path fill="#3a414a" d="M76-208v77h127v40H76V0H24v-248h183v40H76" id="ff"/><path fill="#3a414a" d="M185-48c-13 30-37 53-82 52C43 2 14-33 14-96s30-98 90-98c62 0 83 45 84 108H66c0 31 8 55 39 56 18 0 30-7 34-22zm-45-69c5-46-57-63-70-21-2 6-4 13-4 21h74" id="fg"/><path fill="#3a414a" d="M133-34C117-15 103 5 69 4 32 3 11-16 11-54c-1-60 55-63 116-61 1-26-3-47-28-47-18 1-26 9-28 27l-52-2c7-38 36-58 82-57s74 22 75 68l1 82c-1 14 12 18 25 15v27c-30 8-71 5-69-32zm-48 3c29 0 43-24 42-57-32 0-66-3-65 30 0 17 8 27 23 27" id="fh"/><path fill="#3a414a" d="M115-3C79 11 28 4 28-45v-112H4v-33h27l15-45h31v45h36v33H77v99c-1 23 16 31 38 25v30" id="fi"/><path fill="#3a414a" d="M85 4C-2 5 27-109 22-190h50c7 57-23 150 33 157 60-5 35-97 40-157h50l1 190h-47c-2-12 1-28-3-38-12 25-28 42-61 42" id="fj"/><path fill="#3a414a" d="M135-150c-39-12-60 13-60 57V0H25l-1-190h47c2 13-1 29 3 40 6-28 27-53 61-41v41" id="fk"/><g id="ck"><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,0,0)" xlink:href="#ff"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,12.166666666666664,0)" xlink:href="#fg"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,23.27777777777777,0)" xlink:href="#fh"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,34.38888888888888,0)" xlink:href="#fi"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,40.999999999999986,0)" xlink:href="#fj"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,53.16666666666665,0)" xlink:href="#fk"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,60.944444444444436,0)" xlink:href="#fg"/></g><path fill="#3a414a" d="M121-226c-27-7-43 5-38 36h38v33H83V0H34v-157H6v-33h28c-9-59 32-81 87-68v32" id="fl"/><path fill="#3a414a" d="M25 0v-261h50V0H25" id="fm"/><path fill="#3a414a" d="M195-6C206 82 75 100 31 46c-4-6-6-13-8-21l49-6c3 16 16 24 34 25 40 0 42-37 40-79-11 22-30 35-61 35-53 0-70-43-70-97 0-56 18-96 73-97 30 0 46 14 59 34l2-30h47zm-90-29c32 0 41-27 41-63 0-35-9-62-40-62-32 0-39 29-40 63 0 36 9 62 39 62" id="fn"/><path fill="#3a414a" d="M25-224v-37h50v37H25zM25 0v-190h50V0H25" id="fo"/><path fill="#3a414a" d="M135-194c87-1 58 113 63 194h-50c-7-57 23-157-34-157-59 0-34 97-39 157H25l-1-190h47c2 12-1 28 3 38 12-26 28-41 61-42" id="fp"/><g id="cl"><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,0,0)" xlink:href="#fl"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,6.61111111111111,0)" xlink:href="#fm"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,12.166666666666664,0)" xlink:href="#fh"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,23.27777777777777,0)" xlink:href="#fn"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,35.444444444444436,0)" xlink:href="#fn"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,47.6111111111111,0)" xlink:href="#fo"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,53.16666666666666,0)" xlink:href="#fp"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,65.33333333333331,0)" xlink:href="#fn"/></g><path fill="#3a414a" d="M110-194c64 0 96 36 96 99 0 64-35 99-97 99-61 0-95-36-95-99 0-62 34-99 96-99zm-1 164c35 0 45-28 45-65 0-40-10-65-43-65-34 0-45 26-45 65 0 36 10 65 43 65" id="fq"/><g id="cm"><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,0,0)" xlink:href="#fl"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,6.61111111111111,0)" xlink:href="#fq"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,18.777777777777775,0)" xlink:href="#fk"/></g><path fill="#3a414a" d="M128 0H69L1-190h53L99-40l48-150h52" id="fr"/><path fill="#3a414a" d="M220-157c-53 9-28 100-34 157h-49v-107c1-27-5-49-29-50C55-147 81-57 75 0H25l-1-190h47c2 12-1 28 3 38 10-53 101-56 108 0 13-22 24-43 59-42 82 1 51 116 57 194h-49v-107c-1-25-5-48-29-50" id="fs"/><path fill="#3a414a" d="M137-138c1-29-70-34-71-4 15 46 118 7 119 86 1 83-164 76-172 9l43-7c4 19 20 25 44 25 33 8 57-30 24-41C81-84 22-81 20-136c-2-80 154-74 161-7" id="ft"/><g id="cn"><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,0,0)" xlink:href="#fg"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,11.111111111111109,0)" xlink:href="#fp"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,23.27777777777777,0)" xlink:href="#fr"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,34.38888888888888,0)" xlink:href="#fo"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,39.944444444444436,0)" xlink:href="#fk"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,47.722222222222214,0)" xlink:href="#fq"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,59.88888888888888,0)" xlink:href="#fp"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,72.05555555555554,0)" xlink:href="#fs"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,89.83333333333331,0)" xlink:href="#fg"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,100.94444444444443,0)" xlink:href="#fp"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,113.11111111111109,0)" xlink:href="#fi"/><use transform="matrix(0.055555555555555546,0,0,0.055555555555555546,119.7222222222222,0)" xlink:href="#ft"/></g><pattern id="cp" patternUnits="userSpaceOnUse" x="70.61" y="366.75" width="138.78" height="46.5"><use xlink:href="#fu" transform="translate(0, 0) scale(13.878153846153845,4.649896907216494)"/></pattern><g id="cq"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#fd"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,12.345679012345679,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,24.691358024691358,0)" xlink:href="#eh"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,43.148148148148145,0)" xlink:href="#dq"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,55.49382716049382,0)" xlink:href="#dH"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,67.8395061728395,0)" xlink:href="#dl"/></g><path fill="#3a414a" d="M194 0L95-120 63-95V0H30v-248h33v124l119-124h40L117-140 236 0h-42" id="fv"/><g id="cr"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#fv"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.814814814814813,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,27.160493827160494,0)" xlink:href="#eI"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.333333333333336,0)" xlink:href="#fe"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,44.44444444444444,0)" xlink:href="#dl"/></g><g id="cs"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#ds"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#dt"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,28.333333333333332,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,40.67901234567901,0)" xlink:href="#du"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,53.02469135802469,0)" xlink:href="#dp"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,65.37037037037037,0)" xlink:href="#dn"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,76.48148148148148,0)" xlink:href="#dk"/></g><g id="ct"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dN"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,14.012345679012345,0)" xlink:href="#do"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,34.938271604938265,0)" xlink:href="#dh"/></g><path fill="#3a414a" d="M32 76v-337h29V76H32" id="fw"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#fw" id="cu"/><g id="cv"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#dO"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,13.518518518518517,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,25.864197530864196,0)" xlink:href="#ec"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,33.20987654320987,0)" xlink:href="#ea"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,45.55555555555555,0)" xlink:href="#dl"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,57.90123456790123,0)" xlink:href="#dk"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,64.07407407407406,0)" xlink:href="#dp"/></g></defs></g></svg> \ No newline at end of file +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:lucid="lucid" width="2300.5" height="1793.67"><g transform="translate(1480.5 0.5)" lucid:page-tab-id="p1e7tJV7-KtX"><path d="M-1500 0h2500v2000h-2500z" fill="#fff"/><path d="M-1460 26a6 6 0 0 1 6-6H774a6 6 0 0 1 6 6v1740.67a6 6 0 0 1-6 6h-2228a6 6 0 0 1-6-6z" stroke="#3a414a" fill="#fff"/><path d="M440 1366a6 6 0 0 1 6-6h188a6 6 0 0 1 6 6v241.78a6 6 0 0 1-6 6H446a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><path d="M441.5 1366c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76-4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.05 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.08 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24 1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.06c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.06c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-4.24 1.76c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.66 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.84 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.66 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.84 0 1.5.67 1.5 1.5zm-6.05 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.68 1.5-1.5 1.5-.84 0-1.5-.68-1.5-1.5 0-.83.66-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.66 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.84 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.84 0-1.5-.68-1.5-1.5 0-.83.66-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.08 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-1.76-4.24c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.03c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.03c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5z" fill="#6c3cc4"/><path d="M440 1360h56v56h-56v-56z" fill="#6c3cc4"/><path d="M440.5 1360c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm6.22 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm6.22 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm6.23 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm6.22 0c0 .28-.23.5-.5.5-.3 0-.5-.22-.5-.5s.2-.5.5-.5c.27 0 .5.22.5.5zm6.2 0c0 .28-.2.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.3 0 .5.22.5.5zm6.23 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm6.23 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm6.22 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm6.22 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm0 6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0 6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0 6.23c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0 6.22c0 .26-.22.5-.5.5s-.5-.24-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm0 6.2c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.26.22-.5.5-.5s.5.24.5.5zm0 6.23c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0 6.23c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0 6.22c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0 6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm-6.22 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-6.22 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-6.23 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-6.22 0c0 .28-.2.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.3 0 .5.22.5.5zm-6.2 0c0 .28-.23.5-.5.5-.3 0-.5-.22-.5-.5s.2-.5.5-.5c.27 0 .5.22.5.5zm-6.23 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-6.23 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-6.22 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-6.22 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm0-6.22c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0-6.22c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0-6.23c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0-6.22c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.26.22-.5.5-.5s.5.24.5.5zm0-6.2c0 .26-.22.5-.5.5s-.5-.24-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm0-6.23c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0-6.23c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0-6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0-6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5z" fill="#fff" fill-opacity="0"/><path d="M471.76 1388.3h-1.18v-1.1c-.12-1.73-1.47-3.07-3.2-3.2-1.9-.13-3.54 1.3-3.67 3.2v1.07h-1.17c-.44 0-.8.36-.8.8v6.13c0 .44.35.8.8.8h9.23c.44 0 .8-.36.8-.8v-6.1c0-.43-.36-.8-.8-.8zm-6.4-1.06c.1-1.03 1-1.77 2-1.67.9.08 1.58.77 1.67 1.67v1.06h-3.72zm5.65 7.08h-7.67v-4.42h7.63z" fill="#fff"/><path d="M472.26 1388.3c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-4.38-4.3c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5 0-.27.23-.5.5-.5.28 0 .5.23.5.5zm-3.67 3.2c0 .28-.2.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.3 0 .5.22.5.5zm-1.97 8c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm5.4.8c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5s.24-.5.5-.5c.3 0 .5.22.5.5zm4.63 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm.8-6.9c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-.8-.8c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-6.4-1.06c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm0 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm5.65 7.08c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5s.24-.5.5-.5c.3 0 .5.22.5.5zm-7.67 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm0-4.42c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm7.63 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5z" fill="#fff" fill-opacity="0"/><path d="M482.27 1385.74c-.08-2.44-1.58-4.47-3.87-5.3-1.58-.46-3.16-.13-4.4.9-.68-1.44-1.47-2.6-2.6-3.75-3.24-3.36-7.94-4.3-12.18-2.4-4.04 1.9-6.4 5.63-6.54 10.05v.7c-3.4.97-5.66 4.08-5.5 7.65v.63c.38 4.28 3.92 7.52 8.2 7.47h26s7.42-.63 7.42-8.1c.04-3.9-2.66-7.2-6.53-7.86zm-.96 14.4h-25.9c-3.47.05-6.3-2.53-6.6-5.97v-.52c-.15-3.05 1.93-5.7 4.92-6.3.38-.12.63-.48.6-.9-.06-.4-.06-.73 0-1.14.07-3.78 2.1-6.94 5.52-8.6 1.25-.57 2.4-.8 3.83-.84 2.62.08 4.87 1.04 6.7 2.94 1.25 1.3 2.04 2.6 2.62 4.3.03.15.1.28.24.37.37.27.87.2 1.12-.17.83-1.18 2.25-1.67 3.62-1.3 1.8.72 2.87 2.4 2.83 4.32-.07.4.22.83.64.9 3.57.36 6.2 3.55 5.82 7.12-.3 3.13-2.7 5.52-5.82 5.85z" fill="#fff"/><path d="M482.77 1385.74c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5 0-.27.22-.5.5-.5.27 0 .5.23.5.5zm-3.87-5.3c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-4.4.9c0 .3-.24.5-.5.5-.3 0-.5-.2-.5-.5 0-.26.2-.5.5-.5.26 0 .5.24.5.5zm-2.6-3.75c0 .27-.22.5-.5.5-.27 0-.5-.23-.5-.5 0-.3.23-.5.5-.5.28 0 .5.2.5.5zm-5.72-3.1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-6.46.7c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-4.7 4.1c0 .27-.22.5-.5.5-.27 0-.5-.23-.5-.5 0-.28.23-.5.5-.5.28 0 .5.22.5.5zm-1.84 5.95c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-4.06 3.6c0 .26-.23.5-.5.5-.28 0-.5-.24-.5-.5 0-.3.22-.5.5-.5.27 0 .5.2.5.5zm-1.43 4.75c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm2.63 5.97c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm5.56 2.13c0 .27-.24.5-.5.5-.3 0-.5-.23-.5-.5 0-.28.2-.5.5-.5.26 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.3 0-.5-.23-.5-.5 0-.28.2-.5.5-.5.27 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm5.22-2.68c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm2.18-5.42c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm-1.82-5.14c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-4.7-2.72c0 .28-.24.5-.5.5-.3 0-.5-.22-.5-.5 0-.27.2-.5.5-.5.26 0 .5.23.5.5zm0 0c0 .28-.24.5-.5.5-.3 0-.5-.22-.5-.5 0-.27.2-.5.5-.5.26 0 .5.23.5.5zm-.97 14.4c0 .27-.2.5-.5.5-.26 0-.5-.23-.5-.5 0-.3.24-.5.5-.5.3 0 .5.2.5.5zm-6.47 0c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm-6.48 0c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm-6.48 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.3.22-.5.5-.5.27 0 .5.2.5.5zm-6.48 0c0 .27-.24.5-.5.5-.3 0-.5-.23-.5-.5 0-.3.2-.5.5-.5.26 0 .5.2.5.5zm-4.4-1.8c0 .28-.2.5-.5.5-.27 0-.5-.22-.5-.5 0-.27.23-.5.5-.5.3 0 .5.23.5.5zm-2.2-4.17c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5 0-.27.24-.5.5-.5.3 0 .5.23.5.5zm4.92-6.83c0 .27-.22.5-.5.5-.27 0-.5-.23-.5-.5 0-.28.23-.5.5-.5.28 0 .5.22.5.5zm2.14-7.1c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.3.22-.5.5-.5.27 0 .5.2.5.5zm3.98-3.53c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm10.53 2.1c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm2.62 4.3c0 .3-.24.5-.5.5-.3 0-.5-.2-.5-.5 0-.27.2-.5.5-.5.26 0 .5.23.5.5zm4.98-1.1c0 .3-.22.5-.5.5-.27 0-.5-.2-.5-.5 0-.27.23-.5.5-.5.28 0 .5.23.5.5zm2.83 4.32c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5 0-.27.24-.5.5-.5.3 0 .5.23.5.5zm4.95 3.33c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm1.5 4.7c0 .26-.2.5-.5.5-.26 0-.5-.24-.5-.5 0-.3.24-.5.5-.5.3 0 .5.2.5.5zm-5.8 5.84c0 .26-.24.5-.5.5-.3 0-.5-.24-.5-.5 0-.3.2-.5.5-.5.26 0 .5.2.5.5z" fill="#fff" fill-opacity="0"/><use xlink:href="#a" transform="matrix(1,0,0,1,510.9999999999996,1380) translate(0 14.4)"/><use xlink:href="#b" transform="matrix(1,0,0,1,510.9999999999996,1380) translate(81.75000000000001 14.4)"/><path d="M-1300 306a6 6 0 0 1 6-6h848a6 6 0 0 1 6 6v408a6 6 0 0 1-6 6h-848a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><path d="M-1298.5 306c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76-4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.03 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24 1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-4.24 1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.02 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6.03 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-1.76-4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" fill="#6f7681"/><use xlink:href="#c" transform="matrix(1,0,0,1,-1284,316) translate(0 17.77777777777778)"/><path d="M-1080 186a6 6 0 0 1 6-6H714a6 6 0 0 1 6 6v1508a6 6 0 0 1-6 6h-1788a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><path d="M-994.53 180h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0h79.46m39.74 0H714l.94.07.9.22.88.35.8.5.72.6.6.72.5.8.37.88.23.9.07.95v38.67m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66v77.34m0 38.66V1694l-.07.94-.22.9-.35.88-.5.8-.6.72-.72.6-.8.5-.88.37-.9.23-.95.07h-39.73m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0H78.27m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0h-79.46m-39.74 0H-1074l-.94-.07-.9-.22-.88-.35-.8-.5-.72-.6-.6-.72-.5-.8-.37-.88-.23-.9-.07-.95v-38.67m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66v-77.34m0-38.66V186l.07-.94.22-.9.35-.88.5-.8.6-.72.72-.6.8-.5.88-.37.9-.23.95-.07h39.73" stroke="#6f7681" stroke-width="4" fill="none"/><path d="M-1080 180h56v56h-56v-56z" stroke="#fff" stroke-opacity="0" fill="#6f7681"/><path d="M-1039.12 221.22h-25c-4.13.05-7.57-3.1-7.9-7.2v-.64c-.15-3.4 1.97-6.38 5.25-7.36v-.66c.12-4.22 2.44-7.75 6.24-9.57 4.13-1.86 8.73-.96 11.8 2.3 1.1 1.1 1.85 2.2 2.45 3.6 1.2-1 2.72-1.32 4.24-.9 2.24.8 3.68 2.74 3.76 5.1 3.68.65 6.32 3.8 6.28 7.56 0 7.07-7.04 7.73-7.12 7.76zm-26.7-13.88c-2.83.6-4.75 3.14-4.6 6.04v.53c.3 3.33 3.1 5.84 6.4 5.76h24.98c3.04-.3 5.4-2.64 5.68-5.7.28-3.43-2.24-6.5-5.68-6.78-.44-.05-.72-.44-.64-.87.08-1.83-1-3.44-2.72-4.13-1.32-.37-2.64.13-3.44 1.24-.2.25-.44.38-.76.33-.28-.05-.48-.24-.6-.5-.6-1.6-1.4-2.85-2.6-4.04-2.68-2.8-6.6-3.6-10.13-2-3.24 1.6-5.2 4.63-5.32 8.24-.04.4-.04.74 0 1.14.04.4-.2.76-.6.84z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#d" transform="matrix(1,0,0,1,-1009,200) translate(0 17.955555555555552)"/><use xlink:href="#e" transform="matrix(1,0,0,1,-1009,200) translate(57.23333333333332 17.955555555555552)"/><path d="M-660 530h120v120h-120V530z" stroke="#fff" stroke-opacity="0" fill="#d6242d"/><path d="M-572 554h-61.64c-3.46.16-6.1 3.12-5.97 6.55v39.7c-.15 3.43 2.5 6.4 5.96 6.55h34.03v-3.22h-34.04c-1.7-.2-2.87-1.7-2.73-3.33v-27.03h28.8v23.97c0 .9.67 1.57 1.55 1.57h12.82v-3.16h-10.46v-.47c0-5.6 3.46-10.3 8.84-11.88 2.58 1.16 5.23 1.16 7.88 0 3.02.9 5.38 2.7 7.07 5.44l2.73-1.6c-1.77-2.8-3.98-4.75-7-6.12 1.4-1.64 2.06-3.43 2.06-5.54 0-4.86-3.97-8.82-8.84-8.82-4.8 0-8.76 3.96-8.76 8.82.07 2.06.73 3.85 2.06 5.43-2.87 1.27-5 3.12-6.7 5.8V565.2h27.18v22.38h3.17v-14.36h4.78v16h3.25v-28.67-.06c.15-3.5-2.57-6.4-6.03-6.5zm-18.92 15.8c3.1 0 5.6 2.47 5.67 5.53-.07 2.06-1.1 3.8-2.94 4.8-1.76.96-3.67.96-5.37 0-1.84-1-2.87-2.74-2.94-4.8.06-3.06 2.56-5.54 5.58-5.54zm16.95.2v-6.4c0-.9-.74-1.57-1.63-1.57H-606c-.88 0-1.54.68-1.54 1.58v6.4h-28.8v-9.45c-.15-1.64 1.02-3.12 2.72-3.33H-572c1.63.2 2.9 1.64 2.74 3.33V570z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-633.17 581.12h17.57v3.2h-17.57v-3.2zM-633.17 589.12H-622v3.2h-11.17v-3.2zM-618.77 589.12h4.77v3.2h-4.77v-3.2zM-576.6 626.08c-8.9.03-16.2-7.15-16.23-16.1-.03-8.94 7.16-16.22 16.1-16.25.76 0 1.37.03 2.12.13 8.84 1.1 15.16 9.2 14.06 18.05-.4 3.3-1.6 6-3.73 8.52-1.6 1.8-3.24 3.07-5.42 4.14-2.25 1.04-4.36 1.52-6.9 1.52zm0-29.15c-2.13 0-3.98.45-5.9 1.42-6.18 3.24-8.7 10.68-5.76 17.02 3 6.5 10.73 9.32 17.25 6.28 1.74-.84 3.07-1.85 4.3-3.3 1.75-2.04 2.72-4.24 3.04-6.9.85-7.1-4.2-13.55-11.34-14.42-.55-.07-1.04-.1-1.62-.1z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-579.12 616.72c-.45 0-.8-.16-1.13-.47l-5.17-5.16 2.22-2.27 4.02 4.03 9.13-9.13 2.27 2.27-10.27 10.25c-.3.3-.65.46-1.07.47z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#f" transform="matrix(1,0,0,1,-690,659) translate(56.56790123456791 14.222222222222218)"/><use xlink:href="#g" transform="matrix(1,0,0,1,-690,659) translate(48.59259259259261 35.55555555555554)"/><use xlink:href="#h" transform="matrix(1,0,0,1,-690,659) translate(92.98765432098764 35.55555555555554)"/><path d="M-660 340h120v120h-120V340z" stroke="#fff" stroke-opacity="0" fill="#d6242d"/><path d="M-572 364h-61.64c-3.46.16-6.1 3.12-5.97 6.55v39.7c-.15 3.44 2.5 6.4 5.96 6.55h34.03v-3.22h-34.04c-1.7-.2-2.87-1.7-2.73-3.33v-27.03h28.8v23.97c0 .9.67 1.57 1.55 1.57h12.82v-3.16h-10.46v-.47c0-5.6 3.46-10.3 8.84-11.88 2.58 1.16 5.23 1.16 7.88 0 3.02.9 5.38 2.7 7.07 5.44l2.73-1.6c-1.77-2.8-3.98-4.75-7-6.12 1.4-1.64 2.06-3.43 2.06-5.54 0-4.86-3.97-8.82-8.84-8.82-4.8 0-8.76 3.96-8.76 8.82.07 2.06.73 3.85 2.06 5.44-2.87 1.26-5 3.1-6.7 5.8v-21.5h27.18v22.41h3.17v-14.36h4.78v16h3.25v-28.67-.06c.15-3.5-2.57-6.4-6.03-6.5zm-18.92 15.8c3.1 0 5.6 2.47 5.67 5.53-.07 2.06-1.1 3.8-2.94 4.8-1.76.96-3.67.96-5.37 0-1.84-1-2.87-2.74-2.94-4.8.06-3.06 2.56-5.54 5.58-5.54zm16.95.2v-6.4c0-.9-.74-1.57-1.63-1.57H-606c-.88 0-1.54.68-1.54 1.58v6.4h-28.8v-9.45c-.15-1.64 1.02-3.12 2.72-3.33H-572c1.63.2 2.9 1.64 2.74 3.33V380z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-633.17 391.12h17.57v3.2h-17.57v-3.2zM-633.17 399.12H-622v3.2h-11.17v-3.2zM-618.77 399.12h4.77v3.2h-4.77v-3.2zM-576.6 436.08c-8.9.03-16.2-7.15-16.23-16.1-.03-8.94 7.16-16.22 16.1-16.25.76 0 1.37.03 2.12.13 8.84 1.1 15.16 9.2 14.06 18.05-.4 3.3-1.6 6-3.73 8.52-1.6 1.8-3.24 3.07-5.42 4.14-2.25 1.04-4.36 1.52-6.9 1.52zm0-29.15c-2.13 0-3.98.45-5.9 1.42-6.18 3.24-8.7 10.68-5.76 17.02 3 6.5 10.73 9.32 17.25 6.28 1.74-.84 3.07-1.85 4.3-3.3 1.75-2.04 2.72-4.24 3.04-6.9.85-7.1-4.2-13.55-11.34-14.42-.55-.07-1.04-.1-1.62-.1z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-579.12 426.72c-.45 0-.8-.16-1.13-.47l-5.17-5.16 2.22-2.27 4.02 4.03 9.13-9.13 2.27 2.27-10.27 10.25c-.3.3-.65.46-1.07.47z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#f" transform="matrix(1,0,0,1,-690,469) translate(56.56790123456791 14.222222222222218)"/><use xlink:href="#i" transform="matrix(1,0,0,1,-690,469) translate(36.81481481481484 35.55555555555554)"/><use xlink:href="#h" transform="matrix(1,0,0,1,-690,469) translate(104.76543209876543 35.55555555555554)"/><path d="M-380 740.55h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" fill="#d6242d"/><path d="M-328 818.15h30.4v3.2H-328v-3.2zM-342.4 818.15h8v3.2h-8v-3.2zM-328 824.55h19.2v3.2H-328v-3.2zM-342.4 824.55h8v3.2h-8v-3.2zM-358.4 773.35h76.8v3.2h-76.8v-3.2z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-281.6 837.35h-8v-3.17h6.72v-67.2h-73.92v67.2h51.2v3.17h-52.8c-.88 0-1.6-.74-1.6-1.62v-70.37c0-.88.72-1.6 1.6-1.6h76.72c.88-.1 1.6.58 1.68 1.46v70.51c0 .44-.16.8-.48 1.18-.32.3-.64.45-1.12.45z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-329.25 811.88c-.36 0-.63-.1-.93-.3-.53-.37-.76-.97-.63-1.6l1.6-9.46-6.93-6.72c-.6-.63-.56-1.65.07-2.25.23-.25.53-.38.87-.44l9.5-1.4 4.26-8.62c.26-.53.8-.88 1.43-.88.62 0 1.15.3 1.42.88l4.25 8.63 9.6 1.38c.9.12 1.5.9 1.4 1.8-.07.38-.24.67-.5.92l-6.88 6.73 1.58 9.48c.14.64-.1 1.24-.63 1.6-.5.37-1.13.4-1.66.12l-8.55-4.47-8.5 4.47c-.27.13-.5.2-.8.16zm-2.3-18.08l5.2 5.04c.36.38.52.86.46 1.4l-1.22 7.13 6.4-3.36c.48-.24 1-.24 1.47 0l6.4 3.34-1.18-7.1c-.1-.54.03-1.05.43-1.43l5.18-5.03-7.14-1c-.57-.08-1-.4-1.23-.9l-3.18-6.4-3.2 6.5c-.25.47-.65.78-1.22.85z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#j" transform="matrix(1,0,0,1,-410,869.5490790166384) translate(43.18518518518518 14.222222222222221)"/><use xlink:href="#k" transform="matrix(1,0,0,1,-410,869.5490790166384) translate(53.53086419753087 35.55555555555556)"/><path d="M-960 840.55h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d6242d"/><path d="M-881.86 920.9l2.27-2.27 19.13 19.13-2.26 2.26-19.13-19.12zM-939.52 863.22l2.25-2.26 21.2 21.22-2.24 2.25-21.23-21.2zM-934.73 933.02l11.2-11.2 2.27 2.26-11.2 11.2-2.27-2.26zM-878.73 877.02l11.2-11.2 2.27 2.26-11.2 11.2-2.27-2.26z" stroke="#fff" stroke-opacity="0" stroke-width="1.41" fill="#fff"/><path d="M-860 898.95v3.2h-3.2c-.3 7.56-2.5 13.9-6.96 20l-2.6-1.9c4.02-5.53 6.03-11.28 6.3-18.1h-3.2v-3.2h3.2c-.3-6.83-2.27-12.53-6.3-18.06l2.6-1.95c4.43 6.1 6.63 12.44 6.93 20zM-878.4 870.7l-1.9 2.6c-5.53-4.02-11.28-6-18.1-6.3v3.2h-3.2V867c-6.82.28-12.53 2.28-18.06 6.3l-1.94-2.6c6.1-4.42 12.44-6.62 20-6.9v-3.22h3.2v3.2c7.56.3 13.9 2.5 20 6.93zM-878.4 930.4c-6.1 4.42-12.44 6.62-20 6.9v3.22h-3.2v-3.2c-7.56-.3-13.9-2.5-20-6.93l1.9-2.6c5.53 4.02 11.28 6 18.1 6.3v-3.2h3.2v3.2c6.82-.3 12.53-2.28 18.06-6.3zM-933.56 902.15c.3 6.82 2.3 12.52 6.3 18.06l-2.58 1.95c-4.43-6.1-6.63-12.44-6.92-20h-3.2v-3.2h3.2c.3-7.56 2.5-13.9 6.92-20l2.6 1.9c-4.03 5.53-6.02 11.27-6.32 18.1h3.2v3.2z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M-885.55 890.44c-.46-.26-1-.26-1.5 0-.48.26-.78.72-.86 1.28-.12 1.02-.27 1.9-.5 2.87-.8-8.15-5.4-14.65-12.8-18.13-2.28-1.74-4.56-2.7-7.38-3.23-.56-.05-1.1.1-1.48.57-.57.67-.5 1.7.2 2.26 3.5 3.43 4.86 8.04 3.8 12.8-1.87-2.46-4.83-5.38-8.3-5.38-.56 0-1.02.26-1.32.72-.3.4-.38.97-.2 1.48.96 2.36 2.78 9.47.16 13.6l-.45.78c-3.65 6.65-1.75 14.84 4.44 19.24 3.3 2.2 6.3 3.74 10.07 5.02.2.05.38.1.57.1h.35c2.13-.2 16.6-2.05 19.57-13.56 4.06-15.6-4-20.22-4.37-20.42zm-17.9 29.78c-2.35-1.02-4.3-2.04-6.42-3.48-4.86-3.42-6.34-9.82-3.5-15.04l.4-.67c2.7-4.24 1.93-9.98 1.05-13.45 2.2 1.68 3.76 3.47 5.1 5.93.18.42.5.68.9.83.84.3 1.75-.15 2.05-.97 2.06-5.12 1.87-10.24-.53-15.15 2.13 1.24 3.6 2.82 4.68 5.08 2.28 4.7 1.74 11.2-1.33 16.78-3.27 6.5-4.07 13.1-2.4 20.17zm19.2-10.13c-2.1 8.18-12.1 10.48-15.7 11.05-.84-3.13-2.55-11.83 1.7-19.6 3.12-5.43 3.92-11.1 2.36-17.2 2.9 3.38 5.33 8.75 4.04 16.8-.07.45.04.9.34 1.27.57.66 1.56.76 2.24.2 2.2-2.1 3.46-4.5 4.03-7.47 1.52 2.2 3.15 6.7 1.03 14.94z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#l" transform="matrix(1,0,0,1,-990,969.5490790166385) translate(70.32098765432099 14.222222222222221)"/><path d="M-660 840.55h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" fill="#693cc5"/><path d="M-586.18 937.62l-2.85-1.5c1.6-3.02 2.7-5.73 3.64-9.04l3.1.9c-1.03 3.54-2.17 6.4-3.88 9.64zm2.98-29.3c-.57-9.4-3.23-17.23-8.43-25.06l2.66-1.73c5.55 8.28 8.37 16.64 8.97 26.58zm-21.1-38.62c-2.45-1.8-4.67-3.16-7.4-4.5l1.46-2.88c2.92 1.44 5.26 2.87 7.86 4.82zM-591.2 912.4c-5.3-5.28-10.82-8.74-17.87-11.22l1-3.03c7.5 2.63 13.38 6.3 19.03 11.92zM-578 931.5c-.6-1.6-1.28-3.08-2.02-4.57l2.87-1.42c.83 1.66 1.46 3.1 2.13 4.8z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-587.1 938.4l-1-3.03c4.02-1.37 7.24-3.1 10.6-5.72l1.96 2.53c-3.66 2.85-7.15 4.73-11.55 6.2zM-637.96 899.75l-.73-3.1c3.75-.92 7-1.35 10.85-1.43l.07 3.2c-3.6.08-6.66.47-10.18 1.33zM-611.7 889.57l-2.7-1.75c2.47-4 5.06-7.1 8.6-10.23l2.1 2.4c-3.3 2.93-5.7 5.82-8 9.57zM-587.92 870.6l-1.1-3c2.55-.96 4.76-1.6 7.42-2.12l.6 3.2c-2.5.47-4.55 1.04-6.92 1.92zM-619.6 934.95c-2.75-6.38-4-12.25-4.1-19.2.05-2.67.34-4.95.98-7.54.1-.56.24-1.13.35-1.73l3.2.63c-.1.6-.24 1.16-.35 1.76-.6 2.37-.87 4.44-.93 6.9.08 6.5 1.24 12.04 3.8 18.05z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-600 940.55c-22.08 0-40-17.94-40-39.97 0-.88 0-1.6.08-2.5 1.04-17.05 12.08-31 28.48-35.87 10.8-3.2 21.2-2.08 30.96 3.45 19.28 10.8 26.16 35.17 15.36 54.47-2.72 4.9-5.92 8.65-10.4 12.1-7.36 5.6-15.2 8.33-24.48 8.33zm0-76.82c-3.76 0-6.96.48-10.48 1.6-15.12 4.57-25.28 17.3-26.24 33 0 .8-.08 1.52-.08 2.25 0 20.26 16.48 36.76 36.8 36.76 4.24 0 7.84-.56 11.84-2 4.08-1.36 7.28-3.04 10.64-5.7 9.36-7.2 14.32-17.3 14.32-29.06 0-20.35-16.48-36.85-36.8-36.85z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-596.1 882.04c-3.92 0-7.1-3.18-7.1-7.1 0-3.9 3.18-7.08 7.1-7.08 3.9 0 7.08 3.18 7.08 7.1 0 3.92-3.16 7.08-7.08 7.08zm0-10.96c-2.15 0-3.9 1.74-3.9 3.88 0 2.16 1.75 3.9 3.9 3.9 2.13 0 3.87-1.74 3.87-3.9 0-2.14-1.74-3.88-3.88-3.88zM-617.94 904.36c-3.9 0-7.08-3.18-7.08-7.1 0-3.9 3.17-7.08 7.08-7.08 3.92 0 7.1 3.18 7.1 7.1-.02 3.9-3.18 7.06-7.1 7.08zm0-10.98c-2.14 0-3.88 1.75-3.88 3.9 0 2.13 1.74 3.87 3.88 3.87 2.15 0 3.9-1.74 3.9-3.88v-.03c0-2.15-1.75-3.9-3.9-3.9zM-582.75 924.87c-3.92 0-7.1-3.16-7.1-7.08-.02-3.92 3.15-7.1 7.07-7.1 3.9-.02 7.1 3.15 7.1 7.07v.02c0 3.9-3.16 7.07-7.07 7.07zm0-10.96h-.02c-2.14 0-3.88 1.75-3.88 3.9s1.74 3.88 3.88 3.88c2.14 0 3.9-1.73 3.9-3.88 0-2.14-1.74-3.9-3.88-3.9z" stroke="#fff" stroke-opacity="0" fill="#fff"/><use xlink:href="#m" transform="matrix(1,0,0,1,-690,969.5490790166385) translate(20.64197530864199 14.222222222222221)"/><use xlink:href="#n" transform="matrix(1,0,0,1,-690,969.5490790166385) translate(120.98765432098764 14.222222222222221)"/><path d="M-1287.2 841.55c3.96 0 7.2 3.3 7.2 7.2v69.74c0 4-3.24 7.18-7.2 7.18h-105.6c-3.96 0-7.2-3.18-7.2-7.2v-69.73c0-3.9 3.24-7.2 7.2-7.2zm1.68 76.94v-69.75c0-.95-.72-1.77-1.68-1.77h-105.6c-.96 0-1.68.82-1.68 1.77v69.74c0 .93.72 1.75 1.68 1.75h105.6c.96 0 1.68-.82 1.68-1.76zm-8.04-67.4c2.16 0 3.84 1.78 3.84 3.9v57.23c0 2.13-1.68 3.9-3.84 3.9h-93c-2.04 0-3.84-1.77-3.84-3.9V855c0-2.12 1.8-3.9 3.84-3.9zm-91.32 59.6h89.76v-54.05h-89.76zm97.68 19.58c3.96 0 7.2 3.3 7.2 7.2v14.87c0 3.9-3.24 7.2-7.2 7.2h-105.6c-3.96 0-7.2-3.3-7.2-7.2v-14.87c0-3.9 3.24-7.2 7.2-7.2zm1.68 22.07v-14.87c0-.94-.72-1.77-1.68-1.77h-105.6c-.96 0-1.68.84-1.68 1.78v14.87c0 .94.72 1.77 1.68 1.77h105.6c.96 0 1.68-.83 1.68-1.77zm-4.08-10.03v5.3c0 1.2-.96 2.13-2.16 2.13h-29.4c-1.2 0-2.16-.94-2.16-2.12v-5.3c0-1.2.96-2.13 2.16-2.13h29.4c1.2 0 2.16.94 2.16 2.12z" stroke="#000" stroke-opacity="0" fill="#232f3d"/><path d="M-1399.97 919.23v33.04l7.2 5.33 107.76-.9 5.03-4.2V848.73l-4.68-4.2-29.76-.34-79.7-.1-5.75 4.75z" stroke="#000" stroke-opacity="0" fill-opacity="0"/><use xlink:href="#o" transform="matrix(1,0,0,1,-1430,968.5490790166385) translate(65.07499999999999 14.4)"/><path d="M-1276.53 900.55H-969" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-1283.56 900.55l12.92-7.64v15.28zM-961.96 900.55l-12.92 7.63V892.9z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-1131 569.77h462" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-1138.04 569.77l12.92-7.64v15.27zM-661.96 569.77l-12.92 7.63v-15.27z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-831 871.86h75a6 6 0 0 0 6-6v-249.3a6 6 0 0 1 6-6h75" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-838.04 871.86l12.92-7.64v15.27zM-661.96 610.57l-12.92 7.64v-15.26z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-381 800.55h-73a6 6 0 0 0-6 6v66.3a6 6 0 0 1-6 6h-65" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-380 801.52h-1.03v-1.95h1.03z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M-538.04 878.84l12.92-7.64v15.27z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-831 900.55h162" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-838.04 900.55l12.92-7.64v15.28zM-661.96 900.55l-12.92 7.63V892.9z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-380 940h120v120h-120V940z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3f8624"/><path d="M-281.7 1004.06c-.47-2.48-3.3-4.25-5.3-5.53-.62-.4-2.3-1.04-2.45-1.6 0-.4 0-.8.15-1.2l1.6-11.46 1.4-10.17c.37-3.05-1.08-5.13-3.62-6.9-5.13-3.6-11.88-5.04-17.94-6-7.97-1.28-14.95-1.52-23-.72-7.28.48-13.34 1.92-20.08 4.8-3.38 1.6-7.9 4.1-7.3 8.42 1.55 12.97 3.46 25.95 5.23 38.93.75 5.93 1.6 11.86 2.36 17.8.3 2.47 1.7 4.4 4 5.35 4.9 2.65 11.03 3.45 16.63 3.93 7.73.73 14.32.5 22-.95 4.6-.8 13.18-2.24 13.94-8 .93-7.14 1.92-14.27 2.84-21.4l.4-2.17c2.6.65 10.03 2 9.1-3.12zm-40.65-40.86c9.66 0 20.63 1.12 29.22 5.85 1.38.72 4.44 2.32 3.52 4.33-.93 1.92-3.84 2.88-5.6 3.6-2.6.96-5 1.6-7.75 2.16-11.96 2.4-22.54 2.65-34.65.73-5.45-.57-9.97-1.93-14.88-4.33-1.15-.72-3.06-1.84-2.53-3.45.38-.9 1-1.53 1.83-2 3.76-2.4 7.2-3.85 11.58-4.65 6.6-1.6 12.43-2.33 19.25-2.25zm25.15 67.46c-.3 1.84-3.37 2.8-4.83 3.28-3.22 1.12-6.06 1.76-9.43 2.16-7.44.97-13.88.97-21.4 0-4.67-.4-8.58-1.44-12.8-3.52-1.14-.48-1.83-1.52-1.9-2.72-1.62-12.74-3.38-25.4-5.15-38.06l-1.85-13.78c3.84 2.1 7.36 3.37 11.66 4.1 4.68.95 8.6 1.43 13.35 1.75 9.2.64 17.1.24 26.22-1.44 4.83-.72 8.8-2.08 13.1-4.4l-3.37 25.07c-8.58-2.8-15.64-5.6-23.7-9.54-.37-.16-.68-.32-.98-.48-.46-.32-.3-.16-.54-.64-.38-.96-.46-1.6-1.3-2.4-.77-.56-1.6-.8-2.53-.72-2 .08-3.53 1.84-3.38 3.84.16 1.93 1.92 3.45 3.9 3.3.55-.1 1-.25 1.62-.5.6-.15.6-.15 1.22.17 8.2 4 15.33 6.97 24 9.85 1.22.4 1.22 0 1.22 1.04-.07.8-.15 1.53-.3 2.33l-1 7.6zm-24.7-37.9c0 .48-.6.4-.75.16-.23-.32.76-.72.76-.16zm31.52 11.22l.46-3.53c1.62.96 4.3 2.33 5.06 4.1-1.6.63-4.06-.17-5.5-.57z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#p" transform="matrix(1,0,0,1,-410,1069) translate(47.111111111111114 14.222222222222221)"/><use xlink:href="#q" transform="matrix(1,0,0,1,-410,1069) translate(100.34567901234567 14.222222222222221)"/><use xlink:href="#r" transform="matrix(1,0,0,1,-410,1069) translate(37.35802469135804 35.55555555555556)"/><use xlink:href="#s" transform="matrix(1,0,0,1,-410,1069) translate(109.1604938271605 35.55555555555556)"/><path d="M-381 1000h-73a6 6 0 0 1-6-6v-67.4a6 6 0 0 0-6-6h-65" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-380 1000.98h-1.03V999h1.03z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M-538.04 920.6l12.92-7.64v15.27z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-120 834a6 6 0 0 1 6-6h748a6 6 0 0 1 6 6v448a6 6 0 0 1-6 6h-748a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><path d="M-118.5 834c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76-4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6 0c0 .83-.7 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.8 0 1.5.67 1.5 1.5zm5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24 1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.8.67-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 6c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.8.67-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 6c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.8.67-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 6c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-4.24 1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm-5.98 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-5.98 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-6 0c0 .83-.66 1.5-1.5 1.5-.8 0-1.5-.67-1.5-1.5s.7-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm-5.97 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-1.76-4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.8.67-1.5 1.5-1.5s1.5.7 1.5 1.5zm0-5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.8.67-1.5 1.5-1.5s1.5.7 1.5 1.5zm0-5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.8.67-1.5 1.5-1.5s1.5.7 1.5 1.5zm0-5.96c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.98c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-5.98c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-5.97c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" fill="#6f7681"/><use xlink:href="#t" transform="matrix(1,0,0,1,-104,844) translate(0 14.222222222222221)"/><use xlink:href="#u" transform="matrix(1,0,0,1,-104,844) translate(81.77777777777776 14.222222222222221)"/><path d="M-1270.98 943.72h64.98a6 6 0 0 1 6 6V1087" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-1278 943.72l12.9-7.63v15.26z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-1199.03 1088h-1.94v-1.03h1.94z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M-1260 1088h120v120h-120z" fill="url(#v)"/><path d="M-1280 1214a6 6 0 0 1 6-6h148a6 6 0 0 1 6 6v28a6 6 0 0 1-6 6h-148a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><use xlink:href="#w" transform="matrix(1,0,0,1,-1275,1213) translate(16.358024691358032 17.97222222222222)"/><path d="M0 888.55h120v120H0v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3f8624"/><path d="M98.3 952.6c-.47-2.48-3.3-4.24-5.3-5.52-.6-.4-2.3-1.04-2.45-1.6 0-.4 0-.8.15-1.2l1.6-11.46 1.4-10.17c.37-3.05-1.1-5.13-3.62-6.9-5.13-3.6-11.88-5.04-17.94-6-7.97-1.28-14.95-1.52-23-.72-7.28.48-13.34 1.92-20.08 4.8-3.38 1.6-7.9 4.1-7.3 8.42 1.55 12.97 3.46 25.95 5.23 38.93.75 5.93 1.6 11.86 2.36 17.8.3 2.47 1.7 4.4 4 5.35 4.9 2.65 11.03 3.45 16.63 3.93 7.73.72 14.32.48 22-.96 4.6-.8 13.18-2.25 13.94-8 .92-7.14 1.92-14.27 2.84-21.4l.4-2.17c2.6.64 10.03 2 9.1-3.12zm-40.65-40.85c9.66 0 20.63 1.12 29.2 5.85 1.4.72 4.46 2.32 3.54 4.32-.93 1.93-3.84 2.9-5.6 3.6-2.6.97-5 1.6-7.75 2.17-11.96 2.4-22.54 2.64-34.65.7-5.45-.55-9.97-1.9-14.88-4.3-1.15-.73-3.06-1.85-2.53-3.46.38-.88 1-1.52 1.83-2 3.76-2.4 7.2-3.85 11.58-4.65 6.6-1.6 12.43-2.33 19.25-2.25zM82.8 979.2c-.3 1.85-3.37 2.8-4.83 3.3-3.22 1.1-6.06 1.75-9.43 2.15-7.44.97-13.88.97-21.4 0-4.67-.4-8.58-1.44-12.8-3.52-1.14-.48-1.83-1.52-1.9-2.73-1.62-12.73-3.38-25.4-5.15-38.05l-1.85-13.78c3.84 2.08 7.36 3.37 11.66 4.1 4.68.95 8.6 1.43 13.35 1.75 9.2.64 17.1.24 26.22-1.44 4.83-.72 8.8-2.1 13.1-4.4l-3.36 25.07c-8.58-2.8-15.64-5.6-23.7-9.54-.37-.15-.68-.3-.98-.47-.46-.32-.3-.16-.54-.64-.38-.97-.46-1.6-1.3-2.4-.77-.57-1.6-.8-2.53-.73-2 .08-3.53 1.84-3.38 3.84.16 1.94 1.92 3.46 3.9 3.3.55-.08 1-.24 1.62-.48.6-.16.6-.16 1.22.16 8.2 4 15.33 6.97 24 9.85 1.22.4 1.22 0 1.22 1.04-.07.8-.15 1.52-.3 2.33l-1 7.6zm-24.7-37.9c0 .5-.6.4-.75.17-.23-.32.76-.72.76-.16zm31.52 11.23l.46-3.53c1.6.97 4.3 2.33 5.06 4.1-1.6.63-4.06-.17-5.52-.57z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#x" transform="matrix(1,0,0,1,-30,1017.5490790166384) translate(26.962962962962976 14.222222222222221)"/><use xlink:href="#y" transform="matrix(1,0,0,1,-30,1017.5490790166384) translate(22.518518518518533 35.55555555555556)"/><use xlink:href="#s" transform="matrix(1,0,0,1,-30,1017.5490790166384) translate(124 35.55555555555556)"/><path d="M-660 1088h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" fill="#693cc5"/><path d="M-582.4 1186.42c-.35 0-.64-.15-.93-.3-.43-.3-.67-.77-.67-1.3v-73.63c0-.55.3-1.1.77-1.4.48-.3 1.08-.3 1.6-.07l20.8 10.22c.56.23.9.77.9 1.38v56.56c.02.76-.4 1.37-1.1 1.6l-20.8 6.92h-.56zm1.63-72.62v68.78l17.6-5.84v-54.4zM-617.6 1186.42h-.52l-20.8-6.92c-.67-.23-1.1-.92-1.08-1.6v-56.57c0-.6.33-1.15.9-1.38l20.8-10.22c.52-.23 1.1-.23 1.6.08.48.32.75.85.75 1.4v73.6c0 .54-.24 1-.67 1.3-.3.24-.6.32-1 .32zm-19.2-9.6l17.6 5.83v-68.85l-17.6 8.6z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-584 1132h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zM-584 1167.2h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zm-9.6 0h-4.8v-3.2h4.8zM-607.02 1153.5l-6.02-5.13c-.67-.57-.75-1.6-.18-2.26l.18-.17 6-5.13 2.08 2.43-4.58 3.97 4.58 3.92zM-592.96 1153.5l-2.08-2.42 4.57-3.88-4.6-3.9 2.1-2.5 6 5.12c.68.57.76 1.6.2 2.26-.07.06-.12.12-.2.17z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M-604.7 1156.87l6.35-18.8 3.03 1.03-6.35 18.8-3.04-1.03z" stroke="#fff" stroke-opacity="0" stroke-width=".32" fill="#fff"/><use xlink:href="#z" transform="matrix(1,0,0,1,-690,1217) translate(36.22222222222223 14.222222222222221)"/><use xlink:href="#A" transform="matrix(1,0,0,1,-690,1217) translate(70.74074074074073 14.222222222222221)"/><path d="M-831 930.2h75a6 6 0 0 1 6 6V1142a6 6 0 0 0 6 6h75" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-838.04 930.2l12.92-7.63v15.27zM-661.96 1148l-12.92 7.64v-15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-380 1440h120v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M-283.2 1540h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32h-22.02v14.4h11.2c.65 0 1.16.32 1.48.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M-336.04 1540h-20.8c-.55 0-1.05-.3-1.37-.73-.33-.54-.33-1.12-.08-1.6l21.78-45.46c.24-.58.8-.92 1.4-.92.65 0 1.18.34 1.46.88l10.4 21.43c.26.43.26.92 0 1.4l-11.35 23.98c-.2.63-.77 1.02-1.44 1.02zm-18.24-3.22h17.24l10.6-22.36-8.6-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#B" transform="matrix(1,0,0,1,-410,1569) translate(51.061728395061735 14.222222222222221)"/><path d="M-531 1173.4h65a6 6 0 0 1 6 6V1494a6 6 0 0 0 6 6h65" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-538.04 1173.4l12.92-7.64v15.27zM-381.96 1500l-12.92 7.64v-15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-120 1440H0v120h-120v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3b48cc"/><path d="M-39.6 1504.78l-10.6 10.55c2-.56 3.65-1.2 5.5-2.24 1.1.63 1.68 1.67 1.9 2.87 0 2.96-6.2 6.16-15.4 7.43-3.05.4-5.55.56-8.6.56h-1.58c-12.95-.24-22.42-4.3-22.42-8 .17-1.2.82-2.15 1.9-2.87 5.02 2.8 13.18 4.47 22.1 4.47h.17l.92-3.2h-1.1c-8.8 0-16.98-1.76-21.28-4.47-1.74-1.12-2.72-2.4-2.72-3.44v-7.43c4.9 3.75 14.64 5.67 24 5.67 1.25 0 2.5 0 3.76-.08l.92-3.2c-1.63.08-3.1.16-4.68.16-13.7 0-24-4.23-24-8 .17-1.27.82-2.23 1.9-2.87 4.42 2.5 11.22 4 18.9 4.4l.1-3.2c-7.56-.4-14.42-2-18.18-4.47-1.74-1.04-2.66-2.3-2.72-3.43v-7.36c4.9 3.76 14.64 5.68 24 5.68h.33l1.74-3.2h-2.07c-13.7 0-24-4.16-24-8 0-3.75 10.3-8 24-8 4.85 0 8.98.5 13.72 1.6h8.8c-4.83-2.94-13.1-4.78-22.52-4.78-13.17 0-27.2 3.9-27.2 11.2V1484c.1 1.9.92 3.5 2.44 4.7-1.52 1.3-2.34 2.9-2.45 4.8v12.8c.1 2 .92 3.6 2.44 4.88-1.52 1.2-2.34 2.8-2.45 4.8v13.1c.43 7.04 14.2 10.8 27.2 10.8s26.78-3.77 27.2-10.88V1515.88c-.04-1.9-.9-3.6-2.44-4.8v.02c1.53-1.2 2.34-2.88 2.45-4.8zm-3.2 23.98c0 3.76-10.28 8-24 8-13.7 0-24-4.16-24-8v-7.35c4.9 3.68 14.64 5.68 24 5.68s19.1-2 24-5.67z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M-84 1484.03c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM-84 1506.43c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM-84 1528.83c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM-62.8 1522.37c-.3 0-.53-.06-.82-.22-.64-.38-.92-1.14-.72-1.85l9-29.95h-9.08c-.88.06-1.6-.65-1.6-1.58 0-.27.04-.54.2-.76l9.58-19.2c.28-.56.8-.88 1.45-.88h20.82c.88-.06 1.6.65 1.64 1.52.04.22 0 .38-.04.6l-4.13 12.25h8.97c.88.05 1.6.76 1.6 1.63 0 .43-.16.76-.44 1.1l-35.2 36.8c-.32.38-.72.54-1.24.54zm1-35.18h8.6c.53 0 .97.2 1.3.6.27.43.4.92.23 1.4l-7.7 25.6 28.03-29.24h-7.46c-.88 0-1.64-.65-1.68-1.52 0-.22 0-.44.08-.6l4.1-12.3h-17.6z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#C" transform="matrix(1,0,0,1,-150,1569) translate(20.666666666666686 14.222222222222221)"/><use xlink:href="#D" transform="matrix(1,0,0,1,-150,1569) translate(104.46913580246914 14.222222222222221)"/><use xlink:href="#E" transform="matrix(1,0,0,1,-150,1569) translate(49.13580246913581 35.55555555555556)"/><path d="M-251 1500h122" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-258.04 1500l12.92-7.64v15.28zM-121.96 1500l-12.92 7.64v-15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M9 1500h222" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M1.96 1500l12.92-7.64v15.28zM238.04 1500l-12.92 7.64v-15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-531 1123.62h475a6 6 0 0 0 6-6V954.55a6 6 0 0 1 6-6h43" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-538.04 1123.62l12.92-7.64v15.27z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M0 949.52h-1.03v-1.95H0z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M0 1088h120v120H0v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M96.8 1188H77.08c-.64 0-1.15-.32-1.4-.88l-27.92-58.32H35.98c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32H37.6v14.4h11.2c.65 0 1.16.32 1.48.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M43.96 1188h-20.8c-.55 0-1.05-.3-1.37-.73-.33-.54-.33-1.12-.08-1.6l21.78-45.46c.24-.58.8-.92 1.4-.92.65 0 1.18.34 1.46.88l10.4 21.43c.26.43.26.92 0 1.4L45.42 1187c-.2.63-.77 1.02-1.44 1.02zm-18.24-3.22h17.24l10.6-22.36-8.6-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#F" transform="matrix(1,0,0,1,-30,1217) translate(56.64197530864198 14.222222222222221)"/><use xlink:href="#G" transform="matrix(1,0,0,1,-30,1217) translate(37.23456790123458 35.55555555555556)"/><use xlink:href="#H" transform="matrix(1,0,0,1,-30,1217) translate(72.74074074074073 35.55555555555556)"/><path d="M-539 1148H-9" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-538.97 1148.97H-540v-1.94h1.03z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M-1.96 1148l-12.92 7.64v-15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M129 1148h110" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M121.96 1148l12.92-7.64v15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M240 1148.97h-1.03v-1.94H240z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M240 1440h120v120H240v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M336.8 1540h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.16-.32-1.4-.88l-27.8-58.32H277.6v14.4h11.2c.65 0 1.16.32 1.48.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M283.96 1540h-20.8c-.55 0-1.05-.3-1.37-.73-.33-.54-.33-1.12-.08-1.6l21.78-45.46c.24-.58.8-.92 1.4-.92.65 0 1.18.34 1.46.88l10.4 21.43c.26.43.26.92 0 1.4L285.42 1539c-.2.63-.77 1.02-1.44 1.02zm-18.24-3.22h17.24l10.6-22.36-8.6-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#I" transform="matrix(1,0,0,1,210,1569) translate(56.00000000000001 14.222222222222221)"/><path d="M369 1500h102" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M361.96 1500l12.92-7.64v15.28zM478.04 1500l-12.92 7.64v-15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M240 1088h120v120H240v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#3f8624"/><path d="M338.3 1152.06c-.47-2.48-3.3-4.25-5.3-5.53-.62-.4-2.3-1.04-2.45-1.6 0-.4 0-.8.15-1.2l1.6-11.46 1.4-10.17c.37-3.05-1.08-5.13-3.62-6.9-5.13-3.6-11.88-5.04-17.94-6-7.97-1.28-14.95-1.52-23-.72-7.28.48-13.34 1.92-20.08 4.8-3.38 1.6-7.9 4.1-7.3 8.42 1.55 12.97 3.46 25.95 5.23 38.93.75 5.93 1.6 11.86 2.36 17.8.3 2.47 1.7 4.4 4 5.35 4.9 2.65 11.03 3.45 16.63 3.93 7.73.73 14.32.5 22-.95 4.6-.8 13.18-2.24 13.94-8 .93-7.14 1.92-14.27 2.84-21.4l.4-2.17c2.6.64 10.03 2 9.1-3.12zm-40.65-40.86c9.66 0 20.63 1.12 29.22 5.85 1.38.72 4.44 2.32 3.52 4.33-.93 1.92-3.84 2.88-5.6 3.6-2.6.96-5 1.6-7.75 2.16-11.96 2.4-22.54 2.65-34.65.72-5.45-.56-9.97-1.92-14.88-4.32-1.15-.72-3.06-1.84-2.53-3.45.38-.9 1-1.53 1.83-2 3.76-2.4 7.2-3.85 11.58-4.65 6.6-1.6 12.43-2.33 19.25-2.25zm25.15 67.46c-.3 1.84-3.37 2.8-4.83 3.28-3.22 1.12-6.06 1.76-9.43 2.16-7.44.97-13.88.97-21.4 0-4.67-.4-8.58-1.44-12.8-3.52-1.14-.48-1.83-1.52-1.9-2.72-1.62-12.74-3.38-25.4-5.15-38.06l-1.85-13.78c3.84 2.1 7.36 3.37 11.66 4.1 4.68.95 8.6 1.43 13.35 1.75 9.2.64 17.1.24 26.22-1.44 4.83-.72 8.8-2.08 13.1-4.4l-3.37 25.07c-8.58-2.8-15.64-5.6-23.7-9.54-.37-.16-.68-.32-.98-.48-.46-.32-.3-.16-.54-.64-.38-.96-.46-1.6-1.3-2.4-.77-.56-1.6-.8-2.53-.72-2 .08-3.53 1.84-3.38 3.84.16 1.93 1.92 3.45 3.9 3.3.55-.1 1-.25 1.62-.5.6-.15.6-.15 1.22.17 8.2 4 15.33 6.97 24 9.85 1.22.4 1.22 0 1.22 1.04-.07.8-.15 1.53-.3 2.33l-1 7.6zm-24.7-37.9c0 .48-.6.4-.75.16-.23-.32.76-.72.76-.16zm31.52 11.22l.46-3.53c1.62.96 4.3 2.33 5.06 4.1-1.6.63-4.06-.17-5.5-.57z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#J" transform="matrix(1,0,0,1,210,1217) translate(37.08641975308643 14.222222222222221)"/><use xlink:href="#K" transform="matrix(1,0,0,1,210,1217) translate(44.22222222222223 35.55555555555556)"/><path d="M480 1088h120v120H480v-120z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#d86613"/><path d="M576.8 1188h-19.72c-.64 0-1.15-.32-1.4-.88l-27.92-58.32h-11.78c-.9 0-1.6-.72-1.6-1.6v-17.6c0-.88.7-1.6 1.6-1.6h24.65c.64 0 1.15.32 1.4.88l27.8 58.32h6.97c.9 0 1.6.72 1.6 1.6v17.6c0 .88-.7 1.6-1.6 1.6zm-18.7-3.2h17.1v-14.4h-6.4c-.64 0-1.15-.32-1.4-.88l-27.8-58.32h-22v14.4h11.2c.63 0 1.14.32 1.46.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><path d="M523.96 1188h-20.8c-.55 0-1.05-.3-1.37-.73-.33-.54-.33-1.12-.08-1.6l21.78-45.46c.24-.58.8-.92 1.4-.92.65 0 1.18.34 1.46.88l10.4 21.43c.26.43.26.92 0 1.4L525.42 1187c-.2.63-.77 1.02-1.44 1.02zm-18.24-3.22h17.24l10.6-22.36-8.6-17.88z" stroke="#fff" stroke-opacity="0" stroke-width="2" fill="#fff"/><use xlink:href="#L" transform="matrix(1,0,0,1,450.0000000000002,1217) translate(44.22222222222223 14.222222222222221)"/><use xlink:href="#M" transform="matrix(1,0,0,1,450.0000000000002,1217) translate(54.98765432098765 35.55555555555556)"/><path d="M129 948.55h35a6 6 0 0 1 6 6v158.14a6 6 0 0 1-6 6h-43" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M121.96 948.55l12.92-7.64v15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M121.03 1119.67H120v-1.95h1.03z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M369 1148h110" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M361.96 1148l12.92-7.64v15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M480 1148.97h-1.03v-1.94H480z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M80 46a6 6 0 0 1 6-6h668a6 6 0 0 1 6 6v128a6 6 0 0 1-6 6H86a6 6 0 0 1-6-6z" fill="none"/><use xlink:href="#N" transform="matrix(1,0,0,1,80,40) translate(43.06172839506189 61.11111111111112)"/><use xlink:href="#O" transform="matrix(1,0,0,1,80,40) translate(155.2592592592594 61.11111111111112)"/><use xlink:href="#P" transform="matrix(1,0,0,1,80,40) translate(287.20987654321 61.11111111111112)"/><use xlink:href="#Q" transform="matrix(1,0,0,1,80,40) translate(505.97530864197535 61.11111111111112)"/><use xlink:href="#R" transform="matrix(1,0,0,1,80,40) translate(408.1481481481483 96.66666666666666)"/><use xlink:href="#S" transform="matrix(1,0,0,1,80,40) translate(511.85185185185196 96.66666666666666)"/><path d="M560 326a6 6 0 0 1 6-6h228a6 6 0 0 1 6 6v48a6 6 0 0 1-6 6H566a6 6 0 0 1-6-6z" fill="none"/><path d="M-1260 509.77h120v120h-120z" fill="url(#T)"/><path d="M-1280 635.77a6 6 0 0 1 6-6h148a6 6 0 0 1 6 6v48a6 6 0 0 1-6 6h-148a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><use xlink:href="#U" transform="matrix(1,0,0,1,-1275,634.7671910504771) translate(43.49382716049383 17.34722222222222)"/><use xlink:href="#V" transform="matrix(1,0,0,1,-1275,634.7671910504771) translate(39 38.68055555555556)"/><path d="M200 1366a6 6 0 0 1 6-6h188a6 6 0 0 1 6 6v241.78a6 6 0 0 1-6 6H206a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><path d="M201.5 1366c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76-4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.05 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.68 1.5-1.5 1.5-.84 0-1.5-.67-1.5-1.5s.66-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.68 1.5-1.5 1.5-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5c.82 0 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.66 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.84 0 1.5.67 1.5 1.5zm6.08 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm6.06 0c0 .83-.67 1.5-1.5 1.5-.82 0-1.5-.67-1.5-1.5s.68-1.5 1.5-1.5c.83 0 1.5.67 1.5 1.5zm6.07 0c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm4.24 1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.06c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.06c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0 6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0 6.05c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-1.76 4.24c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-4.24 1.76c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.66 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.84 0 1.5.67 1.5 1.5zm-6.05 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.68 1.5-1.5 1.5-.84 0-1.5-.68-1.5-1.5 0-.83.66-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.66 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.84 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5-.82 0-1.5-.68-1.5-1.5 0-.83.68-1.5 1.5-1.5.83 0 1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.84 0-1.5-.68-1.5-1.5 0-.83.66-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.08 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.07 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-6.06 0c0 .82-.68 1.5-1.5 1.5-.83 0-1.5-.68-1.5-1.5 0-.83.67-1.5 1.5-1.5.82 0 1.5.67 1.5 1.5zm-6.07 0c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm-4.24-1.76c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm-1.76-4.24c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.03c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.03c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.04c0 .84-.67 1.5-1.5 1.5s-1.5-.66-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5zm0-6.03c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.05c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zm0-6.04c0 .82-.67 1.5-1.5 1.5s-1.5-.68-1.5-1.5c0-.84.67-1.5 1.5-1.5s1.5.66 1.5 1.5zm0-6.06c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.82.67-1.5 1.5-1.5s1.5.68 1.5 1.5z" fill="#6c3cc4"/><path d="M200 1360h56v56h-56v-56z" fill="#6c3cc4"/><path d="M200.5 1360c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm6.22 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm6.22 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm6.23 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm6.22 0c0 .28-.24.5-.5.5-.3 0-.5-.22-.5-.5s.2-.5.5-.5c.26 0 .5.22.5.5zm6.2 0c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5s.24-.5.5-.5c.3 0 .5.22.5.5zm6.23 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm6.23 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm6.22 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm6.22 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm0 6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0 6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0 6.23c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0 6.22c0 .26-.22.5-.5.5s-.5-.24-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm0 6.2c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.26.22-.5.5-.5s.5.24.5.5zm0 6.23c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0 6.23c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0 6.22c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0 6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm-6.22 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-6.22 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-6.23 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-6.22 0c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5s.24-.5.5-.5c.3 0 .5.22.5.5zm-6.2 0c0 .28-.24.5-.5.5-.3 0-.5-.22-.5-.5s.2-.5.5-.5c.26 0 .5.22.5.5zm-6.23 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-6.23 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-6.22 0c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-6.22 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm0-6.22c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0-6.22c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0-6.23c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0-6.22c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.26.22-.5.5-.5s.5.24.5.5zm0-6.2c0 .26-.22.5-.5.5s-.5-.24-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm0-6.23c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm0-6.23c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0-6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm0-6.22c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5z" fill="#fff" fill-opacity="0"/><path d="M231.76 1388.3h-1.18v-1.1c-.12-1.73-1.48-3.07-3.2-3.2-1.9-.13-3.54 1.3-3.67 3.2v1.07h-1.17c-.44 0-.8.36-.8.8v6.13c0 .44.36.8.8.8h9.23c.44 0 .8-.36.8-.8v-6.1c0-.43-.36-.8-.8-.8zm-6.4-1.06c.1-1.03 1-1.77 2-1.67.9.08 1.58.77 1.67 1.67v1.06h-3.72zm5.65 7.08h-7.67v-4.42h7.63z" fill="#fff"/><path d="M232.26 1388.3c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-4.38-4.3c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5 0-.27.23-.5.5-.5.28 0 .5.23.5.5zm-3.67 3.2c0 .28-.2.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.3 0 .5.22.5.5zm-1.97 8c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm5.4.8c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5s.24-.5.5-.5c.3 0 .5.22.5.5zm4.63 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm.8-6.9c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-.8-.8c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-6.4-1.06c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm0 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm5.65 7.08c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5s.24-.5.5-.5c.3 0 .5.22.5.5zm-7.67 0c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm0-4.42c0 .28-.22.5-.5.5s-.5-.22-.5-.5.22-.5.5-.5.5.22.5.5zm7.63 0c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5z" fill="#fff" fill-opacity="0"/><path d="M242.27 1385.74c-.1-2.44-1.58-4.47-3.87-5.3-1.58-.46-3.16-.13-4.4.9-.68-1.44-1.47-2.6-2.6-3.75-3.24-3.36-7.94-4.3-12.18-2.4-4.04 1.9-6.4 5.63-6.54 10.05v.7c-3.4.97-5.66 4.08-5.5 7.65v.63c.38 4.28 3.92 7.52 8.2 7.47h26s7.42-.63 7.42-8.1c.04-3.9-2.66-7.2-6.53-7.86zm-.96 14.4h-25.9c-3.47.05-6.3-2.53-6.6-5.97v-.52c-.15-3.05 1.93-5.7 4.92-6.3.38-.12.63-.48.6-.9-.06-.4-.06-.73 0-1.14.07-3.78 2.1-6.94 5.52-8.6 1.25-.57 2.4-.8 3.83-.84 2.62.08 4.87 1.04 6.7 2.94 1.25 1.3 2.04 2.6 2.62 4.3.03.15.1.28.24.37.37.27.87.2 1.12-.17.83-1.18 2.25-1.67 3.62-1.3 1.8.72 2.87 2.4 2.83 4.32-.07.4.22.83.64.9 3.57.36 6.2 3.55 5.82 7.12-.3 3.13-2.7 5.52-5.82 5.85z" fill="#fff"/><path d="M242.77 1385.74c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5 0-.27.22-.5.5-.5.27 0 .5.23.5.5zm-3.87-5.3c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-4.4.9c0 .3-.24.5-.5.5-.3 0-.5-.2-.5-.5 0-.26.2-.5.5-.5.26 0 .5.24.5.5zm-2.6-3.75c0 .27-.22.5-.5.5-.27 0-.5-.23-.5-.5 0-.3.23-.5.5-.5.28 0 .5.2.5.5zm-5.72-3.1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm-6.46.7c0 .28-.23.5-.5.5-.28 0-.5-.22-.5-.5s.22-.5.5-.5c.27 0 .5.22.5.5zm-4.7 4.1c0 .27-.22.5-.5.5-.27 0-.5-.23-.5-.5 0-.28.23-.5.5-.5.28 0 .5.22.5.5zm-1.84 5.95c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-4.06 3.6c0 .26-.23.5-.5.5-.28 0-.5-.24-.5-.5 0-.3.22-.5.5-.5.27 0 .5.2.5.5zm-1.43 4.75c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm2.63 5.97c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm5.56 2.13c0 .27-.24.5-.5.5-.3 0-.5-.23-.5-.5 0-.28.2-.5.5-.5.26 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.3 0-.5-.23-.5-.5 0-.28.2-.5.5-.5.27 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm6.5 0c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm5.22-2.68c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm2.18-5.42c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.28.22-.5.5-.5s.5.22.5.5zm-1.82-5.14c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm-4.7-2.72c0 .28-.24.5-.5.5-.3 0-.5-.22-.5-.5 0-.27.2-.5.5-.5.26 0 .5.23.5.5zm0 0c0 .28-.24.5-.5.5-.3 0-.5-.22-.5-.5 0-.27.2-.5.5-.5.26 0 .5.23.5.5zm-.97 14.4c0 .27-.2.5-.5.5-.27 0-.5-.23-.5-.5 0-.3.23-.5.5-.5.3 0 .5.2.5.5zm-6.47 0c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm-6.48 0c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm-6.48 0c0 .27-.22.5-.5.5s-.5-.23-.5-.5c0-.3.22-.5.5-.5s.5.2.5.5zm-6.48 0c0 .27-.24.5-.5.5-.3 0-.5-.23-.5-.5 0-.3.2-.5.5-.5.26 0 .5.2.5.5zm-4.4-1.8c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5 0-.27.23-.5.5-.5.28 0 .5.23.5.5zm-2.2-4.17c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5 0-.27.24-.5.5-.5.3 0 .5.23.5.5zm4.92-6.83c0 .27-.22.5-.5.5-.27 0-.5-.23-.5-.5 0-.28.23-.5.5-.5.28 0 .5.22.5.5zm2.14-7.1c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.3.22-.5.5-.5.27 0 .5.2.5.5zm3.98-3.53c0 .3-.22.5-.5.5s-.5-.2-.5-.5c0-.27.22-.5.5-.5s.5.23.5.5zm10.53 2.1c0 .27-.23.5-.5.5-.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5.27 0 .5.22.5.5zm2.62 4.3c0 .3-.24.5-.5.5-.3 0-.5-.2-.5-.5 0-.27.2-.5.5-.5.26 0 .5.23.5.5zm4.98-1.1c0 .3-.22.5-.5.5-.27 0-.5-.2-.5-.5 0-.27.23-.5.5-.5.28 0 .5.23.5.5zm2.83 4.32c0 .28-.2.5-.5.5-.26 0-.5-.22-.5-.5 0-.27.24-.5.5-.5.3 0 .5.23.5.5zm4.95 3.33c0 .28-.22.5-.5.5-.27 0-.5-.22-.5-.5s.23-.5.5-.5c.28 0 .5.22.5.5zm1.5 4.7c0 .26-.2.5-.5.5-.26 0-.5-.24-.5-.5 0-.3.24-.5.5-.5.3 0 .5.2.5.5zm-5.8 5.84c0 .26-.24.5-.5.5-.3 0-.5-.24-.5-.5 0-.3.2-.5.5-.5.26 0 .5.2.5.5z" fill="#fff" fill-opacity="0"/><g><use xlink:href="#W" transform="matrix(1,0,0,1,271,1380) translate(0 14.4)"/><use xlink:href="#b" transform="matrix(1,0,0,1,271,1380) translate(56.800000000000004 14.4)"/></g><path d="M-1276.53 900.55H-1036a6 6 0 0 1 6 6v18.54a6 6 0 0 0 6 6h55" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-1283.56 900.55l12.92-7.64v15.28zM-961.96 931.1l-12.92 7.62v-15.27z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-1276.53 900.55H-1036a6 6 0 0 0 6-6V875.8a6 6 0 0 1 6-6h55" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-1283.56 900.55l12.92-7.64v15.28zM-961.96 869.8l-12.92 7.65v-15.27z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M-539 400h33a6 6 0 0 1 6 6v180.06a6 6 0 0 1-6 6h-25" stroke="#3a414a" stroke-width="2" fill="none"/><path d="M-538.97 400.98H-540v-1.96h1.03z" stroke="#3a414a" stroke-width=".05" fill="#3a414a"/><path d="M-538.04 592.06l12.92-7.64v15.28z" stroke="#3a414a" stroke-width="2" fill="#3a414a"/><path d="M480 1453.78h120v120H480v-120z" stroke="#fff" stroke-opacity="0" fill="#693cc5"/><path d="M533.78 1508.94v-14.4h2.9v6.4l3.94-6.4h3.22l-4.56 6.73 4.94 7.67h-3.45l-4.08-6.96v6.96h-2.92z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M561.5 1507.34c-.83 0-1.54.14-2.37.42l-15.7-23.8c.84-1.17 1.25-2.37 1.25-3.8 0-3.54-2.84-6.42-6.4-6.42-1.4 0-2.66.42-3.78 1.26-2.84 2.13-3.44 6.12-1.3 8.95l-15.75 23.8c-.78-.27-1.55-.4-2.37-.4-2.96 0-5.45 1.94-6.22 4.8-.83 3.4 1.18 6.93 4.62 7.8 3.43.9 6.92-1.2 7.8-4.58h34c.77 2.83 3.26 4.78 6.22 4.78 3.55 0 6.4-2.88 6.4-6.4 0-3.54-2.85-6.4-6.4-6.4zm-46.42 9.6c-1.78 0-3.2-1.43-3.2-3.2 0-1.76 1.42-3.2 3.2-3.2 1.77 0 3.2 1.44 3.2 3.2 0 1.77-1.43 3.2-3.2 3.2zm23.2-40c1.78 0 3.2 1.44 3.2 3.2 0 1.77-1.42 3.2-3.2 3.2-1.77 0-3.2-1.43-3.2-3.2 0-1.76 1.43-3.2 3.2-3.2zm17 35.22h-34c-.22-.97-.64-1.76-1.3-2.5l15.7-23.7c.83.4 1.66.6 2.6.6.96 0 1.78-.2 2.67-.6l15.63 23.7c-.65.8-1.06 1.58-1.3 2.55zm6.22 4.78c-1.78 0-3.2-1.43-3.2-3.2 0-1.76 1.42-3.2 3.2-3.2 1.77 0 3.2 1.44 3.2 3.2 0 1.77-1.43 3.2-3.2 3.2zM579.97 1537.48l-1.12.94c-3.6 2.78-8.48 2.78-12.08 0l-2.16-1.86c-4.86-3.84-11.5-3.84-16.38 0l-2.24 1.86c-3.6 2.78-8.48 2.78-12.07 0l-2.15-1.86c-4.88-3.84-11.52-3.84-16.4 0l-2.24 1.86c-3.58 2.78-8.38 2.78-12.06 0l-1.04-.88v4.1c4.88 3.03 10.8 2.72 15.27-.8l2.24-1.87c3.6-2.78 8.5-2.78 12.1 0l2.15 1.88c4.88 3.82 11.5 3.82 16.4 0l2.23-1.88c3.6-2.78 8.48-2.78 12.08 0l2.23 1.88c2.4 1.94 5.03 2.86 8.07 2.8 2.72.04 4.96-.6 7.2-2.07v-4.04z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M579.97 1547.65l-1.12.9c-3.6 2.8-8.48 2.8-12.08 0l-2.16-1.84c-4.86-3.84-11.5-3.84-16.38 0l-2.24 1.86c-3.6 2.78-8.48 2.78-12.07 0l-2.15-1.85c-4.88-3.84-11.52-3.84-16.4 0l-2.24 1.86c-3.58 2.78-8.38 2.78-12.06 0l-1.04-.9v4.1c4.88 3.06 10.8 2.75 15.27-.78l2.24-1.85c3.6-2.8 8.5-2.8 12.1 0l2.15 1.85c4.88 3.83 11.5 3.83 16.4 0l2.23-1.85c3.6-2.8 8.48-2.8 12.08 0l2.23 1.85c2.4 1.95 5.03 2.86 8.07 2.83 2.72.04 4.96-.6 7.2-2.06v-4.08zM579.97 1526.05l-1.12.9c-3.6 2.8-8.48 2.8-12.08 0l-2.16-1.85c-4.86-3.8-11.5-3.8-16.38 0l-2.24 1.86c-3.6 2.8-8.48 2.8-12.07 0l-2.15-1.86c-4.88-3.8-11.52-3.8-16.4 0l-2.24 1.86c-3.58 2.8-8.46 2.8-12.06 0l-1.04-.9v4.12c4.88 3.04 10.8 2.73 15.27-.8l2.24-1.84c3.6-2.8 8.5-2.8 12.1 0l2.15 1.83c4.88 3.84 11.5 3.84 16.4 0l2.23-1.83c3.6-2.8 8.48-2.8 12.08 0l2.23 1.83c2.4 1.94 5.03 2.85 8.07 2.8 2.72.04 4.96-.6 7.2-2.06v-4.03z" stroke="#fff" stroke-opacity="0" fill="#fff"/><path d="M480 1579.78a6 6 0 0 1 6-6h108a6 6 0 0 1 6 6v28a6 6 0 0 1-6 6H486a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><g><use xlink:href="#X" transform="matrix(1,0,0,1,484.99999999999886,1578.7757705109927) translate(13.129629629629633 17.97222222222222)"/><use xlink:href="#Y" transform="matrix(1,0,0,1,484.99999999999886,1578.7757705109927) translate(58.46296296296296 17.97222222222222)"/></g><path d="M60 1726a6 6 0 0 1 6-6h648a6 6 0 0 1 6 6v40.67a6 6 0 0 1-6 6H66a6 6 0 0 1-6-6z" fill="#fff" fill-opacity="0"/><g><use xlink:href="#Z" transform="matrix(1,0,0,1,65,1725) translate(144.32098765432113 16.90972222222222)"/><use xlink:href="#aa" transform="matrix(1,0,0,1,65,1725) translate(260.71604938271616 16.90972222222222)"/><use xlink:href="#ab" transform="matrix(1,0,0,1,65,1725) translate(295.28395061728406 16.90972222222222)"/><use xlink:href="#ac" transform="matrix(1,0,0,1,65,1725) translate(313.01234567901247 16.90972222222222)"/><use xlink:href="#ad" transform="matrix(1,0,0,1,65,1725) translate(342.6419753086421 16.90972222222222)"/><use xlink:href="#ae" transform="matrix(1,0,0,1,65,1725) translate(501.4567901234568 16.90972222222222)"/><use xlink:href="#af" transform="matrix(1,0,0,1,65,1725) translate(525.1604938271605 16.90972222222222)"/><use xlink:href="#ag" transform="matrix(1,0,0,1,65,1725) translate(554.7901234567901 16.90972222222222)"/><use xlink:href="#ah" transform="matrix(1,0,0,1,65,1725) translate(610.5432098765432 16.90972222222222)"/><use xlink:href="#ai" transform="matrix(1,0,0,1,65,1725) translate(650 38.24305555555556)"/></g><defs><image width="10" height="10" id="bm" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAYAAAA+s9J6AAAAAXNSR0IArs4c6QAAGGpJREFUeF7tXQuwlsP/3+N+LXcV/YjSQYSamCnMULoikm4uUSEl0rgXIZSimDFNkcuUpEjKNLq4lYi/yzAVEbll3HLvouj857PHe7znnPd9n93n2Wef3ef57MyZ42Qv3/18v5/dffb73d2y8vLyCsFEBLxGoEwI4acZV1RUVJSRhF5bH4X3HAGS0HMFUnz/EdAgob/TvctqUkFVJY/LfSwoWyo7FU4LGiQM1wBLEQEiUBoBYyR0YWBzQQa/DC4fsZjQi6lav3C2RMI0gcK+EAGbCBibCW0KzbaIQJoQIAnTpE32xQwClpfQJGEYtVlWUhgRWcYfBJIhYQkjpn37YzyU1AwCyZCwmOwkpxmtshavEHCLhFXQcT70yooobCQE3CIhuRdJmSzsJwJukdBPDCn1vwhwDA1nCu6SkBrl4ryETafJPNwlYb4C0oR4uMGSpVKMQDUS0tZTrGnXukZjq9KIHzOhawZEefxFwEHyk4T+mhMlTwkCTpPQ7KBltraU6J/dcAABp0kYNz6kZdwIs34VBDJNQhWAtPKQ1VpwMXMlAiQhLYEIJIwASVhUAZzWErZNJ5uPwyqskjCODqhrKtnW1eVkzqwhYJWEWQM3XH85WITDzd9SIUlIQ/FX5ZTcNQRCktC1bsQkj5GxxkglMXUwqWqJST7yJGFSdsh2lRDIAl1JQiVTYCYiUAKBiCOFoySM2CtaDBHwCIHkSVgmRFmFry/LeaRpiuosAsmTMCI0nDNLA0h8IhqYheLek9ACRmyCCMSKAEkYK7ysnAgEI0ASBmPkb47Qa9HQBf3FKkHJScIEwU9z06SxunZJQnWsmJMIxIIASRgLrKyUCKgjoE1CLjPUwWVOIqCCgDYJVSpNU56qQcfZ0cdZwSrNQFc83fwpMDaSMAVKZBf8RoAk9Ft/qZc+CxMjSZh6M2YHXUeAJHRdQ5Qv9Qg4SsIsLEJSb1vsoCICjpJQUXpms4NA1sZEy/0lCe2YMVshAkURIAlpHEQgYQRIwoQVYLx5y0sp4/J7VKEpqFNIwkpoTAHkkU1QVE8RSCEJPdVEgNidO3cWN998s9h1113F9OnTxYMPPii2bNmSzs460ys7Q3lGSWgHXFO2dMQRR4jnn3++WnULFy4UN9xwg9i8ebOpZlhPQghklIQJoR2y2fbt24sJEybUKv3mm2+KQYMGiU2bNoWsmcVcQIAkdEELATI0a9ZMzJw5U5SVYQavnt5++23Rr18/8ffff3vQE4pYCAF7JExqBZhUu4bt7frrrxeXXHJJwVrfffddccEFFxhusXh1diBVaaVEHpXi1hAr3ZA9EhaUwyOkElbYzjvvLF588UVRr169gpK88cYbckbMdPLUnDRI6GkPU2SVjRs3FvPmzSvaIxLRYWWXoI8GCR3uoKpoKRhHzj//fDFy5Ej5fVjx78H1/O6TiKrG4E6+bJHQHdzDSYJ3O0SZmDhxojj11FOL1oFvRCxN//rrr3DtZK5UsqNzARLWFihZETNnEYEd3n777cXLL78sDjjggKJ5ly9fLt0XGzduDKyPGZJFgDNhsviHbr158+biiSeeENiwKZbgR7zyyivp0A+NcsSCirMXSRgR5+DiipoIrqhWjqFDh4oBAwYU9B/mMi9dulQMHjyYIW4h8LVVhCTUQDoOOkWt88knnxQnnHBCyV5gRrz00ks1esqsphBQ0S9JaArthOrZd999pf9wjz32KClBLLumKhaWEC4+NUsS+qStIrKefPLJYvLkyYE9eeedd8SFF15YPJ93pPJO4ILYk4SBputHhuHDh4s+ffoEChtIxMAaMpDBMrdJwiRtyqCysRydMWOGOPzwwwN7BD9i3759GfQdiJSdDCShAZwNcimSNIceeqgMa9thhx0C68HpC+ys8mBwIFSxZyAJY4fYbgMIa7v99tuVGoX7YsiQIfQjKqEVXyaSMD5sY6y5+NyLmNJp06YFui1ywmFGRGTNn3/+GaO86aza1AqIJEynfQi4JPbee2+l3n388ceiZ8+e5mJNTVmnkvT+ZyIJ/ddhwR40aNBA4B4axJnKVOjIRV7Jzz//XJx11lnin3/+SSki7naLJDSkm913311MnTpVxnKOHTtWvPrqq4ZqDl8NvvcGDhyoXMEnn3wizj33XBJRGTEzGUlCAzjutddeYtGiRdWiVr7//nuxYMECeezo119/NdCKfhX4PkRY2/HHH1+rcLGJcfXq1aJbt24kYh5ica+uSUJ9265Vol27dvIe0EIJZ/qw+QEfHo4f2U5Ylj777LMCA0Xp9B8tV65cKXr06EEiWlIWSWgA6JYtW8qlaFD66quvxOzZs8WcOXMEZkpbqWPHjuL+++8P+iysJs5HH30kevXqZW6zxlZnPWyHJDSgtF122UU8+uij4rjjjit5rCi/qblz58oZCtErNjZDbrvtNrkDqpOwa4pYU6vui6q1X9yLQB0k4s1LEhrCF99fuHawf//+JU+812zu22+/FY8//rhcqq5bt86QNLWrwfX5s2bNUgpryy+NzRqEuP3yyy+xyZb1imMnYXbGs0pTgktg9OjRom3btgIzpGratm2bWLJkiSwLYm7dulW1qHK+ww47TDz33HNip5120lqagoiYEX///XfltphRHYHYSaguSlI584cJc0PGPvvsIyNXEM9Z6ObsUr3FtfZYPsLPZ/qyJjwsM27cOG2w16xZI7p3784QNx3kFM2JJCwFqiKIxarYbrvtRKtWraSbQmdWzNWH4Gpc2IRjSj/++KOO+ovmxYCATaQWLVoEe/Br1AIidu3a1co3rJHOelIJSRhJUWoshSMf34vXXHNNqNbwzsQ333wjHn74Ybm7GjVhQEBYG74TdRPdF7qIBY/yJKFJTAPqOvjgg8WNN94oTj/99NCtYkZctmyZeOihhyQxw6ZGjRoJ7NCqHHuq2caKFSvkTquNXd2w/Yu9nNr4GyBGZSUkYezaqt0ArqPAg5/4XoyS3nrrLflu4fz580N9O5Z6ZCZIrlWrVgkcm8o0EYNAUvz/JKHSWKWIpkY27FAiKgWxnaqnHYpVj7A4kBE/cLLrJJXb2orVh6Bv9MGqH1Gnc57kJQkTVhR2UfHibqdOnUItDfPFh5vjvffek5cC45vvv9u3i6+dDjzwQBk0gFvbwqRPP/1UXHTRRYnFx4aR2bUyJKFJjUT4TsCT2GPGjBHl5eVGJIJrY9KkSfK6CwQBVFQgNrRw6tKli/RPVh170pQAfkS8nfjzzz9rlmR2IEASOmYHONN3yy23iDp16hiT7MMPP5RXXsDFUOxOmREjRojevXuHbhNEP/vss8WGDRtC1+F8wQiDbKm+kYSOah4zE4zaZIKrA6c9Hn7k4cpDvjUSggMaNmwYukkQsX379tE2a2Iy9NCdslCQJLQActgm9t9/f0kaBIabTFiq4twgdke//PLLqqqbNGki3RZRUvUT+hlkVAjwgklIHP99irP4N1UI3JWLwI934oknyqNIJpeoOQHWrl0rXRxTpkwRCJcLG9aW3yFG1vyHhsqhkGASKpsLM8aJAKJbcPUEQtjiSHAzvPN/74gnpz8pzxGedtppkZrBDAtC048YDGMwCTkTBqNoMUf9+vXFsGHDRIcOHULvZpYSF24OnOJAdE/UhG/E8847j+6LACCDSRhVE2kvn9Ag1aZNG3H11VeLZs2aOY3w+vXrxZlnnsnziMW0VCZExbaKirLy8vJkPnicNh8/hLv44ovl24Olns5Ouic//PCDnBFNnQRJuj+m2+dMaBrRBOrbbbfdxKhRo+R3XKnnsxMQrapJEBG3uP30009JiuFk2yShE2oxs6bF9+LMmTPFfvvt50SvagoBImJpmvkT+jXUTRI6aa7RhGrcuLGMB0WQeJQUcGl3qKoR2nbGGWekO7JGExmSUBMwX7LDpYHA6quuuiqWXdQoOGBJihP62LRhCowdNbNMItDJIXDQQQfJ+2pwhtGlhE2ac845J7NEzGcWZ0KXLDMmWXCvTOvWreWpfpWXfGMSo1a1dF9UQkIS2rI4B9rBzimuLrz88survZuRpGj4RkSgepZ3Tb0kYZYXyYglxfceLmuCawK/8TcIht/4wcVSOK2/5557yjw4OIy3KPCufd26dUW9evUib9qYJO5vv/0mQ/IQqZPF9B8JPbVsd8QuLQl2KnM/O+64o/xvECf3Gwdqc+QBaeB8x2l3kAl/4wf/H0RKYwIR4UeM8xZyV3Hzcia0BSaIgZkHPyBOod8gBvxy+AFxMPuAPPjBv4FEwS8i2eqR2+3Af4jImq+//tptQSNJV3uwTiUJcekuNiPwk/vv/N+YgXBWD7MKfuOeFewi4jf+xnINM09UP1skXaWusJrX8Y8//pAOfZuvViUNdSpIiEDmk046qWomyidfPhnziZg08Gy/OAJ4Qg4n9LOSvCYhloiLFy/WCl5WG4+zon53+4mBFddtZCF5TUIsH114Gz4LhmK7j3guDrfPZSHFSML49y1JwvSaKK5rnDBhQno7mNezGEkYP37YOMGt01Gvk49fUraggwBO92OXVPc2cZ02XMrrNQlzQPbr10/g8lw4prHzmXNiw5Gdc2bnHNrYnPE2xfRBG1O1oWGeM2eOuOmmm0KX961gKkioCjr8fvDdwZcH/x1+8HcuogS+Pfw/+P7gE8x3roPE2AhCHfj3MK8ZqcqZ5XyvvPKKGDx4sMBsmJWUKRKaUWrlty7ICvLCr4jDtHDI5wie8zWC5CBt/g9mYhAYv3P/rvuSr5l+uFfL0qVLxRVXXJEpAkILJGGStlgmxHZl28kZGcTFD245w4YTfmNmzgUQpDVcLQc/nnnDexal3sxIUlVxtm2VhPHvl8YJVbJ1Y7bMzZyYSfE3lsf5/44lM2ZlkBkhdPi7QYMGcpbOzdhRn2GLAwUQcMCAAWLr1q1xVO98nVZJ6DwaqRKw9pAH8g4ZMkQ+3R3mqew44METbjhahXcyspqMkZCznNsmhNeeEIWCmdGVhG9AEDCLS9B8HRgjoSuKpRzVETjmmGPEtddeK2Nr3UkV4pVXXs3cLmgx/ElCdyzTqCTYvcUlTz179pTfji6ll156SS6Ls+SGKIU/SeiSdRqQBZs3HTt2FHfeeacMVNBNcTvuScDaGiEJda3UufyVX+PYJW3atKkYP368s2F8CLYfNGgQZ8AaNkQSOkcqfYEQpnfPPffIS3WTT4XnUuyCwg3BJShnwuRt1LAEeBAGGy8u3wIAP2D//v0z7Ybw6psw3a4Oc73D67141x5XcbicQEAE2POx0OJa4nLUZQsuIBviVSdOnCiOPvrootfbR91cwV2gaCdqoiNeDUGSUA2nRHNh/txp553FddddJ3r06BH9BEcNluLPvzZvFi+88II8n4kgatzYHSVxE0YdPaskNLcYU++g7zmx64kbqnG8BzfCmU6fffaZmDVrlpg7d658TRckHzlyZKRm6IbQg88qCfVEY248hY33I1q0aGEUjC1btojXX39dTJ8+XSxbtqyq7qOOOkrMmDEjknOfBNRXFUmoipnFaRxHmC677DL5tJmpBNcArplfsGCBvLulZsA0DjKDlLihIGzK4oFcHayKmRBJqINizHlxyqFLly7ijjvuiDQb5Yu5ceNG8cEHH4gHHnhA/i6W7r77bvlUWdhEAoZFjod6wyNnsCS++xo1aiSeeeYZY0eMNm3aJJ566ik561U/p1d7PMalSghzC5vwKvDw4cPDFs98Oc6ECZsATsxPnjxZNG/eXF55ETWtXbtW7m5i6alyRg+HfRctWiQvyAqTQMARI0Z4chzJ4jeFBpgkoQZYprMOGzZM9OrVS14sFSVh1nvkkUfE7NmzxXfffadVFcoceeSRWmVymUHAW2+91UIompvkCQVagUIkoSkkNerp0KGDAAFxj0x+0nWyv//++2LKlCli+fLlYsOGDRoSVGbFt2f37t21y6EAls6YAUOndPNKCxaSUAuuaJlBOhhumzZtQi89c9968+fPFytXrgwtEJa/06ZNC+X4j0zA0FKns6A9EmZ45KtTp448QYAg5jAJ7oUVK1bI5SYIEDUOE+cMlyxZIq9t1E1w7GMJymQOAXskNCezNzXhZEPXrl1luFmYKwvXr18v4PyG/2716tVG+g03CB5bCRMAQAIaUUGtSkjCeHAViHa56667Qjm/16xZI0PJ4GKIeg1gzQVInz59pDtB9/uTS9CYDIWX/5oHFktPxF7iigmdBKf6qlWrZIwo3m+PI2FgALl1Ewmoi5hefg9mQn8+Jvv27SuXnjr+Puxqjh07Vjz99NN6mtPMDT8golp0L/+lI14T6BDZPSBhiF5ZLoLbzLBbiVMOqu9KvPbaa2LcuHHiiy++UHKqR+0S2urcubNWNfb8gFpiRc6sO6zr5tcV0D8Sxo2ILoJCiJYtW4qpU6cGlty8ebO49957BQiIiBZbCceTsKOpM0P7FQljC8l42vGPhPHgEKlWXLCEAOlCCe4EkA6bLDhpbvuiI8Sk4ngSvlVVE78BiyAV0wTgHwljAkLVQAvlw1UQ+N7Kv2wJMx2c4QsXLhTr1q2LUn3ospj58OBmkyZNlOuwT0AHFaqMlpmM/pEwRL9tqBkXLg0cOFAeQYIjfPHixVa+9UrBoRuWlgk/oA1j0LTRTJBQE5NUZG/VqpUM6la9Aj8TBHRUs36T0MFRzQU949kzzMaqUTr2l6AuoOSODH6T0B0czUoSYXCBiwTfp3jhVyWZ8QNGEFhFSKU8LsigJGitTP+R0HIfLDcXDh0PS/Xu3Vv5iBHdEG4omDOhG3owIgVuS8O3nYo/0A4BOdSqKDbTJEyTieCGtnnz5imFpcVLwDShqkKh6HkyTcLo8LlQQ5koKxMyWKBdu3aBAnETJhAi6xlIQuuQm2+wW7duYtSoUYEVu+aG4JxZqTKSMNB03c6AaBicwIBbolQqSsBiTCBDrCmeJLQGtV5DKhxAmBxO3eOFplKJS1A97G3nJgltI26wPSxBsRQlAQ2Caqmq/EHWGxKqzAyW8HOimVNOOUVMmjSpoCy5qyvMOOKd6G6qhfCGhPlayDohEQ+K15RK3ZYWrxsi1Zyw3jkvSWgdJYcahCMep/gPOeSQolKl9US8Q2owJErldEISGoLTVjVDhw6Vd5gWu0YDN3LjKovIKevLjcgAqldAEqpjlXjOY489tuSFUI899pi8PsOLlBGSq3STJPTCYoWoW7euvAi42OMxuNB3zJgxnvSGYuYj8C8Jj6zA2pTJQQTKhNhh+x3E+PHjRdu2bQsKmEUCqswwDmqzhkiZ+ya0rzZTLbZu3Vqeki+UvFqCus+KRCTkcjQR2PUa7dSpk7jvvvtqFTK2CaMnToHcpoabyIJ4WQFJ6IHaGjZsKG9ty0943RdLVCb/ESAJPdHh//73Pzkb1q9fX4wePVr6Cm3fYWoXqhTPrjW6Fp6EKcbIrrGxtSwi4GXsaBYVxT67gUDc8w1nQjf0TCkyjEB4EmYYNHadCJhEIP0kjHstYVIbrCuTCKSfhJlUa9o6rTuS6uZPFq/ELv9Nttts3WUE/KJQdCQ5E0bHMKM12KeK/RbzVRtf6yRhRinEbruDQAAJ42O/OxBQkjQhYM1iDTakNxMabDhNimdfiEAUBPRIGKUllnUKAY6n7qiDJHRHF5QkJQjoDnAkYUoUz274i0AkEuoy3l+YKDkRiA+BSCSMTyzHa+bo47iCdMUzpdBw9ZCEuvpi/tgRCGfKsYtVvQGDQpKElnXH5ohANQTKhKjYVlFRVl5eHuq+Q4ODATVDBDKLAGdCVdVzxFFFivk0ESAJNQFjdvcQ8G58NHbRk3u6oEREQHhHyMy9We+jhkis1CPA5WjqVcwOuo6ANgmtTSbWGnJdRZQv7QjwVaa0a5j9cx4B7ZnQ+R5RQCIQOwJml2kkYewKYwPRETBr9NHl0a2htPwkoS6ezJ8YAr5TsRhwJGFiJsWGiUAlAiQhLYEIJIwASZiwAtg8ESAJaQNEIGEESMKEFcDmiQBJSBsgAgkj4CUJ07pVnbAtJNQ8teklCROyFjZLBGJBgCSMBVZWSgTUESAJ1bFiTiIQCwIkYSyw+lspv9Ds6y6YhNSKfa2wxUwhEEzCTMHBzhKBcAhEmasySsIokKkryU4r6vIwp5sIZJSE6sogkdSxYs5wCJCE4XBjKe8RcGd49ZuEVTi6A6j3tpnXgeygmmxP/SZhmiyefcksAiRhZlXPjruCAEnoiiYoR2YRIAkNqD7ZLwoDHWAViSJAEiYKf9KNc/hIWgNonyR0QQuUIdMIkISZVj87nywClSsRkjBZLbB1IlBJwqZNm24jFuERqBBCPk7JRARUEaiymX//4/8BshNdmkQxQnoAAAAASUVORK5CYII=" preserveAspectRatio="none"/><image width="10" height="10" id="bK" xlink:href="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAACRyWFlaAAABFAAAABRnWFlaAAABKAAAABRiWFlaAAABPAAAABR3dHB0AAABUAAAABRyVFJDAAABZAAAAChnVFJDAAABZAAAAChiVFJDAAABZAAAAChjcHJ0AAABjAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAAgAAAAcAHMAUgBHAEJYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9YWVogAAAAAAAA9tYAAQAAAADTLXBhcmEAAAAAAAQAAAACZmYAAPKnAAANWQAAE9AAAApbAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAACAAAAAcAEcAbwBvAGcAbABlACAASQBuAGMALgAgADIAMAAxADb/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkLEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAARCADhAOEDASIAAhEBAxEB/8QAHQABAAMAAgMBAAAAAAAAAAAAAAcICQQGAgMFAf/EAEcQAAEDAwIDAwcIBgcJAAAAAAEAAgMEBREGBwgSITFBYQkTFCJRcbMjMjY3QnR1gRVSYnKRoRZDgpKiscEXGSRTZJOV0dL/xAAbAQEAAwEBAQEAAAAAAAAAAAAABQYHBAMCCP/EADoRAAECBAQEBAMFCAMBAAAAAAEAAgMEBREGITFREkFhcQeBkbETMqEUIjXB0SMzQlKy4fDxFWLCcv/aAAwDAQACEQMRAD8AidERfpNfkpERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERW0sfk9tW3azUN0n3CtVNJWU8c7oRSSP83ztDuXmyM4z24UfP1SUpgaZt/Dxaa8uwKk6bRp6sFzZKHxltr5gWvpqQqlopm3/4Zr9sJSWi4XHUdFdqa7SSwtdBE6N0b2AHBDs5BB7c9yhle8pNwZ6EI8u7iaefbJc09IzFNjmWmm8LxqO+fJERF0rlREVrtL+T/wBV6j03a9QSbgWulNzo4awQeiSPMYkYHBpdkZIBXBP1OUpjWum38IOmv5AqSptHnau5zJKHxluuYFvUhVRRTZv9wvX/AGGtNrvdw1LQ3aluVS6l+RidG6OQN5hkHOQQD18FCa9ZScgT8IR5d3E08/8Aa8J6QmKbHMvNN4Xjl37IiIupciIiIiIiIiIiIiIiIiImERERERERF5MY+V7Y42Oe95DWtaMkk9gARF4opy0Bwa74a8hjrXWOnsFFKA5s94lMJI8Imh0n8WgeKkWbydWvG03NBuFYHz4+Y+CZrM/vAE/4VCx8RUuXf8OJHbfpn7XU/L4VrM1D+LCl3W65e9iqkIpY3I4Xd5tsIJrhfNMGttsALn19tf6RCGjtcQAHsHi5oUTqSlpqBOM+JLvDhuDdRM3JTEjE+FMsLHbEWRbL6V+jFn+4U/w2rGhbL6V+jFn+4U/w2qg+IXyS/d3/AJWm+F37ya7M/wDSqr5Rj6I6N/Eqn4TVRJXt8ox9EdG/iVT8Jqokp3Bv4PD7u/qKrePvx2L2b/SERTlsbwl653qtE+pGXCCw2druSmqquFzzVPB9bzbQRlo73E4z0GcHEof7uXU3dufbP/HSf/a7pnEdLlIpgxowDhqLE+wKjZTClYnoLZiBAJa7Q3Av6kFU9WxG3H1eaX/BaH4DFkjrXStbofVt30fcZ4Zqqz1ktHLJC7LHuY4glvgcLW7bj6vNL/gtD8BiqmPntiS8u9puCSR6BXbwzhuhTU1DeLEBoPcEquPlE/q30x+OH4EioKtUOJHYuXfnSNBp+m1Ay0VFurhWRyyQGVj/AFHMLSAQR87OfBVwf5ObVAY4x7nWpzwDyh1vkAJ7snmOP4L7wtX6dIU5sCZicLgTlY8z0C88ZYZqtSqr5mVg8TCG53byFuZBVPkXMvNprLDeK6x3BrW1VuqZaScNOQJI3FrsHvGQVw1oQIcLjRZc5paS12oRFLO23C7vLuhBDcLHpn0G2zgFlwucno8Jb3OAwXuHi1pUwQ+Tp1u6mDqjcWxsnx1YymmczP7xwf8ACoiZr9Mk3/DjRgDtr62vZTknhmrz7PiwJdxbucr9r2v5KoyKfdccEu+Ojon1dDbKHUdKwFxfapy6QDxjkDXk/uhy7dpHyf2tdRaat19umtrfaKivgbUOon0Ukj4A4ZDXnLfWA7RjoenVfMTEVLhwxFdHbY5ZZ/QXI819Q8LVmLFMBsu7iGeeXoTYHyKqoim7fzhZ1DsRZ7dfq7U1DeKOvqDSkwwuifFJy8wyCTkEA9c9yhFSEnOQJ+EI8s7iaef+1Fz0hM0yMZeaZwvHLLn2yRERdS5ERERERERF5Rxvle2KJjnveQ1rWjJJPYAFolwscK1n26s9HrjXNtjrNV1bGzxQ1EYLbY0jIa0H+t6+s7u7BjBJrHwX7dxa83qoquugbJQabgddpmuGQ6RpDYW+/ncHe5hWmazjG9biQnCnQDa4u4jroPzO+S1fw7w9CjtNVmW3sbMB0y1d+Q2z6Iio3xTcX+poNTV+3W1d2Nupba91LX3SnPy807Th7In/AGGtORzDqSDggKrtHuZuNb7kLxRa91DFWh3P6Q25Tc5Piebr+aiKfgibnJcR4jwy4uAQSfPb6qcqniJIyEyZeFDMThNiQQBfnbf6BbCua17Sx7Q5rhggjIIVJuMDhVtlsttVuvtrbW0sVP8AKXi108eI2s76iJo+aB9po6Y6jGCu48I3FRddza123e4c0Ml+ZEZqCua0MNaxoy9j2jA840DmyO0Z6DGTaWop4KunlpamJksMzHRyMeMtc0jBBHeCFFw4k9hSocLtRa45Ob/mmxUzFhU7GtL4mZg3sSPvMd/mo0IWLC2X0r9GLP8AcKf4bVk9vVob/ZtupqTRbWFsNurXejZ/5DwJIj/ce1aw6V+jFn+4U/w2qz47jNmJeVis0dxEdiGlU/w2gPlZqcgRPmbwg9wXAqqvlGPojo38SqfhNUDcL3Dhcd6tQi73qOSm0la5W+mTdWmqeOvmIz4/ad3A+0hXq3z2I09vvaLVab/da23i1VnpTJKUNLntLeV7DzdBkY69xC7vpTS1i0Vp6h0vpq3x0Vut8QighYOwDtJPe4nJJPUkkqLlcTinUZsnLfvbuuf5QTe43O2ymZzB5qtffPzlvggNsP5iABY7AWz303XLtVqttjttNZ7PRQ0dFRxNhp4IWhrI2NGA0AKAuLHiWp9o7I7SOk6tkmrrnEeUt9YW+E9POu7uc9eQfmegGe28Rm/ln2N0i6q9Sq1BcmPjtVFnteOhlf7GNyCfacDvyMwNRaivWrL5W6j1DcJa643CZ09RPK7LnuP+QHYAOgAAHQL0wph01KJ9tmx+zByB/iP6Dnuct15Y1xW2kwv+OkT+1IzI/gH6kabDPZcKpqaitqJayrnfNPO8ySSPcXOe4nJJJ7SSthNuPq80v+C0PwGLHdbEbcfV5pf8FofgMUv4gC0GABu72CgvC83mJknZvuV2NfhIAyTgBVf4/wDUF7sm2Vhis91qqFtZeQyc08rozI1sMhDSWnJGcHHtAVCX6q1PI0sfqO6Oa4YINZIQR/FQNGwi+ryomhFDQSRa19PMKzV/HMOhTpkjBLyADfitqL7FfR3OmiqNydWVFPK2SKW+V72PYctc01DyCD3ghWr4PuFa2XW20u6+5VtbVQ1A85aLXUR5jc3PSolafnA49Vp6EdTnIVY9mdDu3I3T03ows54rjXMFSP8Ap2AyTH/tsetcqWmgoqaKjpYmxQwMbFGxgw1rWjAAHcAArJjCrxKbAhyEu6znDM8+EZfX8lUsB0KFVpmJU5pt2tOQ5cRzz3sCPXovY1rWNDGNDWtGAAMABfqq3xc8U1z2tqo9vtv5YWagmhbPW1rmiT0KNw9RrWnIMjh63rdA3HQ8wxR2u3N3GudyN4r9eagmrS7n8+65Tc4Pgebp7h2KtUnB01U4AmXvDGnS4uT1tyCt1bx5JUeZMoxhiOb81jYDpfO5HPLzWwyKgfDpxn6qsl9otJbs3h91sdU5sDLnUetU0bycNdI/tkZ7S7Lh256YV+2ua5oc1wIIyCD0IULV6NM0aMIUxodCND/nMKwUOvSlfgGNLGxGRB1B/Q8iqr+UM+qyw/jTfgvWfq0C8oZ9Vlh/Gm/Bes/VqGCvwlvd3usb8Qfxx/8A8t9kREVtVJREREREREVzfJxxwG4a5lwPPCGgaPaG803+o/kro3qSpis9fLR59IZTSuix284YeX+eFnZwL69h0jvL+ga6QMpdUUb6AEnAbUNIkiJ9/K9nveFpAsZxnBfBq7ojhk4NI8hb3C37AEdkehshMObS4HuST7ELFqtfLLWTyTkmR8rnPJ7S4k5z+a9KsrxV8MGpNC6rr9a6Mss9dpa6TuqS2lYXut8rvWcxzR1EeSS12MAdDjAzW6GmqKidtNBBJJM88rY2NLnE+wAdcrWKfPwKjLtmIDrgj06HYhYlVKZM0qadLTLSHA+vUbgrvWwNRX0u9mh5bY54qP07SMHL2ljpA14PgWlwPgStbVS3gv4Z7/Zb3Du3r+1PoDTxuFmoahvLNzOHKZ3sPVoDSQ0Hr1zgYBN0XOaxpc4gADJJ7gssxrPwJ2eayAb8AsSN76eXvdbP4e0yYp9OdEmAW/EdcA7Wtfz9rLNzjujp2b+1LoMc8lqo3TY/X5XAZ/shq0Q0r9GLP9wp/htWVvELrmPcXeTU+qaaXnpJqz0elIPQwQtETCPeGc35lapaV+jFn+4U/wANq6cVQXy9MkYUTUNN/Rq48FzDJusVGND+VzgR24nZ+a+oigTi53w1fslpzT1w0dFROqbncXRzOqojI3zUbOYsAyMcxI65yADj2rvGyW9OmN7dIx6hsbxBWQ4iuNA93ylLNjs8Wnta7sI8QQKo+lzLJNs/w3huJF9rZZ7X5K6srMpEn30zitFaAbHmCL5b2Gv+1R7jb0Triybu1uqtQGaqs965f0XVZzHGxrQDB+yWnJx35z3lV4WxOvtA6Z3L0vWaR1Zb2VVDVt7wOeJ+PVkYfsvbnof9CVl5vjslqbZDV0lhvDXVNvnzJbri2MtjqYv9Hjsc3PT3EFafhKvwp6A2SiWbEYLDZwHMddx59sdxxhmNTpl1QhXdCebk82k8j0PI+R5XjlbD7aSMl240rLG4Oa+yULmkd4MDFjwtSuE3W9JrbYzTkkU7X1NngFpqmZ9aN8IDWgjxZyEeBXLj+C50rCijRriD5j+y7fDGOxk7Ggk5uaCPI5+6jLyiMMrtstNztYSyO+8rj7CaeTH+RVAlrXvptVS7ybb3LRctQ2mqpOWooahwyIqhnVhP7J6tPg4rLPWmg9W7e3ufT+r7HVW2rgeWYljIZIAfnMd2Pae0EdF7YHnoMSR+yX++0nLcHO65/Eamx4VR+28N4bwBfkCMrH36qZOBVlO/iAoXTY52W2tdFn9fkx0/sly0oWSuwGuG7dbw6X1XNIGU1PWiCqJOAIJmmKQn3NeT7wFrQx7ZGNkY4Oa4AgjsI9qruPYD2T7Ip0c2w7gm/uPVWvw0mGPpkSAPma8k9iBY/Q+iyb4iqivqd89cS3MvM4vVQz1u0Rtdyxj3BgaB4YUdK7nGlw1X6/XiTdzQNqfXSSxMZeaGnbzTFzBytqGNHV3qhocB19UHB6kUnmgnp5nU9RDJFKw8rmPaWuafYQeoK0Ggz8CfkYboJzAAI2IFrfp0WX4lpkzTKlFbHBs5xIPIgm97+/VevsWv20c9fU7W6SqLpzelyWWjdNzdvN5lucrPzhx4W9V7ragpLzqS1Vds0lSStlqaidhjdWAHPmoQep5uwvAwB35wFpZTwQ0sEdNTxtjihYI42NGA1oGAB+SpGO6jLx3Q5WEQXNuTblfl33Wh+G1LmZZsWdjAta8ANvztfPtse6q15Qv6rLF+NN+C9Z+rSnjd0NfdabNed09b5q6ps1wirpIIWF8joeVzHlrR1OOcE47gT3LNqemqKV5jqaeSF46FsjC0/wACrBgiKx1LDAcw4391WPESC9lZMQjJzW2P0XrREVwVEREREREREXvoK6stlbT3K31MlPVUsrZoZo3YdG9py1wPcQQCtOeGriMsm9WmoaC4VUVPqy3wtFwpDhvnsdPPxDvae8D5pOOzBOX65dqu1zsdwgu1muFRRVtM8PhqIJCySNw7w4dQoKvUKDW4AY48L2/Kduh6FWTDWJI+HZgxGDiY75m79RsR/ZbPkBwLXAEHoQVwYrDY4Kk1sNmoY6h3bK2nYHn+0BlUJ0Dx/bjafo4bfrSw0OpWwjl9KDvRql4/aLQWE+PKPHJXf5fKN2EU+YNrq8z4+a+5sDAfeI8/yWZRcIViA8sZD4huHC31IPqFr8HHVBmGB74nCdnNNx6Aj0KuMqq8YnEzb9JWSt2t0TcvO6huEZguNRA4EUEDm+szmHZK4HGB1aCT0OFBO53HDutrqhls+n46bS1BMC2R1ES+pew/Z8675o/dDT4qu0ssk8j5ppHSSSOLnvcclxPaSe8qx0HBb4MVszULZZhozz6nTyH9lU8S+IEOYgulKXf72Recsv8AqNfM2tyHNeK2X0r9GLP9wp/htWNCvLp7yhOjbdYbdb7ht/ejU0tLFBKYaiIsLmtAJbkg4OO8KQxnS5upMg/ZWcXCXX05237KL8P6xI0iJHM7EDOINte+dr30B3XI8ox9EdG/iVT8JqqJtRupqjZ/V9Nq7S9SQ+P5OppnOIiq4SfWjePYcZB7iAR2KUOKHiatG/VvsVqsmmay2Q2maaokkqpWudI57Q0ABvQAAHrnvVfVJ4epz4FJbKTrNeK4OeRJURimrQ5iuOnqfEyHDZwuMwBv1Wve1W6Wl93tIUur9L1GYpfk6ine4GWlmAHNE8DsIyOveCCOhXluhthpbdvSVTpHVdKZIJvXhmZgS00wHqyMPcRn3EZBWZGxu92pdj9Wtv8AZv8AiqCpAiuNve7DKmL3/ZeO1ru7xBIVrx5RXQWBnb6/g9/y8P8A7VGqOE6hITnxKcC5urSCLjoc+W/NaNSsbUupyPwqq4NfazgQSHdRYHXbkVUHd7aPVOzWrp9Lamp8g5lo6tg+Sq4c4D2n+Rb2g/kT3Xha39fsjrJ7LuJJdNXrkiuLGdXQuGeSdo7y3JyO9pPeAu28SnFZo/fDRlLpm1aDqqOsp6xlSyurZI3PhaAQ5rOXJ9bIzk4wOw9MVmWhSsKNVqd8GqQ+FxyIy8iLab9CsunI0CiVX7RRovE1pu055X1ab2vt1HVbPWe82rUNrpr1Y7hBXUFZG2aCogeHskYRkEEL9uNntN4h9Hu9rpK6L9SpgbK3+DgQsqNpeIHcvZqpzpO8+ct73ZmtlYDLSyePLkFjv2mkH257FZSweUYoTA1mqNtKgTAetJQVzS0nwa9oI/vLOZ/BdRlIhMr99vIggHzBI+i1am+IFKnYQE6fhv5ggkeRAOXey+V5QfRen7H/AENvtjsVDb3zel0k7qWnbF5wN826MO5QM4y/HvK7vwccS9v1VZKLavW1y81f7fGILbUTuAFdA0YazmP9a0DGD1cAD1OVAnE5xP2zfm12iy2nSVRa4LXUvqTNU1DXveXN5eUNaMNH5nuVfopZIZGTQyOjkjcHMe04LSOwg9xVulKA+forJKoAtiNvY6kZm301F1Rp3E7KZiGJUKYQ6E7hBGYDhYX5ZG4yNtdwtqV86fTmnqmrbX1Nit0tS3q2Z9Kx0g9ziMrPPbDjk3S0NQw2bUsFNqqhgAbG+rcY6pjB9nzrfne9wJ8VL0PlGNJGm5qjbW7sqMfMZWxOZn94gH+SpMxhCryry2GziG7SPzIK0OVx1Q5yGHRX8B2c05eYBCt81rWNDWtAA6AAdAuLHdrXLc5bLFcaZ9fBE2eWlbK0ysjcSGvLM5DSQQD4FUJ3A8oDuBf6Oa36G09R6bbM0t9Ke/0qoYD+rkBgPiWlQBpndPXuktaN3BtGpKv9O85fLUzSGU1APzmyc3z2nvB/lgLulMCz0aG58w4MdbIa59bZAeqjp7xIp0vFayWaYjb/AHjpYdAcye9h1WwCqx5QagoWbSWerZRwNnbfomtkEYDgDBNkZ7cHA/gF0zTvlGKiOkZHqvbVk9SB60tBXebY4+3ke1xH95RlxH8WDt9dPUWlaDR/6HoaStbXOklqvPSyPaxzQOjQGjDz7e5fVEw1VJKpQosWHZrTcm4tb1uvjEOLqNUKRGgwYt3uFgOF17+Yt9VXtERaysSRE6IiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiJg+xEREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREX/9k=" preserveAspectRatio="none"/><path fill="#6c3cc4" d="M86-200l42-18 12 35-44 11 32 37-32 21-26-44-26 44-32-21 33-37-44-11 12-35 42 18-3-48h38" id="aj"/><path fill="#6c3cc4" d="M182-130c37 4 62 22 62 59C244 23 116-4 24 0v-248c84 5 203-23 205 63 0 31-19 50-47 55zM76-148c40-3 101 13 101-30 0-44-60-28-101-31v61zm0 110c48-3 116 14 116-37 0-48-69-32-116-35v72" id="ak"/><path fill="#6c3cc4" d="M25-224v-37h50v37H25zM25 0v-190h50V0H25" id="al"/><path fill="#6c3cc4" d="M195-6C206 82 75 100 31 46c-4-6-6-13-8-21l49-6c3 16 16 24 34 25 40 0 42-37 40-79-11 22-30 35-61 35-53 0-70-43-70-97 0-56 18-96 73-97 30 0 46 14 59 34l2-30h47zm-90-29c32 0 41-27 41-63 0-35-9-62-40-62-32 0-39 29-40 63 0 36 9 62 39 62" id="am"/><path fill="#6c3cc4" d="M230 0l2-204L168 0h-37L68-204 70 0H24v-248h70l56 185 57-185h69V0h-46" id="an"/><path fill="#6c3cc4" d="M199 0l-22-63H83L61 0H9l90-248h61L250 0h-51zm-33-102l-36-108c-10 38-24 72-36 108h72" id="ao"/><path fill="#6c3cc4" d="M67-125c0 53 21 87 73 88 37 1 54-22 65-47l45 17C233-25 199 4 140 4 58 4 20-42 15-125 8-235 124-281 211-232c18 10 29 29 36 50l-46 12c-8-25-30-41-62-41-52 0-71 34-72 86" id="ap"/><g id="a"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#aj"/><use transform="matrix(0.05,0,0,0.05,7,0)" xlink:href="#ak"/><use transform="matrix(0.05,0,0,0.05,19.950000000000003,0)" xlink:href="#al"/><use transform="matrix(0.05,0,0,0.05,24.950000000000003,0)" xlink:href="#am"/><use transform="matrix(0.05,0,0,0.05,35.900000000000006,0)" xlink:href="#an"/><use transform="matrix(0.05,0,0,0.05,50.85000000000001,0)" xlink:href="#ao"/><use transform="matrix(0.05,0,0,0.05,63.80000000000001,0)" xlink:href="#ap"/></g><path fill="#6c3cc4" d="M147 0H94L2-248h55l64 206c17-72 42-137 63-206h54" id="aq"/><path fill="#6c3cc4" d="M24-248c93 1 206-16 204 79-1 75-69 88-152 82V0H24v-248zm52 121c47 0 100 7 100-41 0-47-54-39-100-39v80" id="ar"/><g id="b"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#aq"/><use transform="matrix(0.05,0,0,0.05,12,0)" xlink:href="#ar"/><use transform="matrix(0.05,0,0,0.05,24,0)" xlink:href="#ap"/></g><path fill="#3a414a" d="M199 0l-22-63H83L61 0H9l90-248h61L250 0h-51zm-33-102l-36-108c-10 38-24 72-36 108h72" id="as"/><path fill="#3a414a" d="M85 4C-2 5 27-109 22-190h50c7 57-23 150 33 157 60-5 35-97 40-157h50l1 190h-47c-2-12 1-28-3-38-12 25-28 42-61 42" id="at"/><path fill="#3a414a" d="M115-3C79 11 28 4 28-45v-112H4v-33h27l15-45h31v45h36v33H77v99c-1 23 16 31 38 25v30" id="au"/><path fill="#3a414a" d="M114-157C55-157 80-60 75 0H25v-261h50l-1 109c12-26 28-41 61-42 86-1 58 113 63 194h-50c-7-57 23-157-34-157" id="av"/><path fill="#3a414a" d="M185-48c-13 30-37 53-82 52C43 2 14-33 14-96s30-98 90-98c62 0 83 45 84 108H66c0 31 8 55 39 56 18 0 30-7 34-22zm-45-69c5-46-57-63-70-21-2 6-4 13-4 21h74" id="aw"/><path fill="#3a414a" d="M135-194c87-1 58 113 63 194h-50c-7-57 23-157-34-157-59 0-34 97-39 157H25l-1-190h47c2 12-1 28 3 38 12-26 28-41 61-42" id="ax"/><path fill="#3a414a" d="M25-224v-37h50v37H25zM25 0v-190h50V0H25" id="ay"/><path fill="#3a414a" d="M190-63c-7 42-38 67-86 67-59 0-84-38-90-98-12-110 154-137 174-36l-49 2c-2-19-15-32-35-32-30 0-35 28-38 64-6 74 65 87 74 30" id="az"/><path fill="#3a414a" d="M133-34C117-15 103 5 69 4 32 3 11-16 11-54c-1-60 55-63 116-61 1-26-3-47-28-47-18 1-26 9-28 27l-52-2c7-38 36-58 82-57s74 22 75 68l1 82c-1 14 12 18 25 15v27c-30 8-71 5-69-32zm-48 3c29 0 43-24 42-57-32 0-66-3-65 30 0 17 8 27 23 27" id="aA"/><path fill="#3a414a" d="M110-194c64 0 96 36 96 99 0 64-35 99-97 99-61 0-95-36-95-99 0-62 34-99 96-99zm-1 164c35 0 45-28 45-65 0-40-10-65-43-65-34 0-45 26-45 65 0 36 10 65 43 65" id="aB"/><g id="c"><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,0,0)" xlink:href="#as"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,15.987654320987653,0)" xlink:href="#at"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,29.50617283950617,0)" xlink:href="#au"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,36.85185185185185,0)" xlink:href="#av"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,50.37037037037037,0)" xlink:href="#aw"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,62.716049382716044,0)" xlink:href="#ax"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,76.23456790123456,0)" xlink:href="#au"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,83.58024691358024,0)" xlink:href="#ay"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,89.75308641975307,0)" xlink:href="#az"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,102.09876543209876,0)" xlink:href="#aA"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,114.44444444444444,0)" xlink:href="#au"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,121.79012345679013,0)" xlink:href="#ay"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,127.96296296296296,0)" xlink:href="#aB"/><use transform="matrix(0.06172839506172839,0,0,0.06172839506172839,141.48148148148147,0)" xlink:href="#ax"/></g><path fill="#232f3e" d="M199 0l-22-63H83L61 0H9l90-248h61L250 0h-51zm-33-102l-36-108c-10 38-24 72-36 108h72" id="aC"/><path fill="#232f3e" d="M275 0h-61l-44-196L126 0H64L0-248h53L97-49l45-199h58l43 199 44-199h52" id="aD"/><path fill="#232f3e" d="M169-182c-1-43-94-46-97-3 18 66 151 10 154 114 3 95-165 93-204 36-6-8-10-19-12-30l50-8c3 46 112 56 116 5-17-69-150-10-154-114-4-87 153-88 188-35 5 8 8 18 10 28" id="aE"/><g id="d"><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,0,0)" xlink:href="#aC"/><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,14.900617283950615,0)" xlink:href="#aD"/><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,36.035802469135795,0)" xlink:href="#aE"/></g><path fill="#232f3e" d="M67-125c0 53 21 87 73 88 37 1 54-22 65-47l45 17C233-25 199 4 140 4 58 4 20-42 15-125 8-235 124-281 211-232c18 10 29 29 36 50l-46 12c-8-25-30-41-62-41-52 0-71 34-72 86" id="aF"/><path fill="#232f3e" d="M25 0v-261h50V0H25" id="aG"/><path fill="#232f3e" d="M110-194c64 0 96 36 96 99 0 64-35 99-97 99-61 0-95-36-95-99 0-62 34-99 96-99zm-1 164c35 0 45-28 45-65 0-40-10-65-43-65-34 0-45 26-45 65 0 36 10 65 43 65" id="aH"/><path fill="#232f3e" d="M85 4C-2 5 27-109 22-190h50c7 57-23 150 33 157 60-5 35-97 40-157h50l1 190h-47c-2-12 1-28-3-38-12 25-28 42-61 42" id="aI"/><path fill="#232f3e" d="M88-194c31-1 46 15 58 34l-1-101h50l1 261h-48c-2-10 0-23-3-31C134-8 116 4 84 4 32 4 16-41 15-95c0-56 19-97 73-99zm17 164c33 0 40-30 41-66 1-37-9-64-41-64s-38 30-39 65c0 43 13 65 39 65" id="aJ"/><g id="e"><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,0,0)" xlink:href="#aF"/><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,16.147530864197527,0)" xlink:href="#aG"/><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,22.382098765432094,0)" xlink:href="#aH"/><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,36.035802469135795,0)" xlink:href="#aI"/><use transform="matrix(0.06234567901234567,0,0,0.06234567901234567,49.6895061728395,0)" xlink:href="#aJ"/></g><path fill="#3a414a" d="M67-125c0 53 21 87 73 88 37 1 54-22 65-47l45 17C233-25 199 4 140 4 58 4 20-42 15-125 8-235 124-281 211-232c18 10 29 29 36 50l-46 12c-8-25-30-41-62-41-52 0-71 34-72 86" id="aK"/><path fill="#3a414a" d="M195-6C206 82 75 100 31 46c-4-6-6-13-8-21l49-6c3 16 16 24 34 25 40 0 42-37 40-79-11 22-30 35-61 35-53 0-70-43-70-97 0-56 18-96 73-97 30 0 46 14 59 34l2-30h47zm-90-29c32 0 41-27 41-63 0-35-9-62-40-62-32 0-39 29-40 63 0 36 9 62 39 62" id="aL"/><g id="f"><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,0,0)" xlink:href="#aK"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,12.79012345679012,0)" xlink:href="#aB"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,23.60493827160493,0)" xlink:href="#aL"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,34.41975308641974,0)" xlink:href="#ax"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,45.23456790123455,0)" xlink:href="#ay"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,50.17283950617282,0)" xlink:href="#au"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,56.049382716049365,0)" xlink:href="#aB"/></g><path fill="#3a414a" d="M238-95c0 69-44 99-111 99C63 4 22-25 22-93v-155h51v151c-1 38 19 59 55 60 90 1 49-130 58-211h52v153" id="aM"/><path fill="#3a414a" d="M137-138c1-29-70-34-71-4 15 46 118 7 119 86 1 83-164 76-172 9l43-7c4 19 20 25 44 25 33 8 57-30 24-41C81-84 22-81 20-136c-2-80 154-74 161-7" id="aN"/><path fill="#3a414a" d="M135-150c-39-12-60 13-60 57V0H25l-1-190h47c2 13-1 29 3 40 6-28 27-53 61-41v41" id="aO"/><g id="g"><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,0,0)" xlink:href="#aM"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,12.79012345679012,0)" xlink:href="#aN"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,22.666666666666657,0)" xlink:href="#aw"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,32.543209876543195,0)" xlink:href="#aO"/></g><path fill="#3a414a" d="M24-248c93 1 206-16 204 79-1 75-69 88-152 82V0H24v-248zm52 121c47 0 100 7 100-41 0-47-54-39-100-39v80" id="aP"/><path fill="#3a414a" d="M25 0v-261h50V0H25" id="aQ"/><g id="h"><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,0,0)" xlink:href="#aP"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,11.851851851851848,0)" xlink:href="#aB"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,22.666666666666657,0)" xlink:href="#aB"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,33.48148148148147,0)" xlink:href="#aQ"/></g><path fill="#3a414a" d="M24 0v-248h52V0H24" id="aR"/><path fill="#3a414a" d="M88-194c31-1 46 15 58 34l-1-101h50l1 261h-48c-2-10 0-23-3-31C134-8 116 4 84 4 32 4 16-41 15-95c0-56 19-97 73-99zm17 164c33 0 40-30 41-66 1-37-9-64-41-64s-38 30-39 65c0 43 13 65 39 65" id="aS"/><path fill="#3a414a" d="M123 10C108 53 80 86 19 72V37c35 8 53-11 59-39L3-190h52l48 148c12-52 28-100 44-148h51" id="aT"/><g id="i"><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,0,0)" xlink:href="#aR"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,4.9382716049382696,0)" xlink:href="#aS"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,15.753086419753082,0)" xlink:href="#aw"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,25.629629629629623,0)" xlink:href="#ax"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,36.44444444444443,0)" xlink:href="#au"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,42.32098765432097,0)" xlink:href="#ay"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,47.259259259259245,0)" xlink:href="#au"/><use transform="matrix(0.0493827160493827,0,0,0.0493827160493827,53.13580246913578,0)" xlink:href="#aT"/></g><path fill="#3a414a" d="M86-200l42-18 12 35-44 11 32 37-32 21-26-44-26 44-32-21 33-37-44-11 12-35 42 18-3-48h38" id="aU"/><path fill="#3a414a" d="M121-226c-27-7-43 5-38 36h38v33H83V0H34v-157H6v-33h28c-9-59 32-81 87-68v32" id="aV"/><g id="j"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aU"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,6.913580246913579,0)" xlink:href="#aK"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,19.703703703703702,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,29.58024691358024,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,36.49382716049382,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,42.37037037037037,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,47.30864197530864,0)" xlink:href="#aV"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,53.18518518518518,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,58.123456790123456,0)" xlink:href="#az"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,68,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,77.87654320987654,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,83.75308641975309,0)" xlink:href="#aw"/></g><path fill="#3a414a" d="M230 0l2-204L168 0h-37L68-204 70 0H24v-248h70l56 185 57-185h69V0h-46" id="aW"/><g id="k"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aW"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,14.765432098765428,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,24.641975308641968,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,35.456790123456784,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,45.33333333333333,0)" xlink:href="#aL"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,56.14814814814814,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,66.02469135802468,0)" xlink:href="#aO"/></g><path fill="#3a414a" d="M275 0h-61l-44-196L126 0H64L0-248h53L97-49l45-199h58l43 199 44-199h52" id="aX"/><path fill="#3a414a" d="M76-208v77h127v40H76V0H24v-248h183v40H76" id="aY"/><g id="l"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aX"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,15.753086419753084,0)" xlink:href="#as"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#aY"/></g><g id="m"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aK"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,17.728395061728392,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#at"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,39.35802469135802,0)" xlink:href="#aS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,50.172839506172835,0)" xlink:href="#aY"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,60.987654320987644,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,67.90123456790123,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,78.71604938271604,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,89.53086419753085,0)" xlink:href="#au"/></g><path fill="#3a414a" d="M24-248c120-7 223 5 221 122C244-46 201 0 124 0H24v-248zM76-40c74 7 117-18 117-86 0-67-45-88-117-82v168" id="aZ"/><path fill="#3a414a" d="M175 0L67-191c6 58 2 128 3 191H24v-248h59L193-55c-6-58-2-129-3-193h46V0h-61" id="ba"/><g id="n"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aK"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,25.580246913580243,0)" xlink:href="#ba"/></g><path d="M67-125c0 53 21 87 73 88 37 1 54-22 65-47l45 17C233-25 199 4 140 4 58 4 20-42 15-125 8-235 124-281 211-232c18 10 29 29 36 50l-46 12c-8-25-30-41-62-41-52 0-71 34-72 86" id="bb"/><path d="M25 0v-261h50V0H25" id="bc"/><path d="M25-224v-37h50v37H25zM25 0v-190h50V0H25" id="bd"/><path d="M185-48c-13 30-37 53-82 52C43 2 14-33 14-96s30-98 90-98c62 0 83 45 84 108H66c0 31 8 55 39 56 18 0 30-7 34-22zm-45-69c5-46-57-63-70-21-2 6-4 13-4 21h74" id="be"/><path d="M135-194c87-1 58 113 63 194h-50c-7-57 23-157-34-157-59 0-34 97-39 157H25l-1-190h47c2 12-1 28 3 38 12-26 28-41 61-42" id="bf"/><path d="M115-3C79 11 28 4 28-45v-112H4v-33h27l15-45h31v45h36v33H77v99c-1 23 16 31 38 25v30" id="bg"/><g id="o"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#bb"/><use transform="matrix(0.05,0,0,0.05,12.950000000000001,0)" xlink:href="#bc"/><use transform="matrix(0.05,0,0,0.05,17.950000000000003,0)" xlink:href="#bd"/><use transform="matrix(0.05,0,0,0.05,22.950000000000003,0)" xlink:href="#be"/><use transform="matrix(0.05,0,0,0.05,32.95,0)" xlink:href="#bf"/><use transform="matrix(0.05,0,0,0.05,43.900000000000006,0)" xlink:href="#bg"/></g><path fill="#3a414a" d="M169-182c-1-43-94-46-97-3 18 66 151 10 154 114 3 95-165 93-204 36-6-8-10-19-12-30l50-8c3 46 112 56 116 5-17-69-150-10-154-114-4-87 153-88 188-35 5 8 8 18 10 28" id="bh"/><g id="p"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bh"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.85185185185185,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,17.728395061728392,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,27.604938271604933,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,33.481481481481474,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,38.419753086419746,0)" xlink:href="#az"/></g><g id="q"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bh"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.85185185185185,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,16.79012345679012,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,22.66666666666666,0)" xlink:href="#aw"/></g><g id="r"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aK"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,23.604938271604937,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,34.419753086419746,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,40.29629629629629,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,50.172839506172835,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,60.987654320987644,0)" xlink:href="#au"/></g><path fill="#3a414a" d="M67-93c0 74 22 123 53 168H70C40 30 18-18 18-93s22-123 52-168h50c-32 44-53 94-53 168" id="bi"/><path fill="#3a414a" d="M128-127c34 4 56 21 59 58 7 91-148 94-172 28-4-9-6-17-7-26l51-5c1 24 16 35 40 36 23 0 39-12 38-36-1-31-31-36-65-34v-40c32 2 59-3 59-33 0-20-13-33-34-33s-33 13-35 32l-50-3c6-44 37-68 86-68 50 0 83 20 83 66 0 35-22 52-53 58" id="bj"/><path fill="#3a414a" d="M102-93c0 74-22 123-52 168H0C30 29 54-18 53-93c0-74-22-123-53-168h50c30 45 52 94 52 168" id="bk"/><g id="s"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bi"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,5.876543209876542,0)" xlink:href="#bh"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,17.728395061728392,0)" xlink:href="#bj"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,27.604938271604933,0)" xlink:href="#bk"/></g><path fill="#3a414a" d="M128 0H69L1-190h53L99-40l48-150h52" id="bl"/><g id="t"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#as"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,23.604938271604937,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,29.481481481481477,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,34.419753086419746,0)" xlink:href="#bl"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,44.29629629629629,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,49.23456790123456,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,56.14814814814814,0)" xlink:href="#at"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,66.96296296296295,0)" xlink:href="#aN"/></g><g id="u"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bh"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.85185185185185,0)" xlink:href="#az"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,21.728395061728392,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,31.604938271604933,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,42.419753086419746,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,53.234567901234556,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,58.17283950617283,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,68.98765432098764,0)" xlink:href="#aL"/></g><pattern id="v" patternUnits="userSpaceOnUse" x="-1260" y="1088" width="120" height="120"><use xlink:href="#bm" transform="translate(0, 0) scale(12,12)"/></pattern><path fill="#3a414a" d="M24 0v-248h52v208h133V0H24" id="bn"/><path fill="#3a414a" d="M147 0L96-86 75-71V0H25v-261h50v150l67-79h53l-66 74L201 0h-54" id="bo"/><g id="w"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bn"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,10.814814814814813,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,20.691358024691354,0)" xlink:href="#at"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,31.506172839506167,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,42.32098765432098,0)" xlink:href="#az"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,52.19753086419752,0)" xlink:href="#av"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,63.01234567901232,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,75.80246913580245,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,85.679012345679,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,92.59259259259258,0)" xlink:href="#bo"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,102.46913580246911,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,107.40740740740739,0)" xlink:href="#aT"/></g><path fill="#3a414a" d="M14-72v-43h91v43H14" id="bp"/><path fill="#3a414a" d="M135-194c53 0 70 44 70 98 0 56-19 98-73 100-31 1-45-17-59-34 3 33 2 69 2 105H25l-1-265h48c2 10 0 23 3 31 11-24 29-35 60-35zM114-30c33 0 39-31 40-66 0-38-9-64-40-64-56 0-55 130 0 130" id="bq"/><g id="x"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aM"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aN"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,22.666666666666664,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,32.5432098765432,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,39.456790123456784,0)" xlink:href="#bp"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,45.33333333333333,0)" xlink:href="#aM"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,58.12345679012345,0)" xlink:href="#bq"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,68.93827160493827,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,73.87654320987653,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,84.69135802469134,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,94.56790123456788,0)" xlink:href="#aS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,105.3827160493827,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,115.25925925925924,0)" xlink:href="#aS"/></g><path fill="#3a414a" d="M220-157c-53 9-28 100-34 157h-49v-107c1-27-5-49-29-50C55-147 81-57 75 0H25l-1-190h47c2 12-1 28 3 38 10-53 101-56 108 0 13-22 24-43 59-42 82 1 51 116 57 194h-49v-107c-1-25-5-48-29-50" id="br"/><g id="y"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,23.604938271604937,0)" xlink:href="#az"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,33.48148148148148,0)" xlink:href="#at"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,44.29629629629629,0)" xlink:href="#br"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,60.09876543209875,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,69.9753086419753,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,80.79012345679011,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,86.66666666666666,0)" xlink:href="#aN"/></g><g id="z"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#as"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aP"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,24.64197530864197,0)" xlink:href="#aR"/></g><path fill="#3a414a" d="M67-125c0 54 23 88 75 88 28 0 53-7 68-21v-34h-60v-39h108v91C232-14 192 4 140 4 58 4 20-42 15-125 8-236 126-280 215-234c19 10 29 26 37 47l-47 15c-11-23-29-39-63-39-53 1-75 33-75 86" id="bs"/><path fill="#3a414a" d="M231 0h-52l-39-155L100 0H48L-1-190h46L77-45c9-52 24-97 36-145h53l37 145 32-145h46" id="bt"/><g id="A"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bs"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,13.827160493827158,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,23.7037037037037,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,29.58024691358024,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,39.456790123456784,0)" xlink:href="#bt"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,53.28395061728394,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,63.16049382716048,0)" xlink:href="#aT"/></g><path fill="#3a414a" d="M135-194c52 0 70 43 70 98 0 56-19 99-73 100-30 1-46-15-58-35L72 0H24l1-261h50v104c11-23 29-37 60-37zM114-30c31 0 40-27 40-66 0-37-7-63-39-63s-41 28-41 65c0 36 8 64 40 64" id="bu"/><g id="B"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bn"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,10.814814814814813,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,20.691358024691354,0)" xlink:href="#br"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,36.49382716049382,0)" xlink:href="#bu"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,47.30864197530863,0)" xlink:href="#aS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,58.12345679012345,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,67.99999999999999,0)" xlink:href="#aN"/></g><g id="C"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,22.666666666666664,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,38.419753086419746,0)" xlink:href="#bu"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,49.234567901234556,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,59.1111111111111,0)" xlink:href="#aN"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,68.98765432098764,0)" xlink:href="#aw"/></g><path fill="#3a414a" d="M136-208V0H84v-208H4v-40h212v40h-80" id="bv"/><g id="D"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bv"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,9.481481481481481,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,19.358024691358022,0)" xlink:href="#bu"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,30.172839506172835,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,35.11111111111111,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,44.987654320987644,0)" xlink:href="#aN"/></g><g id="E"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bi"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,5.876543209876542,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,18.666666666666664,0)" xlink:href="#aT"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,39.35802469135802,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,49.234567901234556,0)" xlink:href="#br"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,65.03703703703702,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,75.85185185185183,0)" xlink:href="#bk"/></g><path fill="#3a414a" d="M147 0H94L2-248h55l64 206c17-72 42-137 63-206h54" id="bw"/><g id="F"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aK"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,17.728395061728392,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,27.604938271604933,0)" xlink:href="#br"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,43.4074074074074,0)" xlink:href="#as"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,54.86419753086419,0)" xlink:href="#bw"/></g><g id="G"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aY"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,10.814814814814813,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,15.753086419753084,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,20.691358024691354,0)" xlink:href="#aw"/></g><g id="H"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bh"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.85185185185185,0)" xlink:href="#az"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,21.728395061728392,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,31.604938271604933,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,42.419753086419746,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,53.234567901234556,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,63.1111111111111,0)" xlink:href="#aO"/></g><g id="I"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bn"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,10.814814814814813,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,20.691358024691354,0)" xlink:href="#br"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,36.49382716049382,0)" xlink:href="#bu"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,47.30864197530863,0)" xlink:href="#aS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,58.12345679012345,0)" xlink:href="#aA"/></g><g id="J"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.209876543209875,0)" xlink:href="#at"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,22.02469135802469,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,26.962962962962962,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,37.77777777777777,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,47.654320987654316,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,54.5679012345679,0)" xlink:href="#aA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,64.44444444444444,0)" xlink:href="#bu"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,75.25925925925925,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,80.19753086419752,0)" xlink:href="#aQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,85.13580246913578,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,90.07407407407405,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,95.95061728395059,0)" xlink:href="#aT"/></g><g id="K"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,22.666666666666664,0)" xlink:href="#aV"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,33.481481481481474,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,44.29629629629629,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,49.23456790123456,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,55.111111111111114,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,60.04938271604938,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,70.86419753086419,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,81.679012345679,0)" xlink:href="#aN"/></g><g id="L"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,22.666666666666664,0)" xlink:href="#aV"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,33.481481481481474,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,44.29629629629629,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,49.23456790123456,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,55.111111111111114,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,60.04938271604938,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,70.86419753086419,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,81.679012345679,0)" xlink:href="#aN"/></g><g id="M"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aK"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,12.790123456790122,0)" xlink:href="#av"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,23.604938271604937,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,33.48148148148148,0)" xlink:href="#az"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,43.358024691358025,0)" xlink:href="#bo"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,53.23456790123457,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,63.11111111111111,0)" xlink:href="#aO"/></g><g id="N"><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,0,0)" xlink:href="#aW"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,29.530864197530853,0)" xlink:href="#aZ"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,55.11111111111109,0)" xlink:href="#aK"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,80.69135802469134,0)" xlink:href="#bv"/></g><path fill="#3a414a" d="M240-174c0 40-23 61-54 70L253 0h-59l-57-94H76V0H24v-248c93 4 217-23 216 74zM76-134c48-2 112 12 112-38 0-48-66-32-112-35v73" id="bx"/><g id="O"><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,0,0)" xlink:href="#aK"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,25.58024691358024,0)" xlink:href="#as"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,51.16049382716048,0)" xlink:href="#bx"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,76.74074074074072,0)" xlink:href="#bv"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,98.37037037037034,0)" xlink:href="#bh"/></g><g id="P"><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,0,0)" xlink:href="#as"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,25.58024691358024,0)" xlink:href="#aO"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,39.4074074074074,0)" xlink:href="#az"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,59.16049382716047,0)" xlink:href="#av"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,80.7901234567901,0)" xlink:href="#ay"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,90.66666666666664,0)" xlink:href="#au"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,102.41975308641972,0)" xlink:href="#aw"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,122.17283950617279,0)" xlink:href="#az"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,141.92592592592587,0)" xlink:href="#au"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,153.67901234567896,0)" xlink:href="#at"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,175.30864197530857,0)" xlink:href="#aO"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,189.13580246913574,0)" xlink:href="#aw"/></g><g id="Q"><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,0,0)" xlink:href="#aZ"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,25.58024691358024,0)" xlink:href="#ay"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,35.45679012345678,0)" xlink:href="#aA"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,55.20987654320986,0)" xlink:href="#aL"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,76.83950617283948,0)" xlink:href="#aO"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,90.66666666666663,0)" xlink:href="#aA"/><use transform="matrix(0.0987654320987654,0,0,0.0987654320987654,110.41975308641969,0)" xlink:href="#br"/></g><path fill="#3a414a" d="M84 4C-5 8 30-112 23-190h32v120c0 31 7 50 39 49 72-2 45-101 50-169h31l1 190h-30c-1-10 1-25-2-33-11 22-28 36-60 37" id="by"/><path fill="#3a414a" d="M115-194c55 1 70 41 70 98S169 2 115 4C84 4 66-9 55-30l1 105H24l-1-265h31l2 30c10-21 28-34 59-34zm-8 174c40 0 45-34 45-75s-6-73-45-74c-42 0-51 32-51 76 0 43 10 73 51 73" id="bz"/><path fill="#3a414a" d="M85-194c31 0 48 13 60 33l-1-100h32l1 261h-30c-2-10 0-23-3-31C134-8 116 4 85 4 32 4 16-35 15-94c0-66 23-100 70-100zm9 24c-40 0-46 34-46 75 0 40 6 74 45 74 42 0 51-32 51-76 0-42-9-74-50-73" id="bA"/><path fill="#3a414a" d="M141-36C126-15 110 5 73 4 37 3 15-17 15-53c-1-64 63-63 125-63 3-35-9-54-41-54-24 1-41 7-42 31l-33-3c5-37 33-52 76-52 45 0 72 20 72 64v82c-1 20 7 32 28 27v20c-31 9-61-2-59-35zM48-53c0 20 12 33 32 33 41-3 63-29 60-74-43 2-92-5-92 41" id="bB"/><path fill="#3a414a" d="M59-47c-2 24 18 29 38 22v24C64 9 27 4 27-40v-127H5v-23h24l9-43h21v43h35v23H59v120" id="bC"/><path fill="#3a414a" d="M100-194c63 0 86 42 84 106H49c0 40 14 67 53 68 26 1 43-12 49-29l28 8c-11 28-37 45-77 45C44 4 14-33 15-96c1-61 26-98 85-98zm52 81c6-60-76-77-97-28-3 7-6 17-6 28h103" id="bD"/><g id="R"><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,0,0)" xlink:href="#by"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,14.814814814814802,0)" xlink:href="#bz"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,29.629629629629605,0)" xlink:href="#bA"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,44.44444444444441,0)" xlink:href="#bB"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,59.25925925925921,0)" xlink:href="#bC"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,66.66666666666661,0)" xlink:href="#bD"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,81.48148148148141,0)" xlink:href="#bA"/></g><path fill="#3a414a" d="M101-251c82-7 93 87 43 132L82-64C71-53 59-42 53-27h129V0H18c2-99 128-94 128-182 0-28-16-43-45-43s-46 15-49 41l-32-3c6-41 34-60 81-64" id="bE"/><path fill="#3a414a" d="M101-251c68 0 85 55 85 127S166 4 100 4C33 4 14-52 14-124c0-73 17-127 87-127zm-1 229c47 0 54-49 54-102s-4-102-53-102c-51 0-55 48-55 102 0 53 5 102 54 102" id="bF"/><path fill="#3a414a" d="M155-56V0h-30v-56H8v-25l114-167h33v167h35v25h-35zm-30-156c-27 46-58 90-88 131h88v-131" id="bG"/><path fill="#3a414a" d="M16-82v-28h88v28H16" id="bH"/><path fill="#3a414a" d="M134-131c28 9 52 24 51 62-1 50-34 73-85 73S17-19 16-69c0-36 21-54 49-61-75-25-45-126 34-121 46 3 78 18 79 63 0 33-17 51-44 57zm-34-11c31 1 46-15 46-44 0-28-17-43-47-42-29 0-46 13-45 42 1 28 16 44 46 44zm1 122c35 0 51-18 51-52 0-30-18-46-53-46-33 0-51 17-51 47 0 34 19 51 53 51" id="bI"/><path fill="#3a414a" d="M99-251c64 0 84 50 84 122C183-37 130 33 47-8c-14-7-20-23-25-40l30-5c6 39 69 39 84 7 9-19 16-44 16-74-10 22-31 35-62 35-49 0-73-33-73-83 0-54 28-83 82-83zm-1 141c31-1 51-18 51-49 0-36-14-67-51-67-34 0-49 23-49 58 0 34 15 58 49 58" id="bJ"/><g id="S"><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,0,0)" xlink:href="#bE"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,14.814814814814802,0)" xlink:href="#bF"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,29.629629629629605,0)" xlink:href="#bE"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,44.44444444444441,0)" xlink:href="#bG"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,59.25925925925921,0)" xlink:href="#bH"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,68.07407407407402,0)" xlink:href="#bF"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,82.88888888888883,0)" xlink:href="#bI"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,97.70370370370364,0)" xlink:href="#bH"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,106.51851851851845,0)" xlink:href="#bE"/><use transform="matrix(0.07407407407407401,0,0,0.07407407407407401,121.33333333333326,0)" xlink:href="#bJ"/></g><pattern id="T" patternUnits="userSpaceOnUse" x="-1260" y="509.77" width="120" height="120"><use xlink:href="#bK" transform="translate(0, 0) scale(12,12)"/></pattern><g id="U"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aR"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,4.93827160493827,0)" xlink:href="#aS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,15.753086419753084,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,25.629629629629626,0)" xlink:href="#ax"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,36.44444444444444,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,42.32098765432099,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,47.25925925925926,0)" xlink:href="#au"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,53.135802469135804,0)" xlink:href="#aT"/></g><g id="V"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aP"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.85185185185185,0)" xlink:href="#aO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,18.76543209876543,0)" xlink:href="#aB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,29.58024691358024,0)" xlink:href="#bl"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,39.456790123456784,0)" xlink:href="#ay"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,44.395061728395056,0)" xlink:href="#aS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,55.20987654320988,0)" xlink:href="#aw"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,65.08641975308642,0)" xlink:href="#aO"/></g><path fill="#6c3cc4" d="M24-248c120-7 223 5 221 122C244-46 201 0 124 0H24v-248zM76-40c74 7 117-18 117-86 0-67-45-88-117-82v168" id="bL"/><path fill="#6c3cc4" d="M136-208V0H84v-208H4v-40h212v40h-80" id="bM"/><g id="W"><use transform="matrix(0.05,0,0,0.05,0,0)" xlink:href="#an"/><use transform="matrix(0.05,0,0,0.05,14.950000000000001,0)" xlink:href="#bL"/><use transform="matrix(0.05,0,0,0.05,27.900000000000002,0)" xlink:href="#ap"/><use transform="matrix(0.05,0,0,0.05,40.85,0)" xlink:href="#bM"/></g><g id="X"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#as"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.802469135802468,0)" xlink:href="#aX"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,28.543209876543205,0)" xlink:href="#bh"/></g><path fill="#3a414a" d="M195 0l-88-114-31 24V0H24v-248h52v113l112-113h60L142-143 257 0h-62" id="bN"/><g id="Y"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#aW"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,14.765432098765428,0)" xlink:href="#bh"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,26.617283950617278,0)" xlink:href="#bN"/></g><path fill="#3a414a" d="M80-196l47-18 7 23-49 13 32 44-20 13-27-46-27 45-21-12 33-44-49-13 8-23 47 19-2-53h23" id="bO"/><path fill="#3a414a" d="M33 0v-248h34V0H33" id="bP"/><path fill="#3a414a" d="M117-194c89-4 53 116 60 194h-32v-121c0-31-8-49-39-48C34-167 62-67 57 0H25l-1-190h30c1 10-1 24 2 32 11-22 29-35 61-36" id="bQ"/><path fill="#3a414a" d="M101-234c-31-9-42 10-38 44h38v23H63V0H32v-167H5v-23h27c-7-52 17-82 69-68v24" id="bR"/><path fill="#3a414a" d="M114-163C36-179 61-72 57 0H25l-1-190h30c1 12-1 29 2 39 6-27 23-49 58-41v29" id="bS"/><path fill="#3a414a" d="M135-143c-3-34-86-38-87 0 15 53 115 12 119 90S17 21 10-45l28-5c4 36 97 45 98 0-10-56-113-15-118-90-4-57 82-63 122-42 12 7 21 19 24 35" id="bT"/><path fill="#3a414a" d="M96-169c-40 0-48 33-48 73s9 75 48 75c24 0 41-14 43-38l32 2c-6 37-31 61-74 61-59 0-76-41-82-99-10-93 101-131 147-64 4 7 5 14 7 22l-32 3c-4-21-16-35-41-35" id="bU"/><g id="Z"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bO"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,6.913580246913579,0)" xlink:href="#bP"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,11.85185185185185,0)" xlink:href="#bQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,21.728395061728392,0)" xlink:href="#bR"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,26.666666666666668,0)" xlink:href="#bS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,32.54320987654321,0)" xlink:href="#bB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,42.419753086419746,0)" xlink:href="#bT"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,51.30864197530863,0)" xlink:href="#bC"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,56.246913580246904,0)" xlink:href="#bS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,62.12345679012344,0)" xlink:href="#by"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,71.99999999999999,0)" xlink:href="#bU"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,80.88888888888887,0)" xlink:href="#bC"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,85.82716049382714,0)" xlink:href="#by"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,95.70370370370368,0)" xlink:href="#bS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,101.58024691358023,0)" xlink:href="#bD"/></g><path fill="#3a414a" d="M106-169C34-169 62-67 57 0H25v-261h32l-1 103c12-21 28-36 61-36 89 0 53 116 60 194h-32v-121c2-32-8-49-39-48" id="bV"/><g id="aa"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bC"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,4.93827160493827,0)" xlink:href="#bV"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,14.814814814814811,0)" xlink:href="#bB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,24.691358024691354,0)" xlink:href="#bC"/></g><path fill="#3a414a" d="M24-231v-30h32v30H24zM24 0v-190h32V0H24" id="bW"/><g id="ab"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bW"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,3.9012345679012337,0)" xlink:href="#bT"/></g><path fill="#3a414a" d="M100-194c62-1 85 37 85 99 1 63-27 99-86 99S16-35 15-95c0-66 28-99 85-99zM99-20c44 1 53-31 53-75 0-43-8-75-51-75s-53 32-53 75 10 74 51 75" id="bX"/><g id="ac"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,9.87654320987654,0)" xlink:href="#bX"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,19.75308641975308,0)" xlink:href="#bC"/></g><path fill="#3a414a" d="M108 0H70L1-190h34L89-25l56-165h34" id="bY"/><path fill="#3a414a" d="M0 4l72-265h28L28 4H0" id="bZ"/><g id="ad"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bz"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,9.87654320987654,0)" xlink:href="#bS"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,15.75308641975308,0)" xlink:href="#bX"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,25.629629629629626,0)" xlink:href="#bY"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,34.51851851851851,0)" xlink:href="#bW"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,38.419753086419746,0)" xlink:href="#bT"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,47.30864197530863,0)" xlink:href="#bW"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,51.209876543209866,0)" xlink:href="#bX"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,61.08641975308641,0)" xlink:href="#bQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,70.96296296296295,0)" xlink:href="#bD"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,80.83950617283949,0)" xlink:href="#bA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,90.71604938271604,0)" xlink:href="#bZ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,95.6543209876543,0)" xlink:href="#bA"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,105.53086419753085,0)" xlink:href="#bD"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,115.40740740740739,0)" xlink:href="#bR"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,120.34567901234566,0)" xlink:href="#bW"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,124.24691358024688,0)" xlink:href="#bQ"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,134.1234567901234,0)" xlink:href="#bD"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,143.99999999999994,0)" xlink:href="#bA"/></g><path fill="#3a414a" d="M115-194c53 0 69 39 70 98 0 66-23 100-70 100C84 3 66-7 56-30L54 0H23l1-261h32v101c10-23 28-34 59-34zm-8 174c40 0 45-34 45-75 0-40-5-75-45-74-42 0-51 32-51 76 0 43 10 73 51 73" id="ca"/><path fill="#3a414a" d="M179-190L93 31C79 59 56 82 12 73V49c39 6 53-20 64-50L1-190h34L92-34l54-156h33" id="cb"/><g id="ae"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#ca"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,9.87654320987654,0)" xlink:href="#cb"/></g><g id="af"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bC"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,4.93827160493827,0)" xlink:href="#bV"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,14.814814814814811,0)" xlink:href="#bD"/></g><path fill="#3a414a" d="M240 0l2-218c-23 76-54 145-80 218h-23L58-218 59 0H30v-248h44l77 211c21-75 51-140 76-211h43V0h-30" id="cc"/><path fill="#3a414a" d="M30-248c118-7 216 8 213 122C240-48 200 0 122 0H30v-248zM63-27c89 8 146-16 146-99s-60-101-146-95v194" id="cd"/><path fill="#3a414a" d="M212-179c-10-28-35-45-73-45-59 0-87 40-87 99 0 60 29 101 89 101 43 0 62-24 78-52l27 14C228-24 195 4 139 4 59 4 22-46 18-125c-6-104 99-153 187-111 19 9 31 26 39 46" id="ce"/><path fill="#3a414a" d="M127-220V0H93v-220H8v-28h204v28h-85" id="cf"/><g id="ag"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#cc"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,14.765432098765428,0)" xlink:href="#cd"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,27.55555555555555,0)" xlink:href="#ce"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,40.34567901234567,0)" xlink:href="#cf"/></g><path fill="#3a414a" d="M210-169c-67 3-38 105-44 169h-31v-121c0-29-5-50-35-48C34-165 62-65 56 0H25l-1-190h30c1 10-1 24 2 32 10-44 99-50 107 0 11-21 27-35 58-36 85-2 47 119 55 194h-31v-121c0-29-5-49-35-48" id="cg"/><g id="ah"><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,0,0)" xlink:href="#bC"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,4.93827160493827,0)" xlink:href="#bD"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,14.814814814814811,0)" xlink:href="#bB"/><use transform="matrix(0.049382716049382706,0,0,0.049382716049382706,24.691358024691354,0)" xlink:href="#cg"/></g></defs></g></svg> \ No newline at end of file diff --git a/README.md b/README.md index 3d65460e6..872ff60c8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Maintainability](https://api.codeclimate.com/v1/badges/f1775f53aedf747e85b2/maintainability)](https://codeclimate.com/repos/6449718c21275100df510ea9/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/f1775f53aedf747e85b2/test_coverage)](https://codeclimate.com/repos/6449718c21275100df510ea9/test_coverage) -### Integration Environment Deploy Status: +## Integration Environment Deploy Status: | Branch | Build Status | | ------------- | ------------- | | main | ![deploy](https://github.com/Enterprise-CMCS/macpro-mdct-carts/actions/workflows/deploy.yml/badge.svg) | @@ -16,7 +16,7 @@ CARTS is the CMCS MDCT application for collecting state data related to coverage Under section 2108(a) of the Act, states must assess the operation of their separate CHIP and Medicaid expansion programs and the progress made in reducing the number of uncovered, low-income children. The results of the assessment are reported to the Secretary by January 1 following the end of the FY in the CHIP Annual Reporting Template System (CARTS). CARTS collects information about programmatic changes, performance goals, program operation, program financing, program challenges and accomplishments. -_Note: The [`main`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/main) branch contains CARTSv3. All code related to CARTSv2 (legacy) can be found in the [`master`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/master) branch._ +_Note: The [`main`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/main) branch contains CARTSv3. All code related to CARTSv2 (legacy) can be found in the [`skipci-archive-carts-v2`](https://github.com/Enterprise-CMCS/macpro-mdct-carts/tree/skipci-archive-carts-v2) branch._ ## Table of contents @@ -115,10 +115,7 @@ On the SEDS side, this topic is updated on every submission of seds data, but CA - 4th quarter data. - The rollover for a "new year" is October, and future submissions are not recognized until that threshold -Updates outside of that time frame will need to be manually corrected in CARTS, or the integration will need to be modifed to collect data for old forms. CARTS additionally looks for the `enrollmentCounts` property which is only included in forms 21E and 64.21E (question 7), either by manual trigger or update. See SEDS files: - -- [generateEnrollmentTotals](https://github.com/Enterprise-CMCS/macpro-mdct-seds/blob/master/services/app-api/handlers/state-forms/post/generateEnrollmentTotals.js) -- [updateStateForms](https://github.com/Enterprise-CMCS/macpro-mdct-seds/blob/master/services/app-api/handlers/state-forms/post/updateStateForms.js) +Updates outside of that time frame will need to be manually corrected in CARTS, or the integration will need to be modifed to collect data for old forms. CARTS additionally looks for the `enrollmentCounts` property which is only included in forms 21E and 64.21E (question 7), either by manual trigger or update. For testing convenience, stateuser2 points at AL in CARTS and the stateuser points at AL in SEDS. diff --git a/package.json b/package.json index 5bfe1bb5d..64d442968 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "eslint-plugin-react": "^7.24.0", "eslint-plugin-react-hooks": "^2.x", "prettier": "^2.4.1", - "serverless": "^3.38.0", + "serverless": "^3.39.0", "serverless-bundle": "^6.1.0", "serverless-cloudfront-invalidate": "^1.12.2", "serverless-dotenv-plugin": "^3.0.0", diff --git a/services/app-api/handlers/printing/printPdf.ts b/services/app-api/handlers/printing/printPdf.ts index 686421f94..5b3f84ad9 100644 --- a/services/app-api/handlers/printing/printPdf.ts +++ b/services/app-api/handlers/printing/printPdf.ts @@ -21,7 +21,7 @@ export const print = handler(async (event, _context) => { if (DOMPurify.isSupported) { sanitizedHtml = DOMPurify.sanitize(rawHtml, { WHOLE_DOCUMENT: true, - ADD_TAGS: ["head"], + ADD_TAGS: ["head", "link", "base"], }); } if (!sanitizedHtml) { @@ -39,7 +39,7 @@ export const print = handler(async (event, _context) => { document_content: rawHtml, type: "pdf" as const, // This tag differentiates QMR and CARTS requests in DocRaptor's logs. - tag: "CARTS", + tag: `CARTS ${stage}`, test: stage !== "production", prince_options: { profile: "PDF/UA-1" as const, diff --git a/services/app-api/handlers/printing/tests/printPdf.test.ts b/services/app-api/handlers/printing/tests/printPdf.test.ts index a2165f1a4..445c3b2e7 100644 --- a/services/app-api/handlers/printing/tests/printPdf.test.ts +++ b/services/app-api/handlers/printing/tests/printPdf.test.ts @@ -54,7 +54,7 @@ describe("Test Print PDF handler", () => { doc: expect.objectContaining({ document_content: html, type: "pdf", - tag: "CARTS", + tag: expect.stringMatching("CARTS"), prince_options: expect.objectContaining({ profile: "PDF/UA-1", }), diff --git a/services/app-api/handlers/stateStatus/tests/uncertify.test.ts b/services/app-api/handlers/stateStatus/tests/uncertify.test.ts index a882720c5..fa1eb616c 100644 --- a/services/app-api/handlers/stateStatus/tests/uncertify.test.ts +++ b/services/app-api/handlers/stateStatus/tests/uncertify.test.ts @@ -17,6 +17,7 @@ jest.mock("../../../libs/authorization", () => ({ state: "AL", }), })); + describe("Test Uncertify CARTS Report Handler", () => { test("uncertify CARTS report", async () => { const event: APIGatewayProxyEvent = { @@ -24,7 +25,21 @@ describe("Test Uncertify CARTS Report Handler", () => { pathParameters: { year: "2021", state: "AL" }, body: `{"status": "in_progress", "username": "test user"}`, }; + const res = await updateStateStatus(event, null); + + /* + * Convert date to a regex that doesn't care about seconds. + * For example "12:34:56 (UTC)" becomes /12:34:.. \(UTC\)/ + * This reduces flakiness, in case a second passes during text execution + */ + const expectedDateString = new Date() + .toString() + .replace("(", "\\(") + .replace(")", "\\)") + .replace("+", "\\+") + .replace(/(?<=\d{2}:\d{2}:)\d{2}/, ".."); + expect(res.statusCode).toBe(200); expect(dynamodbLib.update).toBeCalledWith({ ExpressionAttributeNames: { @@ -33,7 +48,7 @@ describe("Test Uncertify CARTS Report Handler", () => { }, ExpressionAttributeValues: { ":status": "in_progress", - ":lastChanged": new Date().toString(), + ":lastChanged": expect.stringMatching(expectedDateString), }, Key: { stateId: "AL", diff --git a/services/app-api/libs/validation/backend-section.schema.ts b/services/app-api/libs/validation/backend-section.schema.ts index 3383d025c..9ae88e986 100644 --- a/services/app-api/libs/validation/backend-section.schema.ts +++ b/services/app-api/libs/validation/backend-section.schema.ts @@ -359,6 +359,9 @@ export const sectionSchema = { hint: { type: "string", }, + mask: { + type: "string", + }, questions: { type: "array", items: { diff --git a/services/app-api/package.json b/services/app-api/package.json index f2247f3ba..bd0ddd9c1 100644 --- a/services/app-api/package.json +++ b/services/app-api/package.json @@ -18,7 +18,7 @@ "devDependencies": { "@types/dompurify": "^3.0.5", "@types/jest": "^27.4.0", - "@types/jsdom": "^21.1.6", + "@types/jsdom": "^21.1.7", "aws-sdk-client-mock": "^3.0.0", "jest": "^27.4.7", "serverless-associate-waf": "^1.2.1", @@ -27,19 +27,22 @@ "typescript": "^4.5.4" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.596.0", - "@aws-sdk/client-s3": "^3.596.0", - "@aws-sdk/client-ssm": "^3.596.0", - "@aws-sdk/lib-dynamodb": "^3.596.0", - "@aws-sdk/s3-request-presigner": "^3.596.0", + "@aws-sdk/client-dynamodb": "^3.621.0", + "@aws-sdk/client-s3": "^3.621.0", + "@aws-sdk/client-ssm": "^3.621.0", + "@aws-sdk/lib-dynamodb": "^3.621.0", + "@aws-sdk/s3-request-presigner": "^3.621.0", "aws-jwt-verify": "^3.1.0", "dompurify": "^3.1.4", - "jsdom": "^22.1.0", + "jsdom": "^24.1.0", "jsonpath-plus": "^5.1.0", "jsonschema": "^1.4.1", "jwt-decode": "^3.1.2", "uuid": "^7.0.3" }, + "resolutions": { + "ws": "^8.18.0" + }, "jest": { "verbose": true, "transform": { diff --git a/services/app-api/yarn.lock b/services/app-api/yarn.lock index 9fb24d794..01a60594a 100644 --- a/services/app-api/yarn.lock +++ b/services/app-api/yarn.lock @@ -2,487 +2,479 @@ # yarn lockfile v1 -"@aws-crypto/crc32@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-3.0.0.tgz#07300eca214409c33e3ff769cd5697b57fdd38fa" - integrity sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA== +"@aws-crypto/crc32@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1" + integrity sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/crc32c@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f" - integrity sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w== +"@aws-crypto/crc32c@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz#4e34aab7f419307821509a98b9b08e84e0c1917e" + integrity sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" - -"@aws-crypto/ie11-detection@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" - integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== - dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/sha1-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-3.0.0.tgz#f9083c00782b24714f528b1a1fef2174002266a3" - integrity sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw== +"@aws-crypto/sha1-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz#b0ee2d2821d3861f017e965ef3b4cb38e3b6a0f4" + integrity sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg== dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" - integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/sha256-js" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" - integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/supports-web-crypto@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" - integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/util@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" - integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== dependencies: "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/client-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" - integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-endpoint-discovery" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" + integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-endpoint-discovery" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-s3@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.596.0.tgz#28233f0cc826d189230489ca816a37c350fa06f8" - integrity sha512-W5C85cEUTYbmCpvvhLye+KirtLcBMX4t0l4Zj3EsGc5tTwkp7lxZDmJEoDfRy0+FE2H/O6OZQJdWMXCwt/Inqw== - dependencies: - "@aws-crypto/sha1-browser" "3.0.0" - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-bucket-endpoint" "3.587.0" - "@aws-sdk/middleware-expect-continue" "3.577.0" - "@aws-sdk/middleware-flexible-checksums" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-location-constraint" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-sdk-s3" "3.587.0" - "@aws-sdk/middleware-signing" "3.587.0" - "@aws-sdk/middleware-ssec" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/signature-v4-multi-region" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@aws-sdk/xml-builder" "3.575.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/eventstream-serde-browser" "^3.0.0" - "@smithy/eventstream-serde-config-resolver" "^3.0.0" - "@smithy/eventstream-serde-node" "^3.0.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-blob-browser" "^3.0.0" - "@smithy/hash-node" "^3.0.0" - "@smithy/hash-stream-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/md5-js" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-s3@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.621.0.tgz#86a0e77913cd1e82308299835431887fe306c3a0" + integrity sha512-YhGkd2HQTM4HCYJIAVWvfbUMpOF7XUr1W/e2LN3CFP0WTF4zcCJKesJ2iNHrExqC0Ek1+qarMxiXBK95itfjYQ== + dependencies: + "@aws-crypto/sha1-browser" "5.2.0" + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-bucket-endpoint" "3.620.0" + "@aws-sdk/middleware-expect-continue" "3.620.0" + "@aws-sdk/middleware-flexible-checksums" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-location-constraint" "3.609.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-sdk-s3" "3.621.0" + "@aws-sdk/middleware-signing" "3.620.0" + "@aws-sdk/middleware-ssec" "3.609.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/signature-v4-multi-region" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@aws-sdk/xml-builder" "3.609.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/eventstream-serde-browser" "^3.0.5" + "@smithy/eventstream-serde-config-resolver" "^3.0.3" + "@smithy/eventstream-serde-node" "^3.0.4" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-blob-browser" "^3.1.2" + "@smithy/hash-node" "^3.0.3" + "@smithy/hash-stream-node" "^3.1.2" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/md5-js" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-retry" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" -"@aws-sdk/client-ssm@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.596.0.tgz#310cb1ed3b0475acfd555b00b7d9cecbccb661b6" - integrity sha512-6gTCjQQ3ZMABSzKLnjEbiqDS4C+BpSAMyw9022/vAP7ybdF/fJENBy4XEwKgZ6U7VhLZePrO0ESyYYcpBnAc+g== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-ssm@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.621.0.tgz#d5928d86c65c2cb072f8d3bdaa739d3ff06cd1e5" + integrity sha512-E4OM7HH9qU2TZGDrX2MlBlBr9gVgDm573Qa1CTFih58dUZyaPEOiZSYLUNOyw4nMyVLyDMR/5zQ4wAorNwKVPw== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== - dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== + dependencies: + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== - dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== + dependencies: + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -493,206 +485,208 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" - integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== +"@aws-sdk/lib-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" + integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== dependencies: - "@aws-sdk/util-dynamodb" "3.596.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@aws-sdk/util-dynamodb" "3.621.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-bucket-endpoint@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.587.0.tgz#def5edbadf53bdfe765aa9acf12f119eb208b22f" - integrity sha512-HkFXLPl8pr6BH/Q0JpOESqEKL0ZK3sk7aSZ1S6GE4RXET7H5R94THULXqQFZzD48gZcyFooO/yNKZTqrZFaWKg== +"@aws-sdk/middleware-bucket-endpoint@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" + integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== dependencies: - "@aws-sdk/types" "3.577.0" + "@aws-sdk/types" "3.609.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" - integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== +"@aws-sdk/middleware-endpoint-discovery@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" + integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-expect-continue@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.577.0.tgz#47add47f17873a6044cb140f17033cb6e1d02744" - integrity sha512-6dPp8Tv4F0of4un5IAyG6q++GrRrNQQ4P2NAMB1W0VO4JoEu1C8GievbbDLi88TFIFmtKpnHB0ODCzwnoe8JsA== +"@aws-sdk/middleware-expect-continue@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" + integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-flexible-checksums@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.587.0.tgz#74afe7bd3088adf05b2ed843ad41386e793e0397" - integrity sha512-URMwp/budDvKhIvZ4a6zIBfFTun/iDlPWXqsGKYjEtHt8jz27OSjCZtDtIeqW4WTBdKL8KZgQcl+DdaE5M1qiQ== +"@aws-sdk/middleware-flexible-checksums@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" + integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== dependencies: - "@aws-crypto/crc32" "3.0.0" - "@aws-crypto/crc32c" "3.0.0" - "@aws-sdk/types" "3.577.0" + "@aws-crypto/crc32" "5.2.0" + "@aws-crypto/crc32c" "5.2.0" + "@aws-sdk/types" "3.609.0" "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-location-constraint@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.577.0.tgz#9372441a4ac5747b3176ac6378d92866a51de815" - integrity sha512-DKPTD2D2s+t2QUo/IXYtVa/6Un8GZ+phSTBkyBNx2kfZz4Kwavhl/JJzSqTV3GfCXkVdFu7CrjoX7BZ6qWeTUA== +"@aws-sdk/middleware-location-constraint@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" + integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-sdk-s3@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.587.0.tgz#720620ccdc2eb6ecab0f3a6adbd28fc27fdc70ce" - integrity sha512-vtXTGEiw1E9Fax4LmcU2Z208gbrC8ShrdsSLmGcRPpu5NPOGBFBSDG5sy5EDNClrFxIl/Le8coQnD0EDBtx+uQ== +"@aws-sdk/middleware-sdk-s3@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.621.0.tgz#da9cc709fffa4d269bb472e8ca42f2a4d80a842b" + integrity sha512-CJrQrtKylcqvyPkRR16JmPZkHroCkWwLErQrg30ZcBPNNok8xbfX6cYqG16XDTnu4lSYzv2Yqc4w4oOBv8xerQ== dependencies: - "@aws-sdk/types" "3.577.0" + "@aws-sdk/types" "3.609.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-signing@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.587.0.tgz#593c418c09c51c0bc55f23a7a6b0fda8502a8103" - integrity sha512-tiZaTDj4RvhXGRAlncFn7CSEfL3iNPO67WSaxAq+Ls5j1VgczPhu5262cWONNoMgth3nXR1hhLC4ITSl/a6AzA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" +"@aws-sdk/middleware-signing@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.620.0.tgz#8aface959d610732b0a5ede6f2c48119b33c4f3f" + integrity sha512-gxI7rubiaanUXaLfJ4NybERa9MGPNg2Ycl/OqANsozrBnR3Pw8vqy3EuVImQOyn2pJ2IFvl8ZPoSMHf4pX56FQ== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/middleware-ssec@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.577.0.tgz#9fcd74e8bf2c277b4349c537cbeceba279166f32" - integrity sha512-i2BPJR+rp8xmRVIGc0h1kDRFcM2J9GnClqqpc+NLSjmYadlcg4mPklisz9HzwFVcRPJ5XcGf3U4BYs5G8+iTyg== +"@aws-sdk/middleware-ssec@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" + integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/s3-request-presigner@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.596.0.tgz#1b931f9cda1e065f0a02b3f81b27f197a87d3385" - integrity sha512-+2BXIc8JGH3MtLrR1Rx5gdD/AOEnuNsm5vmfbCW3tT3UinPkqCQTe2dB5KFCu76YTRE+D2yY8OF2ZW46sbh9bA== - dependencies: - "@aws-sdk/signature-v4-multi-region" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-format-url" "3.577.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" +"@aws-sdk/s3-request-presigner@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.621.0.tgz#0c6d033dd3b3ae17061407766466ce66362c6d92" + integrity sha512-7XCH5wy1guywSa4PHKrSiAqm/mYpuKURQWD9nGN9tl2DWec6OK7z+TTTCOml8lBX8Mg5Hx2GUdO3V8uRVYnEmw== + dependencies: + "@aws-sdk/signature-v4-multi-region" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-format-url" "3.609.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/signature-v4-multi-region@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.587.0.tgz#f8bb6de9135f3fafab04b9220409cd0d0549b7d8" - integrity sha512-TR9+ZSjdXvXUz54ayHcCihhcvxI9W7102J1OK6MrLgBlPE7uRhAx42BR9L5lLJ86Xj3LuqPWf//o9d/zR9WVIg== +"@aws-sdk/signature-v4-multi-region@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.621.0.tgz#d8bd2e8bab970acaecfaca3de85c6924b43f07ff" + integrity sha512-u+ulCaHFveqHaTxgiYrEAyfBVP6GRKjnmDut67CtjhjslshPWYpo/ndtlCW1zc0RDne3uUeK13Pqp7dp7p1d6g== dependencies: - "@aws-sdk/middleware-sdk-s3" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/middleware-sdk-s3" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -710,31 +704,31 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" - integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== +"@aws-sdk/util-dynamodb@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" + integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" -"@aws-sdk/util-format-url@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.577.0.tgz#e6686c767e9809416179dbafbc2a39cbbb548259" - integrity sha512-SyEGC2J+y/krFRuPgiF02FmMYhqbiIkOjDE6k4nYLJQRyS6XEAGxZoG+OHeOVEM+bsDgbxokXZiM3XKGu6qFIg== +"@aws-sdk/util-format-url@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.609.0.tgz#f53907193bb636b52b61c81bbe6d7bd5ddc76c68" + integrity sha512-fuk29BI/oLQlJ7pfm6iJ4gkEpHdavffAALZwXh9eaY1vQ0ip0aKfRTiNudPoJjyyahnz5yJ1HkmlcDitlzsOrQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -744,39 +738,32 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@aws-sdk/xml-builder@3.575.0": - version "3.575.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.575.0.tgz#233b2aae422dd789a078073032da1bc60317aa1d" - integrity sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ== +"@aws-sdk/xml-builder@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" + integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": @@ -1421,12 +1408,12 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918" integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ== -"@smithy/abort-controller@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.1.tgz#bb8debe1c23ca62a61b33a9ee2918f5a79d81928" - integrity sha512-Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/chunked-blob-reader-native@^3.0.0": @@ -1444,133 +1431,140 @@ dependencies: tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1", "@smithy/config-resolver@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.2.tgz#ad19331d48d9a6e67bdd43a0099e1d8af1b82a82" - integrity sha512-wUyG6ezpp2sWAvfqmSYTROwFUmJqKV78GLf55WODrosBcT0BAMd9bOLO4HRhynWBgAobPml2cF9ZOdgCe00r+g== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/types" "^3.1.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.1" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/core@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.1.tgz#92ed71eb96ef16d5ac8b23dbdf913bcb225ab875" - integrity sha512-R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA== - dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-retry" "^3.0.4" - "@smithy/middleware-serde" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0", "@smithy/credential-provider-imds@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.1.tgz#8b2b3c9e7e67fd9e3e436a5e1db6652ab339af7b" - integrity sha512-htndP0LwHdE3R3Nam9ZyVWhwPYOmD4xCL79kqvNxy8u/bv0huuy574CSiRY4cvEICgimv8jlVfLeZ7zZqbnB2g== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/property-provider" "^3.1.1" - "@smithy/types" "^3.1.0" - "@smithy/url-parser" "^3.0.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" -"@smithy/eventstream-codec@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.0.1.tgz#34fd2f37ddb411fd6a28ff86e0c7c95f813802bd" - integrity sha512-RNl3CuWZWPy+s8sx4PcOkRvlfodR33Dj3hzUuDG/CoF6XBvm5Xvr33wRoC1RWht0NN+Q6Z6KcoAkhlQA12MBBw== +"@smithy/eventstream-codec@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" + integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== dependencies: - "@aws-crypto/crc32" "3.0.0" - "@smithy/types" "^3.1.0" + "@aws-crypto/crc32" "5.2.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-browser@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.1.tgz#8eb486bda0d41324396fed42f471e02bf0a9122e" - integrity sha512-hpjzFlsDwtircebetScjEiwQwwPy0XASsV3dpUxEhPQUnF/mQ/IeiXaDrhsOmJiscMuCwxNPoZm3x4XmnGwN1g== +"@smithy/eventstream-serde-browser@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" + integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/eventstream-serde-config-resolver@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.1.tgz#74e9cb3992edc03319ffa05eb6008aacaaca4f71" - integrity sha512-6+B8P+5Q1mll4u7IoI7mpmYOSW3/c2r3WQoYLdqOjbIKMixJFGmN79ZjJiNMy4X2GZ4We9kQ6LfnFuczSlhcyw== +"@smithy/eventstream-serde-config-resolver@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" + integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/eventstream-serde-node@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.1.tgz#81b96ee269334516ab23b11c7d0b9a5dc32ae633" - integrity sha512-8ylxIbZ0XiQD8kSKPmrrGS/2LmcDxg1mAAURa5tjcjYeBJPg7EaFRcH/aRe2RDPaoVUAbOfjHh2bTkWvy7P4Ig== +"@smithy/eventstream-serde-node@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" + integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/eventstream-serde-universal@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.1.tgz#0060ce4147568706988890490e8c6cc11a15dde9" - integrity sha512-E6aeN0MEO1p1KVN4Z3XQlvdUPp+hKJ21eiiioWtNLNNGAZUaJPlXgrqF+6Wj/aM86//9EQp6/iAwQB6eXaulzw== +"@smithy/eventstream-serde-universal@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" + integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== dependencies: - "@smithy/eventstream-codec" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/eventstream-codec" "^3.1.2" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1", "@smithy/fetch-http-handler@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz#eff4056e819b3591d1c5d472ee58c2981886920a" - integrity sha512-0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-blob-browser@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.0.1.tgz#9a72d6010bad91f2f6b97df41bbe662b24d404f3" - integrity sha512-P8xxvMm0F6vi/7+GwGhZbE532b7TzGJUfUoUNGrb+dcR+MJUisV8sEQBZ5EB/ddf1/aGr8KO7QqbO/6WhfdW/Q== +"@smithy/hash-blob-browser@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" + integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== dependencies: "@smithy/chunked-blob-reader" "^3.0.0" "@smithy/chunked-blob-reader-native" "^3.0.0" - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.1.tgz#52924bcbd6a02c7f7e2d9c332f59d5adc09688a3" - integrity sha512-w2ncjgk2EYO2+WhAsSQA8owzoOSY7IL1qVytlwpnL1pFGWTjIoIh5nROkEKXY51unB63bMGZqDiVoXaFbyKDlg== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-stream-node@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.0.1.tgz#88f467cb35f87fa2154774ac56d901cf13321edd" - integrity sha512-5Z5Oyqh9f5927HWyKK3klG09rMlVu8OcEQd4YDxYZbjdB9nHd8imTMN06tfcyrZCEzcOdeUCpJmjfVWUxUDigg== +"@smithy/hash-stream-node@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" + integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.1.tgz#921787acfbe136af7ded46ae6f4b3d81c9b7e05e" - integrity sha512-RSNF/32BKygXKKMyS7koyuAq1rcdW5p5c4EFa77QenBFze9As+JiRnV9OWBh2cB/ejGZalEZjvIrMLHwJl7aGA== +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@smithy/is-array-buffer@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" + integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== dependencies: - "@smithy/types" "^3.1.0" tslib "^2.6.2" "@smithy/is-array-buffer@^3.0.0": @@ -1580,160 +1574,161 @@ dependencies: tslib "^2.6.2" -"@smithy/md5-js@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.1.tgz#796dca16509f66da5ba380120efdbbbfc4d1ab5d" - integrity sha512-wQa0YGsR4Zb1GQLGwOOgRAbkj22P6CFGaFzu5bKk8K4HVNIC2dBlIxqZ/baF0pLiSZySAPdDZT7CdZ7GkGXt5A== +"@smithy/md5-js@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" + integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.1.tgz#90bce78dfd0db978df7920ae58e420ce9ed2f79a" - integrity sha512-6QdK/VbrCfXD5/QolE2W/ok6VqxD+SM28Ds8iSlEHXZwv4buLsvWyvoEEy0322K/g5uFgPzBmZjGqesTmPL+yQ== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/protocol-http" "^4.0.1" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.0.1", "@smithy/middleware-endpoint@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz#93bb575a25bb0bd5d1d18cd77157ccb2ba15112a" - integrity sha512-gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w== - dependencies: - "@smithy/middleware-serde" "^3.0.1" - "@smithy/node-config-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" - "@smithy/url-parser" "^3.0.1" - "@smithy/util-middleware" "^3.0.1" +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.3", "@smithy/middleware-retry@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz#4f1a23c218fe279659c3d88ec1c18bf19938eba6" - integrity sha512-Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg== - dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/service-error-classification" "^3.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" - "@smithy/util-retry" "^3.0.1" +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.0", "@smithy/middleware-serde@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz#566ec46ee84873108c1cea26b3f3bd2899a73249" - integrity sha512-ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.0", "@smithy/middleware-stack@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz#9418f1295efda318c181bf3bca65173a75d133e5" - integrity sha512-fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0", "@smithy/node-config-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz#a361ab228d2229b03cc2fbdfd304055c38127614" - integrity sha512-z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/property-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.0.0", "@smithy/node-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz#40e1ebe00aeb628a46a3a12b14ad6cabb69b576e" - integrity sha512-hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/abort-controller" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0", "@smithy/property-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.1.tgz#4849b69b83ac97e68e80d2dc0c2b98ce5950dffe" - integrity sha512-YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0", "@smithy/protocol-http@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.1.tgz#7b57080565816f229d2391726f537e13371c7e38" - integrity sha512-eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0", "@smithy/querystring-builder@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz#8fb20e1d13154661612954c5ba448e0875be6118" - integrity sha512-vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz#68589196fedf280aad2c0a69a2a016f78b2137cf" - integrity sha512-Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz#23db475d3cef726e8bf3435229e6e04e4de92430" - integrity sha512-ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" -"@smithy/shared-ini-file-loader@^3.1.0", "@smithy/shared-ini-file-loader@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz#752ecd8962a660ded75d25341a48feb94f145a6f" - integrity sha512-nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.1.tgz#8542bfe127f93a8c2c5bcdc05c3e489b9cd16ed5" - integrity sha512-ARAmD+E7j6TIEhKLjSZxdzs7wceINTMJRN2BXPM09BiUmJhkXAF1ZZtDXH6fhlk7oehBZeh37wGiPOqtdKjLeg== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.1" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1", "@smithy/smithy-client@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.2.tgz#1c27ab4910bbfd6c0bc04ddd8412494e7a7daba7" - integrity sha512-f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ== - dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-stack" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/types" "^3.1.0" - "@smithy/util-stream" "^3.0.2" +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -1743,20 +1738,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.0.0", "@smithy/types@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.1.0.tgz#e2eb2e2130026a8a0631b2605c17df1975aa99d6" - integrity sha512-qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.0", "@smithy/url-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.1.tgz#5451fc7034e9eda112696d1a9508746a7f8b0521" - integrity sha512-G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -1782,6 +1777,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-buffer-from@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" + integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + dependencies: + "@smithy/is-array-buffer" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -1797,37 +1800,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.4.tgz#4392db3d96aa08ae161bb987ecfedc094d84b88d" - integrity sha512-sXtin3Mue3A3xo4+XkozpgPptgmRwvNPOqTvb3ANGTCzzoQgAPBNjpE+aXCINaeSMXwHmv7E2oEn2vWdID+SAQ== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.4.tgz#794b8bb3facb5f6581af8d02fcf1b42b34c103e5" - integrity sha512-CUF6TyxLh3CgBRVYgZNOPDfzHQjeQr0vyALR6/DkQkOm7rNfGEzW1BRFi88C73pndmfvoiIT7ochuT76OPz9Dw== - dependencies: - "@smithy/config-resolver" "^3.0.2" - "@smithy/credential-provider-imds" "^3.1.1" - "@smithy/node-config-provider" "^3.1.1" - "@smithy/property-provider" "^3.1.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== + dependencies: + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.2.tgz#f995cca553569af43bef82f59d63b4969516df95" - integrity sha512-4zFOcBFQvifd2LSD4a1dKvfIWWwh4sWNtS3oZ7mpob/qPPmJseqKB148iT+hWCDsG//TmI+8vjYPgZdvnkYlTg== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/types" "^3.1.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -1837,31 +1840,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0", "@smithy/util-middleware@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.1.tgz#3e0eabaf936e62651a0b9a7c7c3bbe43d3971c91" - integrity sha512-WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.0", "@smithy/util-retry@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.1.tgz#24037ff87a314a1ac99f80da43f579ae2352fe18" - integrity sha512-5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/service-error-classification" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1", "@smithy/util-stream@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.2.tgz#ed1377bfe824d8acfc105ab2d17ec4f376382cb2" - integrity sha512-n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.2" - "@smithy/node-http-handler" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1875,6 +1878,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-utf8@^2.0.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" + integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + dependencies: + "@smithy/util-buffer-from" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -1883,13 +1894,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.1.tgz#62d8ff58374032aa8c7e573b1ca4234407c605bd" - integrity sha512-wwnrVQdjQxvWGOAiLmqlEhENGCcDIN+XJ/+usPOgSZObAslrCXgKlkX7rNVwIWW2RhPguTKthvF+4AoO0Z6KpA== +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== dependencies: - "@smithy/abort-controller" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@tootallnate/once@1": @@ -1897,11 +1908,6 @@ resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": version "7.1.18" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.18.tgz#1a29abcc411a9c05e2094c98f9a1b7da6cdf49f8" @@ -1984,10 +1990,10 @@ jest-diff "^27.0.0" pretty-format "^27.0.0" -"@types/jsdom@^21.1.6": - version "21.1.6" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.6.tgz#bcbc7b245787ea863f3da1ef19aa1dcfb9271a1b" - integrity sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw== +"@types/jsdom@^21.1.7": + version "21.1.7" + resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.7.tgz#9edcb09e0b07ce876e7833922d3274149c898cfa" + integrity sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA== dependencies: "@types/node" "*" "@types/tough-cookie" "*" @@ -2052,11 +2058,6 @@ abab@^2.0.3, abab@^2.0.5: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== -abab@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - acorn-globals@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" @@ -2087,6 +2088,13 @@ agent-base@6: dependencies: debug "4" +agent-base@^7.0.2, agent-base@^7.1.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" + integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== + dependencies: + debug "^4.3.4" + ansi-escapes@^4.2.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" @@ -2418,10 +2426,10 @@ cssstyle@^2.3.0: dependencies: cssom "~0.3.6" -cssstyle@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-3.0.0.tgz#17ca9c87d26eac764bb8cfd00583cff21ce0277a" - integrity sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== +cssstyle@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.0.1.tgz#ef29c598a1e90125c870525490ea4f354db0660a" + integrity sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ== dependencies: rrweb-cssom "^0.6.0" @@ -2434,14 +2442,13 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" -data-urls@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" - integrity sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== +data-urls@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-5.0.0.tgz#2f76906bce1824429ffecb6920f45a0b30f00dde" + integrity sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg== dependencies: - abab "^2.0.6" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.0" + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" debug@4, debug@^4.1.0, debug@^4.1.1: version "4.3.3" @@ -2450,6 +2457,13 @@ debug@4, debug@^4.1.0, debug@^4.1.1: dependencies: ms "2.1.2" +debug@^4.3.4: + version "4.3.5" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" + integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== + dependencies: + ms "2.1.2" + decimal.js@^10.2.1: version "10.3.1" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" @@ -2509,13 +2523,6 @@ domexception@^2.0.1: dependencies: webidl-conversions "^5.0.0" -domexception@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" - integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== - dependencies: - webidl-conversions "^7.0.0" - dompurify@^3.1.4: version "3.1.5" resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.5.tgz#2c6a113fc728682a0f55684b1388c58ddb79dc38" @@ -2634,10 +2641,10 @@ fast-levenshtein@~2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== dependencies: strnum "^1.0.5" @@ -2799,12 +2806,12 @@ html-encoding-sniffer@^2.0.1: dependencies: whatwg-encoding "^1.0.5" -html-encoding-sniffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" - integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== +html-encoding-sniffer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz#696df529a7cfd82446369dc5193e590a3735b448" + integrity sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ== dependencies: - whatwg-encoding "^2.0.0" + whatwg-encoding "^3.1.1" html-escaper@^2.0.0: version "2.0.2" @@ -2820,14 +2827,13 @@ http-proxy-agent@^4.0.1: agent-base "6" debug "4" -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== +http-proxy-agent@^7.0.2: + version "7.0.2" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" + agent-base "^7.1.0" + debug "^4.3.4" https-proxy-agent@^5.0.0: version "5.0.0" @@ -2837,12 +2843,12 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== +https-proxy-agent@^7.0.4: + version "7.0.5" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" + integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== dependencies: - agent-base "6" + agent-base "^7.0.2" debug "4" human-signals@^2.1.0: @@ -3446,34 +3452,32 @@ jsdom@^16.6.0: ws "^7.4.6" xml-name-validator "^3.0.0" -jsdom@^22.1.0: - version "22.1.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" - integrity sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== +jsdom@^24.1.0: + version "24.1.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-24.1.0.tgz#0cffdabd42c506788bfecd160e8ac22d4387f971" + integrity sha512-6gpM7pRXCwIOKxX47cgOyvyQDN/Eh0f1MeKySBV2xGdKtqJBLj8P25eY3EVCWo2mglDDzozR2r2MW4T+JiNUZA== dependencies: - abab "^2.0.6" - cssstyle "^3.0.0" - data-urls "^4.0.0" + cssstyle "^4.0.1" + data-urls "^5.0.0" decimal.js "^10.4.3" - domexception "^4.0.0" form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.1" + html-encoding-sniffer "^4.0.0" + http-proxy-agent "^7.0.2" + https-proxy-agent "^7.0.4" is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.4" + nwsapi "^2.2.10" parse5 "^7.1.2" - rrweb-cssom "^0.6.0" + rrweb-cssom "^0.7.0" saxes "^6.0.0" symbol-tree "^3.2.4" - tough-cookie "^4.1.2" - w3c-xmlserializer "^4.0.0" + tough-cookie "^4.1.4" + w3c-xmlserializer "^5.0.0" webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.1" - ws "^8.13.0" - xml-name-validator "^4.0.0" + whatwg-encoding "^3.1.1" + whatwg-mimetype "^4.0.0" + whatwg-url "^14.0.0" + ws "^8.17.0" + xml-name-validator "^5.0.0" jsesc@^2.5.1: version "2.5.2" @@ -3675,10 +3679,10 @@ nwsapi@^2.2.0: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== -nwsapi@^2.2.4: - version "2.2.7" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" - integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== +nwsapi@^2.2.10: + version "2.2.12" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8" + integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w== obliterator@^1.6.1: version "1.6.1" @@ -3828,7 +3832,7 @@ punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -punycode@^2.3.0: +punycode@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -3901,6 +3905,11 @@ rrweb-cssom@^0.6.0: resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz#ed298055b97cbddcdeb278f904857629dec5e0e1" integrity sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== +rrweb-cssom@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz#c73451a484b86dd7cfb1e0b2898df4b703183e4b" + integrity sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg== + run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -4151,7 +4160,7 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -tough-cookie@^4.0.0, tough-cookie@^4.1.2: +tough-cookie@^4.0.0: version "4.1.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== @@ -4161,6 +4170,16 @@ tough-cookie@^4.0.0, tough-cookie@^4.1.2: universalify "^0.2.0" url-parse "^1.5.3" +tough-cookie@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" + integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== + dependencies: + psl "^1.1.33" + punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" + tr46@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" @@ -4168,12 +4187,12 @@ tr46@^2.1.0: dependencies: punycode "^2.1.1" -tr46@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" - integrity sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== +tr46@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-5.0.0.tgz#3b46d583613ec7283020d79019f1335723801cec" + integrity sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g== dependencies: - punycode "^2.3.0" + punycode "^2.3.1" ts-jest@^27.1.3: version "27.1.3" @@ -4189,12 +4208,7 @@ ts-jest@^27.1.3: semver "7.x" yargs-parser "20.x" -tslib@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.1.0, tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2: +tslib@^2.1.0, tslib@^2.5.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== @@ -4279,12 +4293,12 @@ w3c-xmlserializer@^2.0.0: dependencies: xml-name-validator "^3.0.0" -w3c-xmlserializer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" - integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== +w3c-xmlserializer@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz#f925ba26855158594d907313cedd1476c5967f6c" + integrity sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA== dependencies: - xml-name-validator "^4.0.0" + xml-name-validator "^5.0.0" walker@^1.0.7: version "1.0.8" @@ -4315,10 +4329,10 @@ whatwg-encoding@^1.0.5: dependencies: iconv-lite "0.4.24" -whatwg-encoding@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" - integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== dependencies: iconv-lite "0.6.3" @@ -4327,17 +4341,17 @@ whatwg-mimetype@^2.3.0: resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== -whatwg-mimetype@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" - integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== -whatwg-url@^12.0.0, whatwg-url@^12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" - integrity sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== +whatwg-url@^14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-14.0.0.tgz#00baaa7fd198744910c4b1ef68378f2200e4ceb6" + integrity sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw== dependencies: - tr46 "^4.1.1" + tr46 "^5.0.0" webidl-conversions "^7.0.0" whatwg-url@^8.0.0, whatwg-url@^8.5.0: @@ -4385,25 +4399,20 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -ws@^7.4.6: - version "7.5.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" - integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== - -ws@^8.13.0: - version "8.16.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4" - integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ== +ws@^7.4.6, ws@^8.17.0, ws@^8.18.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== +xml-name-validator@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-5.0.0.tgz#82be9b957f7afdacf961e5980f1bf227c0bf7673" + integrity sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg== xmlchars@^2.2.0: version "2.2.0" diff --git a/services/carts-bigmac-streams/handlers/configureConnectors.js b/services/carts-bigmac-streams/handlers/configureConnectors.js deleted file mode 100644 index 538e6faef..000000000 --- a/services/carts-bigmac-streams/handlers/configureConnectors.js +++ /dev/null @@ -1,102 +0,0 @@ -/* eslint-disable no-console */ -var { - ECSClient, - ListTasksCommand, - DescribeTasksCommand, -} = require("@aws-sdk/client-ecs"); -var lodash = require("lodash"); -var http = require("http"); - -const connectors = [ - { - name: `${process.env.connectorPrefix}sink.lambda.enrollmentcounts`, - config: { - "tasks.max": "1", - "connector.class": - "com.nordstrom.kafka.connect.lambda.LambdaSinkConnector", - topics: process.env.sinkTopics, - "key.converter": "org.apache.kafka.connect.storage.StringConverter", - "value.converter": "org.apache.kafka.connect.storage.StringConverter", - "aws.region": process.env.sinkFunctionRegion, - "aws.lambda.function.arn": process.env.sinkFunctionArn, - "aws.lambda.batch.enabled": "false", - "aws.credentials.provider.class": - " com.amazonaws.auth.DefaultAWSCredentialsProviderChain", - }, - }, -]; - -// eslint-disable-next-line no-unused-vars -function myHandler(event, context, callback) { - console.log("Received event:", JSON.stringify(event, null, 2)); - var ecsClient = new ECSClient(); - var listParams = { - cluster: process.env.cluster, - }; - ecsClient - .send(new ListTasksCommand(listParams)) - .then(function (taskArnsResult) { - var describeParams = { - cluster: process.env.cluster, - tasks: taskArnsResult.taskArns, - }; - return ecsClient.send(new DescribeTasksCommand(describeParams)); - }) - .then(function (describeResult) { - describeResult.tasks.forEach((task) => { - var ip = lodash.filter( - task.attachments[0].details, - (x) => x.name === "privateIPv4Address" - )[0].value; - console.log(`Configuring connector on worker: ${ip}`); - connectors.forEach(function (config) { - //console.log(`Configuring connector with config: ${JSON.stringify(config, null, 2)}`); - putConnectorConfig(ip, config, function (res) { - console.log(res); - }); - }); - }); - }) - .catch(function (err) { - console.log(err, err.stack); - }); -} - -function putConnectorConfig(workerIp, config, callback) { - var retry = function (e) { - console.log("Got error: " + e); - setTimeout(function () { - putConnectorConfig(workerIp, config, callback); - }, 5000); - }; - - var options = { - hostname: workerIp, - port: 8083, - path: `/connectors/${config.name}/config`, - method: "PUT", - headers: { - "Content-Type": "application/json", - }, - }; - - const req = http - .request(options, (res) => { - console.log(`statusCode: ${res.statusCode}`); - if (res.statusCode == "404") { - retry.call(`${res.statusCode}`); - } - res.on("data", (d) => { - console.log(d.toString("utf-8")); - }); - }) - .on("error", retry); - // eslint-disable-next-line no-unused-vars - req.setTimeout(5000, function (thing) { - this.socket.destroy(); - }); - req.write(JSON.stringify(config.config)); - req.end(); -} - -exports.handler = myHandler; diff --git a/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js b/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js index 77bb7ad93..d5bb4500b 100644 --- a/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js +++ b/services/carts-bigmac-streams/handlers/sinkEnrollmentCounts.js @@ -14,47 +14,55 @@ const { * @param {*} _callback */ async function myHandler(event, _context, _callback) { - const json = JSON.parse(event.value); + const sedsTopicKey = `${process.env.sedsTopic}-0`; + if (!event?.records?.[sedsTopicKey]) { + return; + } + const records = event.records[sedsTopicKey]; const currentYear = getReportingYear(); const dynamoClient = buildClient(); - if ( - json.NewImage.enrollmentCounts && - json.NewImage.enrollmentCounts.year >= currentYear - 1 && - json.NewImage.quarter === 4 - ) { - try { - // eslint-disable-next-line no-console - console.log("Sink message received", json); - const indexToUpdate = - json.NewImage.enrollmentCounts.year === currentYear ? 2 : 1; - let typeOfEnrollment = "Medicaid Expansion CHIP"; - let typeKey = "medicaid_exp_chip"; - if (json.NewImage.enrollmentCounts.type === "separate") { - typeOfEnrollment = "Separate CHIP"; - typeKey = "separate_chip"; - } - const stateId = json.NewImage.state_id; - const createdTime = new Date().toLocaleString(); + for (const record of records) { + const decodedValue = atob(record.value); + const value = JSON.parse(decodedValue); + if ( + value.NewImage.enrollmentCounts && + value.NewImage.enrollmentCounts.year >= currentYear - 1 && + value.NewImage.quarter === 4 + ) { + try { + // eslint-disable-next-line no-console + console.log("Sink message received", value); + const indexToUpdate = + value.NewImage.enrollmentCounts.year === currentYear ? 2 : 1; + let typeOfEnrollment = "Medicaid Expansion CHIP"; + let typeKey = "medicaid_exp_chip"; + if (value.NewImage.enrollmentCounts.type === "separate") { + typeOfEnrollment = "Separate CHIP"; + typeKey = "separate_chip"; + } + const stateId = value.NewImage.state_id; + const createdTime = new Date().toLocaleString(); - const pk = `${stateId}-${currentYear}`; - const entryKey = `${typeKey}-${indexToUpdate}`; + const pk = `${stateId}-${currentYear}`; + const entryKey = `${typeKey}-${indexToUpdate}`; - const enrollmentEntry = { - filterId: `${currentYear}-02`, - typeOfEnrollment, - indexToUpdate, - stateId, - yearToModify: currentYear, - enrollmentCount: json.NewImage.enrollmentCounts.count, - createdTime, - lastSynced: json.NewImage.lastSynced, - }; + const enrollmentEntry = { + filterId: `${currentYear}-02`, + typeOfEnrollment, + indexToUpdate, + stateId, + yearToModify: currentYear, + enrollmentCount: value.NewImage.enrollmentCounts.count, + createdTime, + lastSynced: value.NewImage.lastSynced ?? "", + }; - await updateEnrollment(pk, entryKey, enrollmentEntry, dynamoClient); - } catch (error) { - // eslint-disable-next-line no-console - console.log(error); + await updateEnrollment(pk, entryKey, enrollmentEntry, dynamoClient); + } catch (error) { + // eslint-disable-next-line no-console + console.log(error); + } } } } diff --git a/services/carts-bigmac-streams/package.json b/services/carts-bigmac-streams/package.json index 4e3566a8e..c31df29f2 100644 --- a/services/carts-bigmac-streams/package.json +++ b/services/carts-bigmac-streams/package.json @@ -3,13 +3,9 @@ "version": "1.0.0", "description": "", "dependencies": { - "@aws-sdk/client-dynamodb": "^3.596.0", - "@aws-sdk/client-ecs": "^3.596.0", - "@aws-sdk/lib-dynamodb": "^3.596.0", - "@aws-sdk/util-dynamodb": "^3.596.0", - "kafkajs": "^1.15.0", - "lodash": "^4.17.21", - "uuid": "^8.3.2" - }, - "devDependencies": {} + "@aws-sdk/client-dynamodb": "^3.621.0", + "@aws-sdk/lib-dynamodb": "^3.621.0", + "@aws-sdk/util-dynamodb": "^3.621.0", + "kafkajs": "^1.15.0" + } } diff --git a/services/carts-bigmac-streams/serverless.yml b/services/carts-bigmac-streams/serverless.yml index 2738c7ed2..2fb4525ea 100644 --- a/services/carts-bigmac-streams/serverless.yml +++ b/services/carts-bigmac-streams/serverless.yml @@ -8,7 +8,6 @@ package: plugins: - serverless-bundle - serverless-dotenv-plugin - - serverless-plugin-scripts - serverless-online - serverless-iam-helper - serverless-s3-bucket-helper @@ -19,28 +18,26 @@ custom: stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} serverlessTerminationProtection: - stages: # This is a list of common names for important envs that should not be destroyed. You can remove the stage names your project doesn't use; this list is meant to be inclusive. - - master + stages: + - main - val - production - - develop - - main - - impl - - prod - kafkaConnectImage: ${ssm:/configuration/${self:custom.stage}/kafka_connect_image, ssm:/configuration/default/kafka_connect_image,"confluentinc/cp-kafka-connect:6.2.0"} + bootstrapBroker1: ${ssm:/configuration/default/bigmac/bootstrapBroker1} + bootstrapBroker2: ${ssm:/configuration/default/bigmac/bootstrapBroker2} + bootstrapBroker3: ${ssm:/configuration/default/bigmac/bootstrapBroker3} bootstrapBrokerStringTls: ${ssm:/configuration/${self:custom.stage}/bigmac/bootstrapBrokerStringTls, ssm:/configuration/default/bigmac/bootstrapBrokerStringTls} vpcId: ${ssm:/configuration/${self:custom.stage}/vpc/id, ssm:/configuration/default/vpc/id} + privateSubnetA: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/a/id, ssm:/configuration/default/vpc/subnets/private/a/id} + privateSubnetB: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/b/id, ssm:/configuration/default/vpc/subnets/private/b/id} + privateSubnetC: ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/c/id, ssm:/configuration/default/vpc/subnets/private/c/id} privateSubnets: - - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/a/id, ssm:/configuration/default/vpc/subnets/private/a/id} - - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/b/id, ssm:/configuration/default/vpc/subnets/private/b/id} - - ${ssm:/configuration/${self:custom.stage}/vpc/subnets/private/c/id, ssm:/configuration/default/vpc/subnets/private/c/id} + - ${self:custom.privateSubnetA} + - ${self:custom.privateSubnetB} + - ${self:custom.privateSubnetC} stageEnrollmentCountsTableName: ${env:stageEnrollmentCountsTableName, cf:database-${self:custom.stage}.StageEnrollmentCountsTableName} stateStatusTableStreamArn: ${env:stateStatusTableStreamArn, cf:database-${self:custom.stage}.StateStatusTableStreamArn} sectionTableStreamArn: ${env:sectionTableStreamArn, cf:database-${self:custom.stage}.SectionTableStreamArn} - scripts: - hooks: - deploy:finalize: | - aws lambda invoke --region ${self:provider.region} --function-name ${self:service}-${self:custom.stage}-configureConnectors --invocation-type RequestResponse /dev/null + sedsTopic: "aws.mdct.seds.cdc.state-forms.v0" provider: name: aws @@ -54,15 +51,22 @@ provider: path: ${ssm:/configuration/${self:custom.stage}/iam/path, ssm:/configuration/default/iam/path, "/"} permissionsBoundary: ${ssm:/configuration/${self:custom.stage}/iam/permissionsBoundaryPolicy, ssm:/configuration/default/iam/permissionsBoundaryPolicy, ""} statements: + - Effect: "Allow" + Action: + - logs:CreateLogGroup + - logs:CreateLogStream + - logs:PutLogEvents + Resource: "arn:aws:logs:*:*:*" + - Effect: "Allow" + Action: + - "ec2:DescribeNetworkInterfaces" + - "ec2:DescribeSecurityGroups" + - "ec2:DescribeVpcs" + Resource: "*" - Effect: "Allow" Action: - dynamodb:DescribeTable - - dynamodb:Query - - dynamodb:Scan - - dynamodb:GetItem - - dynamodb:PutItem - dynamodb:UpdateItem - - dynamodb:DeleteItem Resource: "*" - Effect: "Allow" Action: @@ -76,30 +80,11 @@ provider: - ${self:custom.sectionTableStreamArn} functions: - configureConnectors: - handler: handlers/configureConnectors.handler - role: LambdaConfigureConnectorsRole - environment: - cluster: !Ref KafkaConnectCluster - connectorPrefix: carts-${self:custom.stage}- - sinkTopics: aws.mdct.seds.cdc.state-forms.v0 - sinkFunctionArn: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn - sinkFunctionRegion: ${self:custom.region} - BOOTSTRAP_BROKER_STRING_TLS: ${self:custom.bootstrapBrokerStringTls} - STAGE: ${self:custom.stage} - maximumRetryAttempts: 2 - timeout: 120 - vpc: - securityGroupIds: - - Ref: LambdaConfigureConnectorsSecurityGroup - subnetIds: ${self:custom.privateSubnets} sinkEnrollmentCounts: handler: handlers/sinkEnrollmentCounts.handler - role: SinkEnrollmentCountsRole environment: - BOOTSTRAP_BROKER_STRING_TLS: ${self:custom.bootstrapBrokerStringTls} - STAGE: ${self:custom.stage} stageEnrollmentCountsTableName: ${self:custom.stageEnrollmentCountsTableName} + sedsTopic: ${self:custom.sedsTopic} maximumRetryAttempts: 2 timeout: 120 vpc: @@ -139,251 +124,40 @@ resources: - "" - ${self:provider.iam.role.permissionsBoundary} Resources: - KafkaConnectWorkerLogGroup: - Type: "AWS::Logs::LogGroup" - Properties: - LogGroupName: /aws/fargate/${self:service}-${self:custom.stage}-kafka-connect - KafkaConnectWorkerSecurityGroup: + LambdaConfigureConnectorsSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: - GroupDescription: Security Group for the Fargate Connect Workers. + GroupDescription: Security Group for configuring the connector. VpcId: ${self:custom.vpcId} - KafkaConnectWorkerSecurityGroupIngressLambda: + LambdaSecurityGroupIngressCluster: Type: AWS::EC2::SecurityGroupIngress Properties: - GroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" + GroupId: !Sub "${LambdaConfigureConnectorsSecurityGroup}" IpProtocol: tcp FromPort: 8083 ToPort: 8083 SourceSecurityGroupId: !Sub "${LambdaConfigureConnectorsSecurityGroup}" - KafkaConnectWorkerSecurityGroupIngressCluster: - Type: AWS::EC2::SecurityGroupIngress - Properties: - GroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" - IpProtocol: tcp - FromPort: 8083 - ToPort: 8083 - SourceSecurityGroupId: !Sub "${KafkaConnectWorkerSecurityGroup}" - KafkaConnectWorkerRole: - Type: "AWS::IAM::Role" - Properties: - AssumeRolePolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Principal: - Service: - - "ecs.amazonaws.com" - - "ecs-tasks.amazonaws.com" - Action: "sts:AssumeRole" - Path: ${self:provider.iam.role.path} - PermissionsBoundary: - Fn::If: - - CreatePermissionsBoundary - - ${self:provider.iam.role.permissionsBoundary} - - !Ref AWS::NoValue - ManagedPolicyArns: - - arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy - Policies: - - PolicyName: "LambdaRolePolicy" - PolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Action: - - "lambda:*" - Resource: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn - KafkaConnectWorkerTaskDefinition: - Type: "AWS::ECS::TaskDefinition" - Properties: - ContainerDefinitions: - - Name: ${self:service}-${self:custom.stage}-worker - Image: ${self:custom.kafkaConnectImage} - Memory: 4096 - Cpu: 2048 - Command: - - bash - - "-c" - - | - export CONNECT_REST_HOST_NAME=`curl $ECS_CONTAINER_METADATA_URI_V4 | sed -e 's/.*IPv4Addresses":\["\(.*\)"\],"AttachmentIndex.*/\1/'` && - export CONNECT_REST_ADVERTISED_HOST_NAME=$CONNECT_REST_HOST_NAME && - curl -k -SL -o /etc/kafka-connect/jars/postgresql-42.2.18.jar "https://jdbc.postgresql.org/download/postgresql-42.2.18.jar" && - chmod +x /etc/kafka-connect/jars/postgresql-42.2.18.jar && - curl -k -SL -o /etc/kafka-connect/jars/kafka-connect-lambda-1.2.2.jar "https://github.com/Nordstrom/kafka-connect-lambda/releases/download/v1.2.2/kafka-connect-lambda-1.2.2.jar" && - chmod +x /etc/kafka-connect/jaras/kafka-connect-lambda-1.2.2.jar - curl -k -SL -o /etc/kafka-connect/jars/kafka-connect-jdbc-10.2.0.jar "https://packages.confluent.io/maven/io/confluent/kafka-connect-jdbc/10.2.0/kafka-connect-jdbc-10.2.0.jar" && - chmod +x /etc/kafka-connect/jars/kafka-connect-jdbc-10.2.0.jar && - /etc/confluent/docker/run - Environment: - - Name: CONNECT_BOOTSTRAP_SERVERS - Value: >- - ${self:custom.bootstrapBrokerStringTls} - - Name: CONNECT_GROUP_ID - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage} - - Name: CONNECT_CONFIG_STORAGE_TOPIC - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.config - - Name: CONNECT_OFFSET_STORAGE_TOPIC - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.offsets - - Name: CONNECT_STATUS_STORAGE_TOPIC - Value: mgmt.connect.cms-carts-seds.${self:service}-${self:custom.stage}.status - - Name: CONNECT_OFFSET_STORAGE_PARTITIONS - Value: 5 - - Name: CONNECT_STATUS_STORAGE_PARTITIONS - Value: 1 - - Name: CONNECT_KEY_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_VALUE_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_INTERNAL_KEY_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_INTERNAL_VALUE_CONVERTER - Value: org.apache.kafka.connect.json.JsonConverter - - Name: CONNECT_PLUGIN_PATH - Value: /usr/share/java,/etc/kafka-connect/jars - - Name: CONNECT_SECURITY_PROTOCOL - Value: SSL - # Producer/Consumer configs below - # Thank you to https://github.com/confluentinc/kafka-connect-jdbc/issues/161 - - Name: CONNECT_PRODUCER_BOOTSTRAP_SERVERS - Value: >- - ${self:custom.bootstrapBrokerStringTls} - - Name: CONNECT_PRODUCER_SECURITY_PROTOCOL - Value: SSL - - Name: CONNECT_CONSUMER_BOOTSTRAP_SERVERS - Value: >- - ${self:custom.bootstrapBrokerStringTls} - - Name: CONNECT_CONSUMER_SECURITY_PROTOCOL - Value: SSL - LogConfiguration: - LogDriver: awslogs - Options: - awslogs-region: !Sub "${AWS::Region}" - awslogs-group: !Sub "${KafkaConnectWorkerLogGroup}" - awslogs-stream-prefix: fargate - Family: ${self:service}-${self:custom.stage}-kafka-connect-worker - NetworkMode: awsvpc - ExecutionRoleArn: !GetAtt KafkaConnectWorkerRole.Arn - TaskRoleArn: !GetAtt KafkaConnectWorkerRole.Arn - RequiresCompatibilities: - - FARGATE - Memory: 4GB - Cpu: 2048 - KafkaConnectCluster: - Type: "AWS::ECS::Cluster" - KafkaConnectService: - Type: "AWS::ECS::Service" + SinkEnrollmentCountsEventSourceMappingKafka: + Type: AWS::Lambda::EventSourceMapping Properties: - Cluster: !Sub "${KafkaConnectCluster}" - DeploymentConfiguration: - MaximumPercent: 100 - MinimumHealthyPercent: 0 - LaunchType: FARGATE - ServiceName: kafka-connect - DesiredCount: 1 - TaskDefinition: !Sub "${KafkaConnectWorkerTaskDefinition}" - NetworkConfiguration: - AwsvpcConfiguration: - AssignPublicIp: DISABLED - SecurityGroups: - - !Sub "${KafkaConnectWorkerSecurityGroup}" - Subnets: ${self:custom.privateSubnets} - LambdaConfigureConnectorsSecurityGroup: - Type: AWS::EC2::SecurityGroup - Properties: - GroupDescription: Security Group for configuring the connector. - VpcId: ${self:custom.vpcId} - SinkEnrollmentCountsRole: - Type: "AWS::IAM::Role" - Properties: - AssumeRolePolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Principal: - Service: "lambda.amazonaws.com" - Action: "sts:AssumeRole" - Path: ${self:provider.iam.role.path} - PermissionsBoundary: - Fn::If: - - CreatePermissionsBoundary - - ${self:provider.iam.role.permissionsBoundary} - - !Ref AWS::NoValue - ManagedPolicyArns: - - !Sub arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole - Policies: - - PolicyName: "LambdaRolePolicy" - PolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Action: - - logs:CreateLogGroup - - logs:CreateLogStream - - logs:PutLogEvents - Resource: "arn:aws:logs:*:*:*" - - Effect: "Allow" - Action: - - "ec2:CreateNetworkInterface" - - "ec2:DescribeNetworkInterfaces" - - "ec2:DetachNetworkInterface" - - "ec2:DeleteNetworkInterface" - - "ec2:DescribeSecurityGroups" - Resource: "*" - - Effect: "Allow" - Action: - - dynamodb:DescribeTable - - dynamodb:Query - - dynamodb:Scan - - dynamodb:GetItem - - dynamodb:PutItem - - dynamodb:UpdateItem - - dynamodb:DeleteItem - Resource: "*" - LambdaConfigureConnectorsRole: - Type: "AWS::IAM::Role" - Properties: - AssumeRolePolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Principal: - Service: "lambda.amazonaws.com" - Action: "sts:AssumeRole" - Path: ${self:provider.iam.role.path} - PermissionsBoundary: - Fn::If: - - CreatePermissionsBoundary - - ${self:provider.iam.role.permissionsBoundary} - - !Ref AWS::NoValue - Policies: - - PolicyName: "LambdaRolePolicy" - PolicyDocument: - Version: "2012-10-17" - Statement: - - Effect: "Allow" - Action: - - logs:CreateLogGroup - - logs:CreateLogStream - - logs:PutLogEvents - Resource: "arn:aws:logs:*:*:*" - - Effect: "Allow" - Action: - - ec2:CreateNetworkInterface - - ec2:DeleteNetworkInterface - - ec2:DetachNetworkInterface - - ec2:DescribeNetworkInterfaces - - ec2:DescribeSecurityGroups - - ec2:DescribeSubnets - - ec2:DescribeVpcs - Resource: "*" - - Effect: "Allow" - Action: - - ecs:ListTasks - - ecs:DescribeTasks - Resource: "*" - Outputs: - KafkaConnectWorkerSecurityGroupId: - Description: | - The ID of the security group attached to the Kafka Connect cluster tasks. - This can be used by other resources to attach additional ingress rules. - Value: !Ref KafkaConnectWorkerSecurityGroup + FunctionName: !GetAtt SinkEnrollmentCountsLambdaFunction.Arn + SelfManagedEventSource: + Endpoints: + KafkaBootstrapServers: + - ${self:custom.bootstrapBroker1} + - ${self:custom.bootstrapBroker2} + - ${self:custom.bootstrapBroker3} + SelfManagedKafkaEventSourceConfig: + ConsumerGroupId: ${self:custom.project}-${self:custom.stage} + Topics: + - ${self:custom.sedsTopic} + SourceAccessConfigurations: + - Type: "VPC_SUBNET" + URI: subnet:${self:custom.privateSubnetA} + - Type: "VPC_SUBNET" + URI: subnet:${self:custom.privateSubnetB} + - Type: "VPC_SUBNET" + URI: subnet:${self:custom.privateSubnetC} + - Type: "VPC_SECURITY_GROUP" + URI: !Sub security_group:${LambdaConfigureConnectorsSecurityGroup} + MaximumBatchingWindowInSeconds: 30 diff --git a/services/carts-bigmac-streams/yarn.lock b/services/carts-bigmac-streams/yarn.lock index 691fd69b8..9d243ee50 100644 --- a/services/carts-bigmac-streams/yarn.lock +++ b/services/carts-bigmac-streams/yarn.lock @@ -2,392 +2,336 @@ # yarn lockfile v1 -"@aws-crypto/ie11-detection@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" - integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== - dependencies: - tslib "^1.11.1" - -"@aws-crypto/sha256-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" - integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== - dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/sha256-js" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" - integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/supports-web-crypto@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" - integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/util@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" - integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== dependencies: "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/client-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" - integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-endpoint-discovery" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" + integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-endpoint-discovery" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-ecs@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecs/-/client-ecs-3.596.0.tgz#9207f5a5b9446309d10c97e32f67e0f6f55844a4" - integrity sha512-iSEjqyViOionESw5IWSWs+WnWq0lumOTlnduNrYZ6yjid2EFj0r4epLRQ3/mpgwu4G1EB1PFVdmnivDroT9QRw== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-body-length-browser" "^3.0.0" - "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== - dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== - dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== - dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== + dependencies: + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== + dependencies: + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -398,97 +342,97 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" - integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== +"@aws-sdk/lib-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" + integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== dependencies: - "@aws-sdk/util-dynamodb" "3.596.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@aws-sdk/util-dynamodb" "3.621.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" - integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== +"@aws-sdk/middleware-endpoint-discovery@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" + integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -499,21 +443,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.596.0", "@aws-sdk/util-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" - integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== +"@aws-sdk/util-dynamodb@3.621.0", "@aws-sdk/util-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" + integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -523,258 +467,259 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@smithy/abort-controller@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" - integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" - integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/core@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.0.tgz#f1b0837b7afa5507a9693c1e93da6ca9808022c1" - integrity sha512-ygLZSSKgt9bR8HAxR9mK+U5obvAJBr6zlQuhN5soYWx/amjDoQN4dTkydTypgKe6rIbUjTILyLU+W5XFwXr4kg== +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" - integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" - integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" - integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" - integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/is-array-buffer@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" - integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== +"@smithy/is-array-buffer@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" + integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.0": +"@smithy/is-array-buffer@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" - integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" + integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" - integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/middleware-serde" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" - integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== - dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/service-error-classification" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" - integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" - integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" - integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" - integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" - integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" - integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" - integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" - integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" - integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" -"@smithy/shared-ini-file-loader@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" - integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" - integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" - integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -784,20 +729,20 @@ dependencies: tslib "^2.6.2" -"@smithy/types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" - integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" - integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -823,6 +768,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-buffer-from@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" + integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + dependencies: + "@smithy/is-array-buffer" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -838,37 +791,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" - integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" - integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== dependencies: - "@smithy/config-resolver" "^3.0.1" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" - integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -878,31 +831,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" - integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" - integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/service-error-classification" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" - integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -916,6 +869,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-utf8@^2.0.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" + integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + dependencies: + "@smithy/util-buffer-from" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -924,13 +885,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.0.tgz#26bcc5bbbf1de9360a7aeb3b3919926fc6afa2bc" - integrity sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw== +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" tslib "^2.6.2" bowser@^2.11.0: @@ -938,10 +899,10 @@ bowser@^2.11.0: resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== dependencies: strnum "^1.0.5" @@ -950,11 +911,6 @@ kafkajs@^1.15.0: resolved "https://registry.yarnpkg.com/kafkajs/-/kafkajs-1.15.0.tgz#a5ada0d933edca2149177393562be6fb0875ec3a" integrity sha512-yjPyEnQCkPxAuQLIJnY5dI+xnmmgXmhuOQ1GVxClG5KTOV/rJcW1qA3UfvyEJKTp/RTSqQnUR3HJsKFvHyTpNg== -lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - mnemonist@0.38.3: version "0.38.3" resolved "https://registry.yarnpkg.com/mnemonist/-/mnemonist-0.38.3.tgz#35ec79c1c1f4357cfda2fe264659c2775ccd7d9d" @@ -972,21 +928,11 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -tslib@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.3.1, tslib@^2.6.2: +tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - uuid@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index ec098c54d..c0a87b848 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -75,42 +75,32 @@ "id": "2023-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-07", "hint": "Include city, state, and zip code.", "type": "mailing_address", "label": "Full mailing address:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -159,14 +149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -174,9 +158,7 @@ "id": "2023-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -200,14 +182,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -221,14 +197,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -265,9 +235,7 @@ "id": "2023-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -307,14 +275,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -352,9 +314,7 @@ "id": "2023-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -375,9 +335,7 @@ "id": "2023-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-01-05", @@ -387,18 +345,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -406,9 +358,7 @@ "id": "2023-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -431,14 +381,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -446,9 +390,7 @@ "id": "2023-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -472,14 +414,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -493,14 +429,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -537,9 +467,7 @@ "id": "2023-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -579,14 +507,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -624,9 +546,7 @@ "id": "2023-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -647,9 +567,7 @@ "id": "2023-01-a-02-04", "type": "text_multiline", "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-02-05", @@ -659,18 +577,12 @@ "answer": { "entry": null, "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management (PCCM)", "value": "pccm" }, - { - "label": "Fee-for-Service", - "value": "ffs" - } + { "label": "Fee-for-Service", "value": "ffs" } ] } }, @@ -678,9 +590,7 @@ "id": "2023-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -701,14 +611,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -722,14 +626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -744,14 +642,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -766,14 +658,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -787,14 +673,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -809,19 +689,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-03-07", @@ -831,19 +703,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-03-08", @@ -853,19 +717,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-03-09", @@ -875,14 +731,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -896,14 +746,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -918,14 +762,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -940,19 +778,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-03-13", @@ -961,14 +791,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -982,14 +806,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1003,14 +821,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1024,19 +836,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1045,9 +849,7 @@ "id": "2023-01-a-03-17", "type": "text_multiline", "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-03-18", @@ -1056,14 +858,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1122,14 +918,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1143,14 +933,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1165,14 +949,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1187,14 +965,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1208,14 +980,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1230,19 +996,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2023-01-a-04-07", @@ -1252,19 +1010,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2023-01-a-04-08", @@ -1274,19 +1024,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2023-01-a-04-09", @@ -1296,19 +1038,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2023-01-a-04-10", @@ -1317,14 +1051,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1338,14 +1066,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1360,14 +1082,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1382,19 +1098,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2023-01-a-04-14", @@ -1403,14 +1111,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1425,14 +1127,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1447,14 +1143,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1468,14 +1158,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1489,14 +1173,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -1510,19 +1188,11 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -1531,9 +1201,7 @@ "id": "2023-01-a-04-20", "type": "text_multiline", "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-01-a-04-21", @@ -1542,14 +1210,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -1633,9 +1295,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1658,9 +1318,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2023, @@ -1684,18 +1342,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2022" }, { "contents": "Number of children enrolled in FFY 2023" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table" @@ -1704,9 +1358,7 @@ "id": "2023-02-a-01-01", "type": "text_multiline", "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1752,9 +1404,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -1781,9 +1431,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -1810,9 +1458,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -1839,9 +1485,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -1868,9 +1512,7 @@ } ], [ - { - "contents": "2022" - }, + { "contents": "2022" }, { "lookupAcs": { "ffy": "2022", @@ -1898,21 +1540,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -1956,9 +1590,7 @@ "id": "2023-02-a-02-01", "type": "text_multiline", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", "conditional_display": { @@ -1994,14 +1626,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2009,9 +1635,7 @@ "id": "2023-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2035,14 +1659,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2053,9 +1671,7 @@ "id": "2023-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-b", @@ -2070,49 +1686,37 @@ "id": "2023-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2135,17 +1739,13 @@ "id": "2023-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2185,14 +1785,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2200,9 +1794,7 @@ "id": "2023-03-a-01-01-a", "type": "text_multiline", "label": "What are you doing differently?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2227,14 +1819,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2242,9 +1828,7 @@ "id": "2023-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2266,25 +1850,19 @@ "hint": "For example: TV, school outreach, or word of mouth.", "type": "text_multiline", "label": "What methods have been most effective in reaching low-income, uninsured children?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2307,18 +1885,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2326,9 +1895,7 @@ "id": "2023-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2352,18 +1919,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2371,9 +1929,7 @@ "id": "2023-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2394,9 +1950,7 @@ "id": "2023-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -2408,18 +1962,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2430,9 +1975,7 @@ "id": "2023-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2453,9 +1996,7 @@ "id": "2023-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2474,9 +2015,7 @@ "id": "2023-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2495,9 +2034,7 @@ "id": "2023-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -2527,17 +2064,13 @@ "id": "2023-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -2561,18 +2094,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -2583,17 +2107,13 @@ "id": "2023-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2619,14 +2139,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -2637,14 +2151,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -2655,17 +2163,13 @@ "id": "2023-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-03-b", "type": "text", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -2688,33 +2192,25 @@ "id": "2023-03-c-01-04", "type": "text_multiline", "label": "What else have you done to simplify the eligibility renewal process for families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-05", "type": "text_multiline", "label": "Which retention strategies have you found to be most effective?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-06", "type": "text_multiline", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -2728,54 +2224,47 @@ "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2023? This number should be equal to the total of reported numbers for questions 2-4 below.", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "id": "2023-03-c-02-03-a", "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-02-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This table is auto-populated with the data you entered above.", @@ -2785,9 +2274,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-01')].answer.entry" @@ -2802,9 +2289,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-02')].answer.entry" @@ -2819,9 +2304,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-03')].answer.entry" @@ -2836,9 +2319,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2023-03-c-02-04')].answer.entry" @@ -2854,15 +2335,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -2879,34 +2354,29 @@ "id": "2023-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -2927,36 +2397,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3018,15 +2484,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3108,15 +2568,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3133,34 +2587,29 @@ "id": "2023-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -3181,36 +2630,32 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } - ] + ], + "mask": "lessThanEleven" }, { "id": "2023-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting these data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -3272,15 +2717,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3362,15 +2801,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -3415,14 +2848,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -3439,9 +2866,7 @@ "id": "2023-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3453,7 +2878,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3477,33 +2903,29 @@ "id": "2023-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3521,9 +2943,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-03" - }, + "fieldset_info": { "id": "2023-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -3540,9 +2960,7 @@ "id": "2023-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3554,7 +2972,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3578,33 +2997,29 @@ "id": "2023-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3622,9 +3037,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-04" - }, + "fieldset_info": { "id": "2023-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -3635,9 +3048,7 @@ "id": "2023-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3649,7 +3060,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3673,33 +3085,29 @@ "id": "2023-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3717,9 +3125,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-05" - }, + "fieldset_info": { "id": "2023-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -3730,9 +3136,7 @@ "id": "2023-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3744,7 +3148,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3768,33 +3173,29 @@ "id": "2023-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3812,9 +3213,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-06" - }, + "fieldset_info": { "id": "2023-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -3826,9 +3225,7 @@ "id": "2023-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3840,7 +3237,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3864,33 +3262,29 @@ "id": "2023-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -3908,9 +3302,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-07" - }, + "fieldset_info": { "id": "2023-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -3921,9 +3313,7 @@ "id": "2023-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -3935,7 +3325,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -3959,33 +3350,29 @@ "id": "2023-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4003,18 +3390,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-08" - }, + "fieldset_info": { "id": "2023-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -4031,9 +3414,7 @@ "id": "2023-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4045,7 +3426,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4069,33 +3451,29 @@ "id": "2023-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4113,9 +3491,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-10" - }, + "fieldset_info": { "id": "2023-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -4126,9 +3502,7 @@ "id": "2023-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4140,7 +3514,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4164,33 +3539,29 @@ "id": "2023-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4208,9 +3579,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-11" - }, + "fieldset_info": { "id": "2023-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -4221,9 +3590,7 @@ "id": "2023-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4235,7 +3602,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4259,33 +3627,29 @@ "id": "2023-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4303,9 +3667,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-12" - }, + "fieldset_info": { "id": "2023-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -4317,9 +3679,7 @@ "id": "2023-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4331,7 +3691,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4355,33 +3716,29 @@ "id": "2023-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4399,9 +3756,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-13" - }, + "fieldset_info": { "id": "2023-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -4412,9 +3767,7 @@ "id": "2023-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4426,7 +3779,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4450,33 +3804,29 @@ "id": "2023-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4494,9 +3844,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-14" - }, + "fieldset_info": { "id": "2023-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -4514,9 +3862,7 @@ "id": "2023-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4528,7 +3874,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4552,33 +3899,29 @@ "id": "2023-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4596,9 +3939,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-15" - }, + "fieldset_info": { "id": "2023-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -4609,9 +3950,7 @@ "id": "2023-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4623,7 +3962,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4647,33 +3987,29 @@ "id": "2023-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4691,9 +4027,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-16" - }, + "fieldset_info": { "id": "2023-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -4704,9 +4038,7 @@ "id": "2023-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4718,7 +4050,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4742,33 +4075,29 @@ "id": "2023-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4786,9 +4115,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-17" - }, + "fieldset_info": { "id": "2023-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -4800,9 +4127,7 @@ "id": "2023-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4814,7 +4139,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4838,33 +4164,29 @@ "id": "2023-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4882,9 +4204,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-18" - }, + "fieldset_info": { "id": "2023-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -4895,10 +4215,7 @@ "id": "2023-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -4910,7 +4227,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -4934,33 +4252,29 @@ "id": "2023-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -4978,18 +4292,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-05-19" - }, + "fieldset_info": { "id": "2023-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -5031,14 +4341,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -5055,9 +4359,7 @@ "id": "2023-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5069,7 +4371,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5093,33 +4396,29 @@ "id": "2023-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5137,9 +4436,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-03" - }, + "fieldset_info": { "id": "2023-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -5156,9 +4453,7 @@ "id": "2023-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5170,7 +4465,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5194,33 +4490,29 @@ "id": "2023-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5238,9 +4530,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-04" - }, + "fieldset_info": { "id": "2023-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -5251,9 +4541,7 @@ "id": "2023-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5265,7 +4553,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5289,33 +4578,29 @@ "id": "2023-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5333,9 +4618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-05" - }, + "fieldset_info": { "id": "2023-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -5346,9 +4629,7 @@ "id": "2023-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5360,7 +4641,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5384,33 +4666,29 @@ "id": "2023-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5428,9 +4706,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-06" - }, + "fieldset_info": { "id": "2023-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -5442,9 +4718,7 @@ "id": "2023-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5456,7 +4730,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5480,33 +4755,29 @@ "id": "2023-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5524,9 +4795,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-07" - }, + "fieldset_info": { "id": "2023-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -5537,9 +4806,7 @@ "id": "2023-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5551,7 +4818,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5575,33 +4843,29 @@ "id": "2023-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5619,18 +4883,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-08" - }, + "fieldset_info": { "id": "2023-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "hint": "This year, please report data about your cohort for this section.", @@ -5647,10 +4907,7 @@ "id": "2023-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5662,7 +4919,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5686,33 +4944,29 @@ "id": "2023-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5730,9 +4984,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-10" - }, + "fieldset_info": { "id": "2023-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -5743,10 +4995,7 @@ "id": "2023-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5758,7 +5007,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5782,33 +5032,29 @@ "id": "2023-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5826,9 +5072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-11" - }, + "fieldset_info": { "id": "2023-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -5839,10 +5083,7 @@ "id": "2023-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5854,7 +5095,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5878,33 +5120,29 @@ "id": "2023-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -5922,9 +5160,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-12" - }, + "fieldset_info": { "id": "2023-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -5936,10 +5172,7 @@ "id": "2023-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -5951,7 +5184,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -5975,33 +5209,29 @@ "id": "2023-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6019,9 +5249,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-13" - }, + "fieldset_info": { "id": "2023-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -6032,10 +5260,7 @@ "id": "2023-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6047,7 +5272,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6071,33 +5297,29 @@ "id": "2023-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6115,9 +5337,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-14" - }, + "fieldset_info": { "id": "2023-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -6135,10 +5355,7 @@ "id": "2023-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6150,7 +5367,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6174,33 +5392,29 @@ "id": "2023-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6218,9 +5432,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-15" - }, + "fieldset_info": { "id": "2023-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -6231,10 +5443,7 @@ "id": "2023-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6246,7 +5455,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6270,33 +5480,29 @@ "id": "2023-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6314,9 +5520,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-16" - }, + "fieldset_info": { "id": "2023-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -6327,10 +5531,7 @@ "id": "2023-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6342,7 +5543,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6366,33 +5568,29 @@ "id": "2023-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6410,9 +5608,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-17" - }, + "fieldset_info": { "id": "2023-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -6424,10 +5620,7 @@ "id": "2023-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6439,7 +5632,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6463,33 +5657,29 @@ "id": "2023-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6507,9 +5697,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-18" - }, + "fieldset_info": { "id": "2023-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -6520,10 +5708,7 @@ "id": "2023-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6535,7 +5720,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -6559,33 +5745,29 @@ "id": "2023-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -6603,18 +5785,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-c-06-19" - }, + "fieldset_info": { "id": "2023-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2023-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -6637,14 +5815,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6666,18 +5838,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -6685,9 +5851,7 @@ "id": "2023-03-d-01-02-a", "type": "text_multiline", "label": "What information or tools do you provide families with so they can track cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6717,9 +5881,7 @@ "id": "2023-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6750,17 +5912,13 @@ "id": "2023-03-d-01-03", "type": "text_multiline", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-05", @@ -6769,14 +5927,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6784,9 +5936,7 @@ "id": "2023-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6810,14 +5960,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -6825,9 +5969,7 @@ "id": "2023-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6848,9 +5990,7 @@ "id": "2023-03-d-01-07", "type": "text_multiline", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -6872,17 +6012,13 @@ "id": "2023-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -6925,14 +6061,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -6972,14 +6102,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -6988,9 +6112,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-04", @@ -7000,14 +6122,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7019,18 +6135,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -7042,14 +6149,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7057,9 +6158,7 @@ "id": "2023-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7080,9 +6179,7 @@ "id": "2023-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -7091,25 +6188,19 @@ "id": "2023-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-09", "type": "text", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-10", "type": "text", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7142,15 +6233,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -7210,41 +6295,31 @@ "id": "2023-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7281,14 +6356,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7299,14 +6368,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7317,14 +6380,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7332,9 +6389,7 @@ "id": "2023-03-f-01-04", "type": "text_multiline", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-05", @@ -7343,18 +6398,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -7362,9 +6408,7 @@ "id": "2023-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the managed care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7385,17 +6429,15 @@ "id": "2023-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7404,17 +6446,13 @@ "id": "2023-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7425,17 +6463,13 @@ "id": "2023-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-11", "type": "integer", "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -7446,17 +6480,15 @@ "id": "2023-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -7467,10 +6499,7 @@ "answer": { "entry": null, "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -7485,14 +6514,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7500,9 +6523,7 @@ "id": "2023-03-f-01-15-a", "type": "text_multiline", "label": "How do you provide oversight of the contractors? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7526,14 +6547,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -7541,9 +6556,7 @@ "id": "2023-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7564,17 +6577,13 @@ "id": "2023-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -7608,14 +6617,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -7627,9 +6630,7 @@ "id": "2023-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7641,7 +6642,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7667,49 +6669,43 @@ "id": "2023-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7727,9 +6723,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-02" - }, + "fieldset_info": { "id": "2023-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -7740,9 +6734,7 @@ "id": "2023-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7754,7 +6746,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7780,49 +6773,43 @@ "id": "2023-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7840,9 +6827,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-03" - }, + "fieldset_info": { "id": "2023-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -7859,9 +6844,7 @@ "id": "2023-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7873,7 +6856,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -7899,49 +6883,43 @@ "id": "2023-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -7959,9 +6937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-04" - }, + "fieldset_info": { "id": "2023-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -7979,9 +6955,7 @@ "id": "2023-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -7993,7 +6967,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8019,49 +6994,43 @@ "id": "2023-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "context_data": { @@ -8079,9 +7048,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-03-g-01-05" - }, + "fieldset_info": { "id": "2023-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -8094,9 +7061,8 @@ "id": "2023-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -8111,14 +7077,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8129,18 +7089,14 @@ "id": "2023-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -8174,9 +7130,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -8202,17 +7156,13 @@ "id": "2023-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8239,14 +7189,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -8258,14 +7202,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -8295,9 +7233,7 @@ "id": "2023-03-h-02-01", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results. This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-h-02-02", @@ -8310,18 +7246,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid_exp_chip" }, - { - "label": "Separate CHIP", - "value": "separate_chip" - }, + { "label": "Separate CHIP", "value": "separate_chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combo" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8332,18 +7262,9 @@ "answer": { "entry": null, "options": [ - { - "label": "CAHPS 5.1", - "value": "CAHPS 5.1" - }, - { - "label": "CAHPS 5.1H", - "value": "CAHPS 5.1H" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "CAHPS 5.1", "value": "CAHPS 5.1" }, + { "label": "CAHPS 5.1H", "value": "CAHPS 5.1H" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8354,18 +7275,12 @@ "answer": { "entry": null, "options": [ - { - "label": "None", - "value": "None" - }, + { "label": "None", "value": "None" }, { "label": "Children with Chronic Conditions", "value": "Children with Chronic Conditions" }, - { - "label": "Other", - "value": "Other" - } + { "label": "Other", "value": "Other" } ] } }, @@ -8380,14 +7295,8 @@ "label": "NCQA HEDIS CAHPS 5.1H", "value": "NCQA HEDIS CAHPS 5.1H" }, - { - "label": "HRQ CAHPS", - "value": "HRQ CAHPS" - }, - { - "label": "Other", - "value": "Other" - } + { "label": "HRQ CAHPS", "value": "HRQ CAHPS" }, + { "label": "Other", "value": "Other" } ] } }, @@ -8395,9 +7304,7 @@ "id": "2023-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8469,10 +7376,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -8480,9 +7384,7 @@ "id": "2023-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -8510,7 +7412,7 @@ "parts": [ { "id": "2023-03-i-01", - "title": "\u00A0", + "title": " ", "type": "part", "questions": [ { @@ -8521,14 +7423,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -8536,7 +7432,7 @@ }, { "id": "2023-03-i-02", - "title": "\u00A0", + "title": " ", "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", "type": "part", "questions": [ @@ -8554,9 +7450,7 @@ "id": "2023-03-i-02-01-01-01", "type": "text", "label": "What is the name of your HSI program?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-03-i-02-01-01-02", @@ -8565,14 +7459,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -8598,9 +7486,7 @@ "id": "2023-03-i-02-01-01-03", "type": "text_multiline", "label": "Which populations does the HSI program serve?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8619,9 +7505,7 @@ "id": "2023-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8634,15 +7518,14 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "id": "2023-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8655,7 +7538,8 @@ } } } - } + }, + "mask": "lessThanEleven" }, { "type": "fieldset", @@ -8705,9 +7589,7 @@ "id": "2023-03-i-02-01-01-06", "type": "text_multiline", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8726,9 +7608,7 @@ "id": "2023-03-i-02-01-01-07", "type": "text_multiline", "label": "What outcomes have you found when measuring the impact?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8747,9 +7627,7 @@ "id": "2023-03-i-02-01-01-08", "type": "text_multiline", "label": "Is there anything else you'd like to add about this HSI program?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8768,9 +7646,7 @@ "id": "2023-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8870,9 +7746,7 @@ "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", "type": "text_multiline", "label": "Briefly describe your goal.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-02", @@ -8901,9 +7775,7 @@ "id": "2023-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -8936,17 +7808,14 @@ "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -8959,17 +7828,14 @@ "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9020,34 +7886,26 @@ "id": "2023-04-a-01-01-01-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9065,9 +7923,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase access to care" - } + "answer": { "entry": "Increase access to care" } }, { "id": "2023-04-a-01-01-02-02", @@ -9082,9 +7938,7 @@ "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-02", @@ -9113,9 +7967,7 @@ "id": "2023-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9148,17 +8000,14 @@ "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9171,17 +8020,14 @@ "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9232,34 +8078,26 @@ "id": "2023-04-a-01-01-02-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9294,9 +8132,7 @@ "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-02", @@ -9325,9 +8161,7 @@ "id": "2023-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9360,17 +8194,14 @@ "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9383,17 +8214,14 @@ "hint": "For example: The total number of rural children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9444,34 +8272,26 @@ "id": "2023-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9488,9 +8308,7 @@ "id": "2023-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02", @@ -9504,9 +8322,7 @@ "id": "2023-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-02", @@ -9535,9 +8351,7 @@ "id": "2023-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9570,17 +8384,14 @@ "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9593,17 +8404,14 @@ "hint": "For example: The total number of children enrolled in CHIP.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9654,34 +8462,26 @@ "id": "2023-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9698,9 +8498,7 @@ "id": "2023-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02", @@ -9714,9 +8512,7 @@ "id": "2023-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-02", @@ -9745,9 +8541,7 @@ "id": "2023-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9779,17 +8573,14 @@ "id": "2023-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9801,17 +8592,14 @@ "id": "2023-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -9862,34 +8650,26 @@ "id": "2023-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -9906,9 +8686,7 @@ "id": "2023-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02", @@ -9922,9 +8700,7 @@ "id": "2023-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal as it relates to this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-02", @@ -9953,9 +8729,7 @@ "id": "2023-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -9987,17 +8761,14 @@ "id": "2023-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -10010,17 +8781,14 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ] }, @@ -10071,34 +8839,26 @@ "id": "2023-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10120,34 +8880,26 @@ "id": "2023-04-a-02-01", "type": "text_multiline", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-03", "type": "text_multiline", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-04-a-02-04", "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -10193,34 +8945,26 @@ "id": "2023-05-a-01-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-01" - }, + "fieldset_info": { "id": "2023-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -10234,34 +8978,26 @@ "id": "2023-05-a-01-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-02" - }, + "fieldset_info": { "id": "2023-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -10275,34 +9011,26 @@ "id": "2023-05-a-01-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-03" - }, + "fieldset_info": { "id": "2023-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -10316,34 +9044,26 @@ "id": "2023-05-a-01-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-01-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-01-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-01-04" - }, + "fieldset_info": { "id": "2023-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -10354,9 +9074,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -10377,9 +9095,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -10400,9 +9116,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -10446,9 +9160,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3>", @@ -10485,18 +9197,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -10520,34 +9224,26 @@ "id": "2023-05-a-02-01-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-01-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-01-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-01" - }, + "fieldset_info": { "id": "2023-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -10561,34 +9257,26 @@ "id": "2023-05-a-02-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-02" - }, + "fieldset_info": { "id": "2023-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -10602,34 +9290,26 @@ "id": "2023-05-a-02-03-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-03-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-03-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-03" - }, + "fieldset_info": { "id": "2023-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -10643,34 +9323,26 @@ "id": "2023-05-a-02-04-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-04-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-04-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-04" - }, + "fieldset_info": { "id": "2023-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -10684,34 +9356,26 @@ "id": "2023-05-a-02-05-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-05-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-05-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-05" - }, + "fieldset_info": { "id": "2023-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -10725,34 +9389,26 @@ "id": "2023-05-a-02-06-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-06-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-06-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-06" - }, + "fieldset_info": { "id": "2023-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -10766,34 +9422,26 @@ "id": "2023-05-a-02-07-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-02-07-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-02-07-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-02-07" - }, + "fieldset_info": { "id": "2023-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -10804,9 +9452,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -10827,9 +9473,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -10850,9 +9494,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -10873,9 +9515,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -10896,9 +9536,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -10919,9 +9557,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -10942,9 +9578,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -10965,9 +9599,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -11006,9 +9638,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -11045,18 +9675,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11069,9 +9691,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -11128,48 +9748,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY23)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2025" - } - ], + "targets": [{ "lookupFmapFy": "2025" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11188,9 +9790,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11209,9 +9809,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11228,9 +9826,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -11246,9 +9842,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2023-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-a')].answer.entry", @@ -11278,9 +9872,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2023-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-b')].answer.entry", @@ -11310,9 +9902,7 @@ "$..*[?(@ && @.id=='2023-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2025" - }, + { "lookupFmapFy": "2025" }, "$..*[?(@ && @.id=='2023-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2023-05-a-01-03-c')].answer.entry", @@ -11330,18 +9920,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11378,10 +9960,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -11389,9 +9968,7 @@ "id": "2023-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11415,14 +9992,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -11430,9 +10001,7 @@ "id": "2023-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -11468,34 +10037,29 @@ "id": "2023-05-a-03-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-03-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-01" - }, + "fieldset_info": { "id": "2023-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -11510,34 +10074,26 @@ "id": "2023-05-a-03-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-03-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-03-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-03-02" - }, + "fieldset_info": { "id": "2023-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -11546,9 +10102,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11569,9 +10123,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11593,18 +10145,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11628,34 +10172,29 @@ "id": "2023-05-a-04-01-a", "type": "integer", "label": "2023", - "answer": { - "entry": null - }, - "comment": "This is the first real question so far in this part…" + "answer": { "entry": null }, + "comment": "This is the first real question so far in this part…", + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-b", "type": "integer", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" }, { "id": "2023-05-a-04-01-c", "type": "integer", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null }, + "mask": "lessThanEleven" } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-01" - }, + "fieldset_info": { "id": "2023-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -11670,34 +10209,26 @@ "id": "2023-05-a-04-02-a", "type": "money", "label": "2023", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2023-05-a-04-02-b", "type": "money", "label": "2024", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-04-02-c", "type": "money", "label": "2025", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2023-05-a-04-02" - }, + "fieldset_info": { "id": "2023-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -11706,9 +10237,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -11729,9 +10258,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -11753,18 +10280,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - }, - { - "contents": "FFY 2025" - } + { "contents": "" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" } ] }, "fieldset_type": "synthesized_table" @@ -11779,17 +10298,13 @@ "id": "2023-05-a-05-01", "type": "text_multiline", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11826,49 +10341,37 @@ "id": "2023-06-a-01-01", "type": "text_multiline", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-02", "type": "text_multiline", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-03", "type": "text_multiline", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2023?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-04", "type": "text_multiline", "label": "What changes have you made to your CHIP program in FFY 2023 or plan to make in FFY 2024? Why have you decided to make these changes?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2023-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -11949,42 +10452,32 @@ "id": "2022-00-a-01-04", "label": "Contact name:", "type": "text", - "answer": { - "entry": "Haley Gov" - } + "answer": { "entry": "Haley Gov" } }, { "id": "2022-00-a-01-05", "label": "Job title:", "type": "text", - "answer": { - "entry": "Lead" - } + "answer": { "entry": "Lead" } }, { "id": "2022-00-a-01-06", "label": "Email:", "type": "email", - "answer": { - "entry": "haley@cms.gov" - } + "answer": { "entry": "haley@cms.gov" } }, { "id": "2022-00-a-01-07", "label": "Full mailing address:", "type": "mailing_address", - "answer": { - "entry": "address here" - }, + "answer": { "entry": "address here" }, "hint": "Include city, state, and zip code." }, { "id": "2022-00-a-01-08", "label": "Phone number:", "type": "phone_number", - "answer": { - "entry": "8004659988" - } + "answer": { "entry": "8004659988" } }, { "questions": [], @@ -12047,9 +10540,7 @@ "id": "2022-01-a-01-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "25" - } + "answer": { "entry": "25" } } ], "id": "2022-01-a-01-01", @@ -12057,14 +10548,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12080,14 +10565,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12138,9 +10617,7 @@ "id": "2022-01-a-01-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -12164,14 +10641,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12225,9 +10696,7 @@ "id": "2022-01-a-01-03-b", "label": "What's the maximum premium a family would be charged each year?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-01-03", @@ -12235,14 +10704,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12251,9 +10714,7 @@ "id": "2022-01-a-01-04", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-01-05", @@ -12261,18 +10722,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12282,9 +10737,7 @@ "id": "2022-01-a-01-06", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "info here" - } + "answer": { "entry": "info here" } } ], "context_data": { @@ -12319,9 +10772,7 @@ "id": "2022-01-a-02-01-a", "label": "How much is your enrollment fee?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-01-a-02-01", @@ -12329,14 +10780,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12352,14 +10797,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12410,9 +10849,7 @@ "id": "2022-01-a-02-02-c", "label": "How much is the premium for one child?", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "context_data": { @@ -12436,14 +10873,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -12497,9 +10928,7 @@ "id": "2022-01-a-02-03-b", "label": "What's the maximum premium fee a family would be charged each year?", "type": "money", - "answer": { - "entry": "6" - } + "answer": { "entry": "6" } } ], "id": "2022-01-a-02-03", @@ -12507,14 +10936,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -12523,9 +10946,7 @@ "id": "2022-01-a-02-04", "label": "Do your premiums differ for different CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } }, { "id": "2022-01-a-02-05", @@ -12533,18 +10954,12 @@ "type": "checkbox", "answer": { "options": [ - { - "value": "mco", - "label": "Managed Care" - }, + { "value": "mco", "label": "Managed Care" }, { "value": "pccm", "label": "Primary Care Case Management" }, - { - "value": "ffs", - "label": "Fee for Service" - } + { "value": "ffs", "label": "Fee for Service" } ], "entry": [null, "mco"] }, @@ -12554,9 +10969,7 @@ "id": "2022-01-a-02-06", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", "type": "text_multiline", - "answer": { - "entry": "no" - } + "answer": { "entry": "no" } } ], "context_data": { @@ -12578,18 +10991,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12603,18 +11007,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12628,18 +11023,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12654,18 +11040,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12680,95 +11057,53 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-03-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-03-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Medicaid Expansion CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-03-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12783,18 +11118,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12809,18 +11135,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -12834,44 +11151,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-03-12", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -12886,18 +11183,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12911,18 +11199,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -12936,43 +11215,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-03-16", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -12984,9 +11243,7 @@ "id": "2022-01-a-03-17", "label": "Briefly describe why you made these changes to your Medicaid Expansion CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-03-18", @@ -12994,18 +11251,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13067,18 +11315,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13092,18 +11331,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13117,18 +11347,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13143,18 +11364,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13169,121 +11381,68 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Outreach efforts" - }, + "context_data": { "bullet_text": "Outreach efforts" }, "id": "2022-01-a-04-06", "label": "Have you made any changes to your outreach efforts?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: allotting more or less funding for outreach, or changing your target population." }, { - "context_data": { - "bullet_text": "Delivery system(s)" - }, + "context_data": { "bullet_text": "Delivery system(s)" }, "id": "2022-01-a-04-07", "label": "Have you made any changes to the delivery system(s)?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: transitioning from Fee for Service to Managed Care for different Separate CHIP populations." }, { - "context_data": { - "bullet_text": "Cost sharing" - }, + "context_data": { "bullet_text": "Cost sharing" }, "id": "2022-01-a-04-08", "label": "Have you made any changes to your cost sharing requirements?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, "hint": "For example: changing amounts, populations, or the collection process." }, { - "context_data": { - "bullet_text": "Crowd-out policies" - }, + "context_data": { "bullet_text": "Crowd-out policies" }, "id": "2022-01-a-04-09", "label": "Have you made any changes to substitution of coverage policies?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13298,18 +11457,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13323,18 +11473,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" } @@ -13348,44 +11489,24 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide." }, { - "context_data": { - "bullet_text": "Premium assistance" - }, + "context_data": { "bullet_text": "Premium assistance" }, "id": "2022-01-a-04-13", "label": "Have you made any changes to premium assistance?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" }, @@ -13400,18 +11521,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13425,18 +11537,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "yes" }, @@ -13451,18 +11554,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" }, @@ -13477,18 +11571,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "n/a" } @@ -13502,43 +11587,23 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } }, { - "context_data": { - "bullet_text": "Other program areas" - }, + "context_data": { "bullet_text": "Other program areas" }, "id": "2022-01-a-04-19", "label": "Have you made changes to any other policy or program areas?", "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "n/a", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "n/a", "label": "N/A" } ], "entry": "no" } @@ -13550,9 +11615,7 @@ "id": "2022-01-a-04-20", "label": "Briefly describe why you made these changes to your Separate CHIP program.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-01-a-04-21", @@ -13560,14 +11623,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -13650,9 +11707,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Medicaid Expansion CHIP" - }, + { "contents": "Medicaid Expansion CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13675,9 +11730,7 @@ } ], [ - { - "contents": "Separate CHIP" - }, + { "contents": "Separate CHIP" }, { "lookupChipEnrollments": { "ffy": 2022, @@ -13701,18 +11754,14 @@ ] ], "headers": [ - { - "contents": "Program" - }, + { "contents": "Program" }, { "contents": "Number of children enrolled in FFY 2021" }, { "contents": "Number of children enrolled in FFY 2022" }, - { - "contents": "Percent change" - } + { "contents": "Percent change" } ] }, "fieldset_type": "synthesized_table", @@ -13750,9 +11799,7 @@ "id": "2022-02-a-01-01", "label": "If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-02-a-01", @@ -13769,9 +11816,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2013" - }, + { "contents": "2013" }, { "lookupAcs": { "ffy": "2013", @@ -13798,9 +11843,7 @@ } ], [ - { - "contents": "2014" - }, + { "contents": "2014" }, { "lookupAcs": { "ffy": "2014", @@ -13827,9 +11870,7 @@ } ], [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -13856,9 +11897,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -13885,9 +11924,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -13914,9 +11951,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -13943,9 +11978,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -13972,9 +12005,7 @@ } ], [ - { - "contents": "2020" - }, + { "contents": "2020" }, { "lookupAcs": { "ffy": "2020", @@ -14001,9 +12032,7 @@ } ], [ - { - "contents": "2021" - }, + { "contents": "2021" }, { "lookupAcs": { "ffy": "2021", @@ -14031,21 +12060,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "label": "", @@ -14067,9 +12088,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2019 and 2021" - } + { "contents": "Percent change between 2019 and 2021" } ] }, "fieldset_type": "synthesized_table", @@ -14107,9 +12126,7 @@ "id": "2022-02-a-02-01", "label": "What are some reasons why the number and/or percent of uninsured children has changed?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -14130,9 +12147,7 @@ "id": "2022-02-a-02-02-a", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02-02", @@ -14140,14 +12155,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14161,9 +12170,7 @@ "id": "2022-02-a-02-03-a", "label": "What is the alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-b", @@ -14178,49 +12185,37 @@ "id": "2022-02-a-02-03-c", "label": "Define the population you’re measuring, including ages and federal poverty levels.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-d", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-e", "label": "Why did your state choose to adopt this alternate data source?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-f", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-g", "label": "What are the limitations of this alternate data source or methodology?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-02-a-02-03-h", "label": "How do you use this alternate data source in CHIP program planning?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14243,14 +12238,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14259,17 +12248,13 @@ "id": "2022-02-a-02-04", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-02-a-02-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-02-a-02", @@ -14323,9 +12308,7 @@ "id": "2022-03-a-01-01-a", "label": "What are you doing differently?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-01", @@ -14333,14 +12316,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14364,9 +12341,7 @@ "id": "2022-03-a-01-02-a", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01-02", @@ -14374,14 +12349,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -14391,26 +12360,20 @@ "id": "2022-03-a-01-03", "label": "What methods have been most effective in reaching low-income, uninsured children?", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: TV, school outreach, or word of mouth." }, { "id": "2022-03-a-01-04", "label": "Is there anything else you’d like to add about your outreach efforts?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-a-01-05", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-a-01" @@ -14444,9 +12407,7 @@ "id": "2022-03-b-01-01-a", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-01", @@ -14454,18 +12415,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14489,9 +12441,7 @@ "id": "2022-03-b-01-02-a", "label": "Which database do you use?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01-02", @@ -14499,18 +12449,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14519,9 +12460,7 @@ "id": "2022-03-b-01-03", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", "type": "percentage", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -14535,9 +12474,7 @@ "id": "2022-03-b-01-04-a", "label": "How long is the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14571,9 +12508,7 @@ "id": "2022-03-b-01-04-b", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14592,9 +12527,7 @@ "id": "2022-03-b-01-04-c", "label": "What exemptions apply to the waiting period?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -14613,9 +12546,7 @@ "id": "2022-03-b-01-04-d", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14630,18 +12561,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14652,17 +12574,13 @@ "id": "2022-03-b-01-05", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-b-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-b-01" @@ -14686,17 +12604,13 @@ "id": "2022-03-c-01-01-a", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-01-b", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", "type": "percentage", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14719,18 +12633,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "no" } @@ -14741,14 +12646,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14762,17 +12661,13 @@ "id": "2022-03-c-01-03-a", "label": "How many notices do you send to families before disenrolling a child from the program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-01-03-b", "label": "How many days before the end of the eligibility period did you send reminder notices to families?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -14795,14 +12690,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -14811,33 +12700,25 @@ "id": "2022-03-c-01-04", "label": "What else have you done to simplify the eligibility renewal process for families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-05", "label": "Which retention strategies have you found to be most effective?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-06", "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-c-01-07", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-01", @@ -14850,18 +12731,14 @@ "id": "2022-03-c-02-01", "label": "How many applicants were denied CHIP coverage in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "Don’t include applicants being considered for redetermination — these data will be collected in Part 3." }, { "id": "2022-03-c-02-02", "label": "How many applicants were denied CHIP coverage for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee." }, { @@ -14870,43 +12747,33 @@ "id": "2022-03-c-02-03-a", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-02-03", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available." }, { "id": "2022-03-c-02-04", "label": "How many applicants were denied CHIP coverage for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-02-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-01')].answer.entry" @@ -14921,9 +12788,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-02')].answer.entry" @@ -14938,9 +12803,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-03')].answer.entry" @@ -14955,9 +12818,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2022-03-c-02-04')].answer.entry" @@ -14973,15 +12834,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: CHIP Eligibility Denials (Not Redetermination)", @@ -15000,25 +12855,19 @@ "id": "2022-03-c-03-01", "label": "How many children were eligible for redetermination in CHIP in FFY 2022?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2022-03-c-03-03", "label": "How many children were retained in CHIP after redetermination?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "questions": [ @@ -15040,44 +12889,34 @@ "id": "2022-03-c-03-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-03-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage." }, { "id": "2022-03-c-03-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "id": "2022-03-c-03-04", "label": "How many children were disenrolled in CHIP after the redetermination process?", "type": "integer", - "answer": { - "entry": "8" - }, + "answer": { "entry": "8" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-03-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15136,15 +12975,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in CHIP ", @@ -15226,15 +13059,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15254,25 +13081,19 @@ "id": "2022-03-c-04-01", "label": "How many children were eligible for redetermination in Medicaid in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-02", "label": "Of the eligible children, how many were then screened for redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-c-04-03", "label": "How many children were retained in Medicaid after redetermination?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15294,44 +13115,34 @@ "id": "2022-03-c-04-04-a", "label": "How many children were disenrolled for procedural reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee." }, { "id": "2022-03-c-04-04-b", "label": "How many children were disenrolled for eligibility reasons?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead." }, { "id": "2022-03-c-04-04-c", "label": "How many children were disenrolled for other reasons?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-04-04", "label": "How many children were disenrolled in Medicaid after the redetermination process?", "type": "integer", - "answer": { - "entry": "5" - }, + "answer": { "entry": "5" }, "hint": "This number should be equal to the total of 4a, 4b, and 4c below." }, { "id": "2022-03-c-04-05", "label": "Did you have any limitations in collecting these data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -15390,15 +13201,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "label": "Table: Redetermination in Medicaid ", @@ -15480,15 +13285,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", @@ -15534,14 +13333,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -15570,9 +13363,7 @@ "id": "2022-03-c-05-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15595,33 +13386,25 @@ "id": "2022-03-c-05-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15640,9 +13423,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-03" - }, + "fieldset_info": { "id": "2022-03-c-05-03" }, "label": "How many children were newly enrolled in CHIP between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -15670,9 +13451,7 @@ "id": "2022-03-c-05-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15695,33 +13474,25 @@ "id": "2022-03-c-05-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15740,9 +13511,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-04" - }, + "fieldset_info": { "id": "2022-03-c-05-04" }, "label": "How many children were continuously enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -15766,9 +13535,7 @@ "id": "2022-03-c-05-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15791,33 +13558,25 @@ "id": "2022-03-c-05-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15836,9 +13595,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-05" - }, + "fieldset_info": { "id": "2022-03-c-05-05" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -15861,9 +13618,7 @@ "id": "2022-03-c-05-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15886,33 +13641,25 @@ "id": "2022-03-c-05-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -15931,9 +13678,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-06" - }, + "fieldset_info": { "id": "2022-03-c-05-06" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -15956,9 +13701,7 @@ "id": "2022-03-c-05-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -15981,33 +13724,25 @@ "id": "2022-03-c-05-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16026,9 +13761,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-07" - }, + "fieldset_info": { "id": "2022-03-c-05-07" }, "label": "How many children were no longer enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16052,9 +13785,7 @@ "id": "2022-03-c-05-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -16077,33 +13808,25 @@ "id": "2022-03-c-05-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-05-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -16122,9 +13845,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-08" - }, + "fieldset_info": { "id": "2022-03-c-05-08" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16133,9 +13854,7 @@ "id": "2022-03-c-05-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -16161,10 +13880,7 @@ "id": "2022-03-c-05-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16187,37 +13903,25 @@ "id": "2022-03-c-05-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16236,9 +13940,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-10" - }, + "fieldset_info": { "id": "2022-03-c-05-10" }, "label": "How many children were continuously enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16262,10 +13964,7 @@ "id": "2022-03-c-05-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16288,37 +13987,25 @@ "id": "2022-03-c-05-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16337,9 +14024,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-11" - }, + "fieldset_info": { "id": "2022-03-c-05-11" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16362,10 +14047,7 @@ "id": "2022-03-c-05-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16388,37 +14070,25 @@ "id": "2022-03-c-05-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16437,9 +14107,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-12" - }, + "fieldset_info": { "id": "2022-03-c-05-12" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16462,10 +14130,7 @@ "id": "2022-03-c-05-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16488,37 +14153,25 @@ "id": "2022-03-c-05-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16537,9 +14190,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-13" - }, + "fieldset_info": { "id": "2022-03-c-05-13" }, "label": "How many children were no longer enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16563,10 +14214,7 @@ "id": "2022-03-c-05-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16589,37 +14237,25 @@ "id": "2022-03-c-05-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16638,9 +14274,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-14" - }, + "fieldset_info": { "id": "2022-03-c-05-14" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16669,10 +14303,7 @@ "id": "2022-03-c-05-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16695,37 +14326,25 @@ "id": "2022-03-c-05-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16744,9 +14363,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-15" - }, + "fieldset_info": { "id": "2022-03-c-05-15" }, "label": "How many children were continuously enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -16770,10 +14387,7 @@ "id": "2022-03-c-05-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16796,37 +14410,25 @@ "id": "2022-03-c-05-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16845,9 +14447,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-16" - }, + "fieldset_info": { "id": "2022-03-c-05-16" }, "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -16870,10 +14470,7 @@ "id": "2022-03-c-05-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16896,37 +14493,25 @@ "id": "2022-03-c-05-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -16945,9 +14530,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-17" - }, + "fieldset_info": { "id": "2022-03-c-05-17" }, "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -16970,10 +14553,7 @@ "id": "2022-03-c-05-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -16996,37 +14576,25 @@ "id": "2022-03-c-05-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17045,9 +14613,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-18" - }, + "fieldset_info": { "id": "2022-03-c-05-18" }, "label": "How many children were no longer enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17071,10 +14637,7 @@ "id": "2022-03-c-05-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17097,37 +14660,25 @@ "id": "2022-03-c-05-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-05-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17146,9 +14697,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-05-19" - }, + "fieldset_info": { "id": "2022-03-c-05-19" }, "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17157,9 +14706,7 @@ "id": "2022-03-c-05-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "id": "2022-03-c-05", @@ -17199,14 +14746,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -17235,9 +14776,7 @@ "id": "2022-03-c-06-03-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17260,33 +14799,25 @@ "id": "2022-03-c-06-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-03-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17305,9 +14836,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-03" - }, + "fieldset_info": { "id": "2022-03-c-06-03" }, "label": "How many children were newly enrolled in Medicaid between January and March 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -17335,9 +14864,7 @@ "id": "2022-03-c-06-04-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17360,33 +14887,25 @@ "id": "2022-03-c-06-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-04-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17405,9 +14924,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-04" - }, + "fieldset_info": { "id": "2022-03-c-06-04" }, "label": "How many children were continuously enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17431,9 +14948,7 @@ "id": "2022-03-c-06-05-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17456,33 +14971,25 @@ "id": "2022-03-c-06-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-05-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17501,9 +15008,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-05" - }, + "fieldset_info": { "id": "2022-03-c-06-05" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17526,9 +15031,7 @@ "id": "2022-03-c-06-06-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17551,33 +15054,25 @@ "id": "2022-03-c-06-06-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-06-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17596,9 +15091,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-06" - }, + "fieldset_info": { "id": "2022-03-c-06-06" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -17621,9 +15114,7 @@ "id": "2022-03-c-06-07-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17646,33 +15137,25 @@ "id": "2022-03-c-06-07-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-07-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17691,9 +15174,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-07" - }, + "fieldset_info": { "id": "2022-03-c-06-07" }, "label": "How many children were no longer enrolled in Medicaid six months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17717,9 +15198,7 @@ "id": "2022-03-c-06-08-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -17742,33 +15221,25 @@ "id": "2022-03-c-06-08-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-c-06-08-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -17787,9 +15258,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-08" - }, + "fieldset_info": { "id": "2022-03-c-06-08" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", "fieldset_type": "marked", "type": "fieldset" @@ -17798,9 +15267,7 @@ "id": "2022-03-c-06-09", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [], @@ -17826,10 +15293,7 @@ "id": "2022-03-c-06-10-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17852,37 +15316,25 @@ "id": "2022-03-c-06-10-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-10-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -17901,9 +15353,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-10" - }, + "fieldset_info": { "id": "2022-03-c-06-10" }, "label": "How many children were continuously enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -17927,10 +15377,7 @@ "id": "2022-03-c-06-11-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -17953,37 +15400,25 @@ "id": "2022-03-c-06-11-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-11-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18002,9 +15437,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-11" - }, + "fieldset_info": { "id": "2022-03-c-06-11" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18027,10 +15460,7 @@ "id": "2022-03-c-06-12-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18053,37 +15483,25 @@ "id": "2022-03-c-06-12-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-12-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18102,9 +15520,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-12" - }, + "fieldset_info": { "id": "2022-03-c-06-12" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18127,10 +15543,7 @@ "id": "2022-03-c-06-13-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18153,37 +15566,25 @@ "id": "2022-03-c-06-13-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-13-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18202,9 +15603,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-13" - }, + "fieldset_info": { "id": "2022-03-c-06-13" }, "label": "How many children were no longer enrolled in Medicaid 12 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18228,10 +15627,7 @@ "id": "2022-03-c-06-14-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18254,37 +15650,25 @@ "id": "2022-03-c-06-14-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-14-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18303,9 +15687,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-14" - }, + "fieldset_info": { "id": "2022-03-c-06-14" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18334,10 +15716,7 @@ "id": "2022-03-c-06-15-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18360,37 +15739,25 @@ "id": "2022-03-c-06-15-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-15-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18409,9 +15776,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-15" - }, + "fieldset_info": { "id": "2022-03-c-06-15" }, "label": "How many children were continuously enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18435,10 +15800,7 @@ "id": "2022-03-c-06-16-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18461,37 +15823,25 @@ "id": "2022-03-c-06-16-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-16-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18510,9 +15860,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-16" - }, + "fieldset_info": { "id": "2022-03-c-06-16" }, "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18535,10 +15883,7 @@ "id": "2022-03-c-06-17-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18561,37 +15906,25 @@ "id": "2022-03-c-06-17-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-17-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18610,9 +15943,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-17" - }, + "fieldset_info": { "id": "2022-03-c-06-17" }, "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", "fieldset_type": "marked", "type": "fieldset" @@ -18635,10 +15966,7 @@ "id": "2022-03-c-06-18-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18661,37 +15989,25 @@ "id": "2022-03-c-06-18-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-18-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18710,9 +16026,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-18" - }, + "fieldset_info": { "id": "2022-03-c-06-18" }, "label": "How many children were no longer enrolled in Medicaid 18 months later?", "fieldset_type": "marked", "type": "fieldset", @@ -18736,10 +16050,7 @@ "id": "2022-03-c-06-19-a", "label": "Total for all ages (0-16)", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "questions": [ @@ -18762,37 +16073,25 @@ "id": "2022-03-c-06-19-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-c", "label": "Ages 1-5", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-d", "label": "Ages 6-12", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } }, { "id": "2022-03-c-06-19-e", "label": "Ages 13-16", "type": "integer", - "answer": { - "readonly": true, - "entry": null - } + "answer": { "readonly": true, "entry": null } } ], "context_data": { @@ -18811,9 +16110,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-c-06-19" - }, + "fieldset_info": { "id": "2022-03-c-06-19" }, "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", "fieldset_type": "marked", "type": "fieldset" @@ -18822,9 +16119,7 @@ "id": "2022-03-c-06-20", "label": "Is there anything else you’d like to add about your data?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "id": "2022-03-c-06", @@ -18848,14 +16143,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -18893,9 +16182,7 @@ "id": "2022-03-d-01-02-a", "label": "What information or tools do you provide families with so they can track cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -18924,9 +16211,7 @@ "id": "2022-03-d-01-02-b", "label": "Who tracks cost sharing?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-02", @@ -18942,18 +16227,12 @@ "value": "health_plans", "label": "Health plans" }, - { - "value": "states", - "label": "States" - }, + { "value": "states", "label": "States" }, { "value": "third_party_administrator", "label": "Third party administrator" }, - { - "value": "other", - "label": "Other " - } + { "value": "other", "label": "Other " } ], "entry": "health_plans" } @@ -18962,17 +16241,13 @@ "id": "2022-03-d-01-03", "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-04", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -18993,9 +16268,7 @@ "id": "2022-03-d-01-05-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-05", @@ -19003,14 +16276,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19034,9 +16301,7 @@ "id": "2022-03-d-01-06-a", "label": "What did you find in your assessment?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-d-01-06", @@ -19044,14 +16309,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19076,25 +16335,19 @@ "id": "2022-03-d-01-07", "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-d-01-08", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-d-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19137,14 +16390,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19183,14 +16430,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -19199,9 +16440,7 @@ "id": "2022-03-e-02-03", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This only applies to states operating an 1115 demo." }, { @@ -19210,14 +16449,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19229,18 +16462,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": null }, @@ -19265,9 +16489,7 @@ "id": "2022-03-e-02-06-a", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-e-02-06", @@ -19275,14 +16497,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null }, @@ -19292,9 +16508,7 @@ "id": "2022-03-e-02-07", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -19303,25 +16517,19 @@ "id": "2022-03-e-02-08", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-09", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-10", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", "type": "money", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -19351,15 +16559,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "label": "Child", @@ -19422,41 +16624,31 @@ "id": "2022-03-e-02-14", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-15", "label": "What challenges did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-16", "label": "What accomplishments did you experience with your premium assistance program in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-e-02-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19492,14 +16684,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "yes" } @@ -19510,14 +16696,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19528,14 +16708,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19544,9 +16718,7 @@ "id": "2022-03-f-01-04", "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "questions": [ @@ -19567,9 +16739,7 @@ "id": "2022-03-f-01-05-a", "label": "What safeguards and procedures do the Managed Care plans have in place?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-05", @@ -19577,18 +16747,9 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - }, - { - "value": "na", - "label": "N/A" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" }, + { "value": "na", "label": "N/A" } ], "entry": "na" } @@ -19597,17 +16758,13 @@ "id": "2022-03-f-01-06", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-07", "label": "How many cases have been found in favor of the beneficiary in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "type": "fieldset", @@ -19616,17 +16773,13 @@ "id": "2022-03-f-01-08", "label": "How many cases related to provider credentialing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-09", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19637,17 +16790,13 @@ "id": "2022-03-f-01-10", "label": "How many cases related to provider billing were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-11", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19658,17 +16807,13 @@ "id": "2022-03-f-01-12", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-03-f-01-13", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ] }, @@ -19678,10 +16823,7 @@ "type": "radio", "answer": { "options": [ - { - "value": "separate_chip_only", - "label": "CHIP only" - }, + { "value": "separate_chip_only", "label": "CHIP only" }, { "value": "medicaid_separate_chip_combined", "label": "Medicaid and CHIP combined" @@ -19709,9 +16851,7 @@ "id": "2022-03-f-01-15-a", "label": "How do you provide oversight of the contractors? ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-15", @@ -19719,14 +16859,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19750,9 +16884,7 @@ "id": "2022-03-f-01-16-a", "label": "What specifically are the contractors responsible for in terms of oversight?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-f-01-16", @@ -19760,14 +16892,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -19776,17 +16902,13 @@ "id": "2022-03-f-01-17", "label": "Is there anything else you’d like to add that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-f-01-18", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19818,14 +16940,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -19849,9 +16965,7 @@ "id": "2022-03-g-01-02-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19876,49 +16990,37 @@ "id": "2022-03-g-01-02-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-02-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -19937,9 +17039,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-02" - }, + "fieldset_info": { "id": "2022-03-g-01-02" }, "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -19962,9 +17062,7 @@ "id": "2022-03-g-01-03-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -19989,49 +17087,37 @@ "id": "2022-03-g-01-03-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-03-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20050,9 +17136,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-03" - }, + "fieldset_info": { "id": "2022-03-g-01-03" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20081,9 +17165,7 @@ "id": "2022-03-g-01-04-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20108,49 +17190,37 @@ "id": "2022-03-g-01-04-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-04-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20169,9 +17239,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-04" - }, + "fieldset_info": { "id": "2022-03-g-01-04" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received at least one preventative dental care service during FFY 2022?", "fieldset_type": "marked", "type": "fieldset" @@ -20200,9 +17268,7 @@ "id": "2022-03-g-01-05-a", "label": "Total for all ages (0-18)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [ @@ -20227,49 +17293,37 @@ "id": "2022-03-g-01-05-b", "label": "Ages 0-1", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-c", "label": "Ages 1-2", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-d", "label": "Ages 3-5", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-e", "label": "Ages 6-9", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-f", "label": "Ages 10-14", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-05-g", "label": "Ages 15-18", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20288,9 +17342,7 @@ "type": "fieldset" } ], - "fieldset_info": { - "id": "2022-03-g-01-05" - }, + "fieldset_info": { "id": "2022-03-g-01-05" }, "label": "How many children (who were enrolled in Separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2022?", "fieldset_type": "marked", "type": "fieldset", @@ -20306,9 +17358,7 @@ "id": "2022-03-g-01-06", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2022?", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "questions": [], @@ -20325,17 +17375,13 @@ "id": "2022-03-g-01-07-a", "label": "How many children were enrolled in supplemental dental coverage during FFY 2022?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-g-01-07-b", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2022?", "type": "integer", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "This is the total number for all children between 0-18 years from question 1." }, { @@ -20369,9 +17415,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table", @@ -20398,14 +17442,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20414,17 +17452,13 @@ "id": "2022-03-g-01-08", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-03-g-01-09", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -20466,14 +17500,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20484,14 +17512,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" } @@ -20547,10 +17569,7 @@ "value": "Sample size was too small (fewer than 30)", "label": "Sample size was too small (fewer than 30)" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [ null, @@ -20563,9 +17582,7 @@ "id": "2022-03-h-02-02", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } } ], "context_data": { @@ -20604,14 +17621,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": "no" }, @@ -20631,9 +17642,7 @@ "id": "2022-03-i-02-01-01-01", "label": "What is the name of your HSI program?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-03-i-02-01-01-02", @@ -20641,14 +17650,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -20688,9 +17691,7 @@ "id": "2022-03-i-02-01-01-03", "label": "Which populations does the HSI program serve?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20709,9 +17710,7 @@ "id": "2022-03-i-02-01-01-04", "label": "How many children do you estimate are being served by the HSI program?", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20730,9 +17729,7 @@ "id": "2022-03-i-02-01-01-05", "label": "How many children in the HSI program are below your state's FPL threshold? ", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [], @@ -20794,9 +17791,7 @@ "id": "2022-03-i-02-01-01-06", "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20815,9 +17810,7 @@ "id": "2022-03-i-02-01-01-07", "label": "What outcomes have you found when measuring the impact?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20836,9 +17829,7 @@ "id": "2022-03-i-02-01-01-08", "label": "Is there anything else you'd like to add about this HSI program?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "context_data": { @@ -20857,9 +17848,7 @@ "id": "2022-03-i-02-01-01-09", "label": "Optional: Attach any additional documents.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-03-i-02-01-01" @@ -20944,9 +17933,7 @@ "id": "2022-04-a-01-01-01-02-01-01", "label": "Briefly describe your goal.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program." }, { @@ -20975,9 +17962,7 @@ "id": "2022-04-a-01-01-01-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-01-02-01-02", @@ -21009,18 +17994,14 @@ "id": "2022-04-a-01-01-01-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21032,18 +18013,14 @@ "id": "2022-04-a-01-01-01-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year." }, { "id": "2022-04-a-01-01-01-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21095,33 +18072,25 @@ "id": "2022-04-a-01-01-01-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-01-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21142,9 +18111,7 @@ "id": "2022-04-a-01-01-02-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": "Increase access to care" - }, + "answer": { "entry": "Increase access to care" }, "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan." }, { @@ -21156,9 +18123,7 @@ "id": "2022-04-a-01-01-02-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: In an effort to increase access to care for underserved populations, our goal is to increase the number of children of Hispanic ethnicity who have visited a primary care physician by 5% annually over the next five years (ending in 2028)." }, { @@ -21187,9 +18152,7 @@ "id": "2022-04-a-01-01-02-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-02-02-01-02", @@ -21221,18 +18184,14 @@ "id": "2022-04-a-01-01-02-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the numerator you're measuring" @@ -21244,18 +18203,14 @@ "id": "2022-04-a-01-01-02-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": "test" - }, + "answer": { "entry": "test" }, "hint": "For example: The total number of children of Hispanic ethnicity enrolled in CHIP in the last federal fiscal year." }, { "id": "2022-04-a-01-01-02-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "label": "Define the denominator you're measuring" @@ -21307,33 +18262,25 @@ "id": "2022-04-a-01-01-02-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-01-01-02-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21368,9 +18315,7 @@ "id": "2022-04-a-01-01-03-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state." }, { @@ -21399,9 +18344,7 @@ "id": "2022-04-a-01-01-03-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-03-02-01-02", @@ -21433,18 +18376,14 @@ "id": "2022-04-a-01-01-03-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year." }, { "id": "2022-04-a-01-01-03-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21456,18 +18395,14 @@ "id": "2022-04-a-01-01-03-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of rural children enrolled in CHIP." }, { "id": "2022-04-a-01-01-03-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21519,33 +18454,25 @@ "id": "2022-04-a-01-01-03-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-03-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21566,9 +18493,7 @@ "id": "2022-04-a-01-01-04-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21579,9 +18504,7 @@ "id": "2022-04-a-01-01-04-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21609,9 +18532,7 @@ "id": "2022-04-a-01-01-04-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-04-02-01-02", @@ -21643,17 +18564,13 @@ "id": "2022-04-a-01-01-04-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21665,17 +18582,13 @@ "id": "2022-04-a-01-01-04-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21727,33 +18640,25 @@ "id": "2022-04-a-01-01-04-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-04-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21774,9 +18679,7 @@ "id": "2022-04-a-01-01-05-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21787,9 +18690,7 @@ "id": "2022-04-a-01-01-05-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21817,9 +18718,7 @@ "id": "2022-04-a-01-01-05-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-05-02-01-02", @@ -21851,17 +18750,13 @@ "id": "2022-04-a-01-01-05-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -21873,17 +18768,13 @@ "id": "2022-04-a-01-01-05-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -21935,33 +18826,25 @@ "id": "2022-04-a-01-01-05-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-05-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -21982,9 +18865,7 @@ "id": "2022-04-a-01-01-06-01", "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -21995,9 +18876,7 @@ "id": "2022-04-a-01-01-06-02-01-01", "label": "Briefly describe your goal as it relates to this objective.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "questions": [ @@ -22025,9 +18904,7 @@ "id": "2022-04-a-01-01-06-02-01-02-a", "label": "Why was this goal discontinued?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-04-a-01-01-06-02-01-02", @@ -22059,17 +18936,13 @@ "id": "2022-04-a-01-01-06-02-01-03", "label": "Which population are you measuring in the numerator?", "type": "text_medium", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-04", "label": "Numerator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the numerator you're measuring" @@ -22081,18 +18954,14 @@ "id": "2022-04-a-01-01-06-02-01-05", "label": "Which population are you measuring in the denominator?", "type": "text_medium", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: The total number of eligible children in the last federal fiscal year." }, { "id": "2022-04-a-01-01-06-02-01-06", "label": "Denominator (total number)", "type": "integer", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "label": "Define the denominator you're measuring" @@ -22144,33 +19013,25 @@ "id": "2022-04-a-01-01-06-02-01-09", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-10", "label": "What are you doing to continually make progress towards your goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-11", "label": "Anything else you'd like to tell us about this goal?", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2022-04-a-01-01-06-02-01-12", "label": "Do you have any supporting documentation?", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "Optional" } ], @@ -22199,33 +19060,25 @@ "id": "2022-04-a-02-01", "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-02", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-03", "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care equity, special health care needs, or other emerging health care needs.) What have you discovered through this research?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-04-a-02-04", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "hint": "For example: studies, analyses, or any other documents that address your performance goals." } ], @@ -22277,33 +19130,25 @@ "id": "2022-05-a-01-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-01" - }, + "fieldset_info": { "id": "2022-05-a-01-01" }, "label": "How much did you spend on Managed Care in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22318,33 +19163,25 @@ "id": "2022-05-a-01-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-02" - }, + "fieldset_info": { "id": "2022-05-a-01-02" }, "label": "How much did you spend on Fee for Service in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22359,33 +19196,25 @@ "id": "2022-05-a-01-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-03" - }, + "fieldset_info": { "id": "2022-05-a-01-03" }, "label": "How much did you spend on anything else related to benefit costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22400,33 +19229,25 @@ "id": "2022-05-a-01-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-01-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-01-04" - }, + "fieldset_info": { "id": "2022-05-a-01-04" }, "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22436,9 +19257,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -22459,9 +19278,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -22482,9 +19299,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -22528,9 +19343,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -22561,18 +19374,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 1: Benefits Costs", @@ -22597,33 +19402,25 @@ "id": "2022-05-a-02-01-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-01-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-01" - }, + "fieldset_info": { "id": "2022-05-a-02-01" }, "label": "How much did you spend on personnel in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -22639,33 +19436,25 @@ "id": "2022-05-a-02-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } }, { "id": "2022-05-a-02-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-02" - }, + "fieldset_info": { "id": "2022-05-a-02-02" }, "label": "How much did you spend on general administration in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22680,33 +19469,25 @@ "id": "2022-05-a-02-03-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-03-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-03" - }, + "fieldset_info": { "id": "2022-05-a-02-03" }, "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22721,33 +19502,25 @@ "id": "2022-05-a-02-04-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-04-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-04" - }, + "fieldset_info": { "id": "2022-05-a-02-04" }, "label": "How much did you spend on claims processing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22762,33 +19535,25 @@ "id": "2022-05-a-02-05-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-05-c", "label": "2024", "type": "money", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-05" - }, + "fieldset_info": { "id": "2022-05-a-02-05" }, "label": "How much did you spend on outreach and marketing in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22803,33 +19568,25 @@ "id": "2022-05-a-02-06-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-06-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-06" - }, + "fieldset_info": { "id": "2022-05-a-02-06" }, "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22844,33 +19601,25 @@ "id": "2022-05-a-02-07-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-02-07-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-02-07" - }, + "fieldset_info": { "id": "2022-05-a-02-07" }, "label": "How much did you spend on anything else related to administrative costs in FFY 2022? How much do you anticipate spending in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -22880,9 +19629,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -22903,9 +19650,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -22926,9 +19671,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -22949,9 +19692,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -22972,9 +19713,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -22995,9 +19734,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -23018,9 +19755,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -23041,9 +19776,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -23082,9 +19815,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "formula": "(<0> + <1> + <2> - <3>) / 9", "$comment": "This should equal the total benefit cost calculated above, then divided by 9", @@ -23121,18 +19852,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 2: Administrative Costs", @@ -23145,9 +19868,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", "$comment": "Total benefit costs 2022 + total admin costs 2022", @@ -23204,49 +19925,31 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2023" - } - ], + "targets": [{ "lookupFmapFy": "2023" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2024" - } - ], + "targets": [{ "lookupFmapFy": "2024" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23265,9 +19968,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23286,9 +19987,7 @@ "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs", "actions": ["formula"], "targets": [ - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23304,9 +20003,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", "$comment": "Total program costs - federal share", @@ -23323,9 +20020,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2022-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-a')].answer.entry", @@ -23355,9 +20050,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2023" - }, + { "lookupFmapFy": "2023" }, "$..*[?(@ && @.id=='2022-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-b')].answer.entry", @@ -23387,9 +20080,7 @@ "$..*[?(@ && @.id=='2022-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2024" - }, + { "lookupFmapFy": "2024" }, "$..*[?(@ && @.id=='2022-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2022-05-a-01-03-c')].answer.entry", @@ -23406,18 +20097,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "label": "Table 3: Federal and State Shares", @@ -23444,9 +20127,7 @@ "id": "2022-05-a-02-08-a", "label": "What other type of funding did you receive?", "type": "text", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-08", @@ -23478,10 +20159,7 @@ "value": "tobacco settlement", "label": "Tobacco settlement" }, - { - "value": "other", - "label": "Other" - } + { "value": "other", "label": "Other" } ], "entry": [null, "state appropriations"] }, @@ -23506,9 +20184,7 @@ "id": "2022-05-a-02-09-a", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", "type": "text_multiline", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-02-09", @@ -23516,14 +20192,8 @@ "type": "radio", "answer": { "options": [ - { - "value": "yes", - "label": "Yes" - }, - { - "value": "no", - "label": "No" - } + { "value": "yes", "label": "Yes" }, + { "value": "no", "label": "No" } ], "entry": null } @@ -23545,33 +20215,25 @@ "id": "2022-05-a-03-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-01" - }, + "fieldset_info": { "id": "2022-05-a-03-01" }, "label": "How many children were eligible for managed care in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23586,33 +20248,25 @@ "id": "2022-05-a-03-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-03-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-03-02" - }, + "fieldset_info": { "id": "2022-05-a-03-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23623,9 +20277,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23646,9 +20298,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23670,18 +20320,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23705,33 +20347,25 @@ "id": "2022-05-a-04-01-a", "label": "2022", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-b", "label": "2023", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-01-c", "label": "2024", "type": "integer", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-01" - }, + "fieldset_info": { "id": "2022-05-a-04-01" }, "label": "How many children were eligible for fee for service in FFY 2022? How many do you anticipate will be eligible in FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset" @@ -23746,33 +20380,25 @@ "id": "2022-05-a-04-02-a", "label": "2022", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-b", "label": "2023", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-04-02-c", "label": "2024", "type": "money", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2022-05-a-04-02" - }, + "fieldset_info": { "id": "2022-05-a-04-02" }, "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee for service in FFY 2022? What is your projected PMPM cost for FFY 2023 and 2024?", "fieldset_type": "marked", "type": "fieldset", @@ -23783,9 +20409,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -23806,9 +20430,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -23830,18 +20452,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2022" - }, - { - "contents": "FFY 2023" - }, - { - "contents": "FFY 2024" - } + { "contents": "" }, + { "contents": "FFY 2022" }, + { "contents": "FFY 2023" }, + { "contents": "FFY 2024" } ] }, "fieldset_type": "synthesized_table", @@ -23860,17 +20474,13 @@ "id": "2022-05-a-05-01", "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", "type": "text_multiline", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2022-05-a-05-02", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-05-a-05" @@ -23909,49 +20519,37 @@ "id": "2022-06-a-01-01", "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-02", "label": "What’s the greatest challenge your CHIP program has faced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-03", "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2022?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-04", "label": "What changes have you made to your CHIP program in FFY 2022 or plan to make in FFY 2023? Why have you decided to make these changes?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-05", "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", "type": "text_multiline", - "answer": { - "entry": "test" - } + "answer": { "entry": "test" } }, { "id": "2022-06-a-01-06", "label": "Optional: Attach any additional documents here.", "type": "file_upload", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "id": "2022-06-a-01" @@ -24040,25 +20638,19 @@ "id": "2021-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2021-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2021-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-00-a-01-07", @@ -24073,9 +20665,7 @@ "id": "2021-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -24124,14 +20714,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24139,9 +20723,7 @@ "id": "2021-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24165,14 +20747,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24186,14 +20762,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24230,9 +20800,7 @@ "id": "2021-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24272,14 +20840,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24317,9 +20879,7 @@ "id": "2021-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24340,9 +20900,7 @@ "id": "2021-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2021-01-a-01-05", @@ -24352,18 +20910,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24371,9 +20923,7 @@ "id": "2021-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24396,14 +20946,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24411,9 +20955,7 @@ "id": "2021-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24437,14 +20979,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24458,14 +20994,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -24507,9 +21037,7 @@ "id": "2021-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24549,14 +21077,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -24599,9 +21121,7 @@ "id": "2021-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -24634,18 +21154,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -24653,9 +21167,7 @@ "id": "2021-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -24676,18 +21188,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24701,18 +21204,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24727,18 +21221,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24753,18 +21238,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24778,18 +21254,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24804,23 +21271,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-03-07", @@ -24830,23 +21286,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-03-08", @@ -24856,23 +21301,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-03-09", @@ -24882,18 +21316,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24907,18 +21332,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24933,18 +21349,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -24959,23 +21366,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-03-13", @@ -24984,18 +21380,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25009,18 +21396,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25034,18 +21412,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25059,23 +21428,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25095,18 +21453,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -25165,18 +21514,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25190,18 +21530,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25216,18 +21547,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25242,18 +21564,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25267,18 +21580,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25293,23 +21597,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2021-01-a-04-07", @@ -25319,23 +21612,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2021-01-a-04-08", @@ -25345,23 +21627,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2021-01-a-04-09", @@ -25371,23 +21642,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2021-01-a-04-10", @@ -25396,18 +21656,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25421,18 +21672,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25447,18 +21689,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25473,23 +21706,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2021-01-a-04-14", @@ -25498,18 +21720,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25524,18 +21737,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25550,18 +21754,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25575,18 +21770,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25600,18 +21786,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -25625,23 +21802,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -25661,14 +21827,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -25796,9 +21956,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -25825,9 +21983,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -25854,9 +22010,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -25883,9 +22037,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -25912,9 +22064,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -25942,21 +22092,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -25977,9 +22119,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -25999,14 +22139,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26014,9 +22148,7 @@ "id": "2021-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26040,14 +22172,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26058,9 +22184,7 @@ "id": "2021-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-b", @@ -26075,49 +22199,37 @@ "id": "2021-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26140,17 +22252,13 @@ "id": "2021-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26190,14 +22298,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26232,14 +22334,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26247,9 +22343,7 @@ "id": "2021-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26279,17 +22373,13 @@ "id": "2021-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26312,18 +22402,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26331,9 +22412,7 @@ "id": "2021-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26357,18 +22436,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26376,9 +22446,7 @@ "id": "2021-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26399,9 +22467,7 @@ "id": "2021-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -26413,18 +22479,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26435,9 +22492,7 @@ "id": "2021-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26458,9 +22513,7 @@ "id": "2021-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26479,9 +22532,7 @@ "id": "2021-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26500,9 +22551,7 @@ "id": "2021-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -26532,17 +22581,13 @@ "id": "2021-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2021-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -26567,18 +22612,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -26589,17 +22625,13 @@ "id": "2021-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -26625,14 +22657,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -26643,14 +22669,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -26661,9 +22681,7 @@ "id": "2021-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-01-03-b", @@ -26718,9 +22736,7 @@ "id": "2021-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -26734,35 +22750,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2021-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2021-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2021-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -26770,9 +22778,7 @@ "id": "2021-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-03-c-02-05", @@ -26790,9 +22796,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-01')].answer.entry" @@ -26807,9 +22811,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-02')].answer.entry" @@ -26824,9 +22826,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-03')].answer.entry" @@ -26841,9 +22841,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2021-03-c-02-04')].answer.entry" @@ -26859,15 +22857,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -26884,34 +22876,26 @@ "id": "2021-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2021-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2021-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2021-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -26932,26 +22916,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2021-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2021-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -26959,9 +22937,7 @@ "id": "2021-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27023,15 +22999,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27113,15 +23083,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27138,34 +23102,26 @@ "id": "2021-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2021-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2021-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2021-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -27186,26 +23142,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2021-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2021-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -27213,9 +23163,7 @@ "id": "2021-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -27277,15 +23225,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27367,15 +23309,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -27420,14 +23356,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -27444,9 +23374,7 @@ "id": "2021-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27482,33 +23410,25 @@ "id": "2021-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2021-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2021-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2021-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -27526,9 +23446,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-03" - }, + "fieldset_info": { "id": "2021-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -27545,9 +23463,7 @@ "id": "2021-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27583,33 +23499,25 @@ "id": "2021-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2021-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2021-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2021-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -27627,9 +23535,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-04" - }, + "fieldset_info": { "id": "2021-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -27640,9 +23546,7 @@ "id": "2021-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27678,33 +23582,25 @@ "id": "2021-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27722,9 +23618,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-05" - }, + "fieldset_info": { "id": "2021-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -27735,9 +23629,7 @@ "id": "2021-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27773,33 +23665,25 @@ "id": "2021-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -27817,9 +23701,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-06" - }, + "fieldset_info": { "id": "2021-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -27831,9 +23713,7 @@ "id": "2021-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27869,33 +23749,25 @@ "id": "2021-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2021-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2021-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2021-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -27913,9 +23785,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-07" - }, + "fieldset_info": { "id": "2021-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -27926,9 +23796,7 @@ "id": "2021-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -27964,33 +23832,25 @@ "id": "2021-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2021-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -28008,18 +23868,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-08" - }, + "fieldset_info": { "id": "2021-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -28036,10 +23892,7 @@ "id": "2021-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28075,37 +23928,25 @@ "id": "2021-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28123,9 +23964,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-10" - }, + "fieldset_info": { "id": "2021-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -28136,110 +23975,90 @@ "id": "2021-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["yes", null], - "noninteractive": ["yes", null] - } - } - } - } - }, - { - "type": "fieldset", - "questions": [ - { - "type": "fieldset", - "label": "Total for all ages (0-16)", - "questions": [], - "fieldset_info": { - "actions": ["sum"], - "targets": [ - "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", - "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-03-c-05-11-b", - "type": "integer", - "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-c", - "type": "integer", - "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-d", - "type": "integer", - "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } - }, - { - "id": "2021-03-c-05-11-e", - "type": "integer", - "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } - } - ], - "context_data": { - "conditional_display": { - "type": "conditional_display", - "hide_if": { - "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", - "values": { - "interactive": ["no"], - "noninteractive": ["no", null] - } - } - } - }, - "fieldset_type": "datagrid" - } - ], - "fieldset_info": { - "id": "2021-03-c-05-11" - }, - "fieldset_type": "marked" - }, - { - "type": "fieldset", - "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", - "questions": [ - { - "id": "2021-03-c-05-12-a", - "type": "integer", - "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true + "answer": { "entry": null, "readonly": true }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + } + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2021-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2021-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null, "readonly": true } + }, + { + "id": "2021-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null, "readonly": true } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2021-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2021-03-c-05-11" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2021-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28275,37 +24094,25 @@ "id": "2021-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28323,9 +24130,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-12" - }, + "fieldset_info": { "id": "2021-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -28337,10 +24142,7 @@ "id": "2021-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28376,37 +24178,25 @@ "id": "2021-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28424,9 +24214,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-13" - }, + "fieldset_info": { "id": "2021-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -28437,10 +24225,7 @@ "id": "2021-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28476,37 +24261,25 @@ "id": "2021-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28524,9 +24297,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-14" - }, + "fieldset_info": { "id": "2021-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -28544,10 +24315,7 @@ "id": "2021-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28583,37 +24351,25 @@ "id": "2021-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28631,9 +24387,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-15" - }, + "fieldset_info": { "id": "2021-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -28644,10 +24398,7 @@ "id": "2021-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28683,37 +24434,25 @@ "id": "2021-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28731,9 +24470,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-16" - }, + "fieldset_info": { "id": "2021-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -28744,10 +24481,7 @@ "id": "2021-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28783,37 +24517,25 @@ "id": "2021-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28831,9 +24553,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-17" - }, + "fieldset_info": { "id": "2021-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -28845,10 +24565,7 @@ "id": "2021-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28884,37 +24601,25 @@ "id": "2021-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -28932,9 +24637,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-18" - }, + "fieldset_info": { "id": "2021-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -28945,10 +24648,7 @@ "id": "2021-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -28984,37 +24684,25 @@ "id": "2021-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29032,18 +24720,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-05-19" - }, + "fieldset_info": { "id": "2021-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -29085,14 +24769,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -29109,9 +24787,7 @@ "id": "2021-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29147,33 +24823,25 @@ "id": "2021-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2021-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2021-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2021-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -29191,9 +24859,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-03" - }, + "fieldset_info": { "id": "2021-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -29210,9 +24876,7 @@ "id": "2021-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29248,33 +24912,25 @@ "id": "2021-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2021-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2021-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2021-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -29292,9 +24948,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-04" - }, + "fieldset_info": { "id": "2021-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -29305,9 +24959,7 @@ "id": "2021-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29343,33 +24995,25 @@ "id": "2021-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -29387,9 +25031,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-05" - }, + "fieldset_info": { "id": "2021-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -29400,9 +25042,7 @@ "id": "2021-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29438,33 +25078,25 @@ "id": "2021-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2021-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2021-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2021-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -29482,9 +25114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-06" - }, + "fieldset_info": { "id": "2021-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -29496,9 +25126,7 @@ "id": "2021-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29534,33 +25162,25 @@ "id": "2021-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2021-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2021-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2021-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -29578,9 +25198,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-07" - }, + "fieldset_info": { "id": "2021-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -29591,9 +25209,7 @@ "id": "2021-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29629,33 +25245,25 @@ "id": "2021-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2021-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -29673,18 +25281,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-08" - }, + "fieldset_info": { "id": "2021-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -29701,10 +25305,7 @@ "id": "2021-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29740,37 +25341,25 @@ "id": "2021-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29788,9 +25377,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-10" - }, + "fieldset_info": { "id": "2021-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -29801,10 +25388,7 @@ "id": "2021-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29840,37 +25424,25 @@ "id": "2021-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29888,9 +25460,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-11" - }, + "fieldset_info": { "id": "2021-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -29901,10 +25471,7 @@ "id": "2021-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -29940,37 +25507,25 @@ "id": "2021-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -29988,9 +25543,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-12" - }, + "fieldset_info": { "id": "2021-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -30002,10 +25555,7 @@ "id": "2021-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30041,37 +25591,25 @@ "id": "2021-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30089,9 +25627,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-13" - }, + "fieldset_info": { "id": "2021-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -30102,10 +25638,7 @@ "id": "2021-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30141,37 +25674,25 @@ "id": "2021-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30189,9 +25710,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-14" - }, + "fieldset_info": { "id": "2021-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -30209,10 +25728,7 @@ "id": "2021-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30248,37 +25764,25 @@ "id": "2021-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30296,9 +25800,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-15" - }, + "fieldset_info": { "id": "2021-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -30309,10 +25811,7 @@ "id": "2021-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30348,37 +25847,25 @@ "id": "2021-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30396,9 +25883,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-16" - }, + "fieldset_info": { "id": "2021-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -30409,10 +25894,7 @@ "id": "2021-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30448,37 +25930,25 @@ "id": "2021-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30496,9 +25966,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-17" - }, + "fieldset_info": { "id": "2021-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -30510,10 +25978,7 @@ "id": "2021-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30549,37 +26014,25 @@ "id": "2021-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30597,9 +26050,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-18" - }, + "fieldset_info": { "id": "2021-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -30610,10 +26061,7 @@ "id": "2021-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30649,37 +26097,25 @@ "id": "2021-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2021-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -30697,18 +26133,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-c-06-19" - }, + "fieldset_info": { "id": "2021-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2021-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -30731,14 +26163,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -30760,18 +26186,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -30811,9 +26231,7 @@ "id": "2021-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30852,9 +26270,7 @@ "id": "2021-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-d-01-05", @@ -30863,14 +26279,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30878,9 +26288,7 @@ "id": "2021-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30904,14 +26312,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -30919,9 +26321,7 @@ "id": "2021-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -30966,17 +26366,13 @@ "id": "2021-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31019,14 +26415,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -31066,14 +26456,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31082,9 +26466,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-04", @@ -31094,18 +26476,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31117,18 +26490,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -31140,18 +26504,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31159,9 +26514,7 @@ "id": "2021-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31182,9 +26535,7 @@ "id": "2021-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -31193,25 +26544,19 @@ "id": "2021-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -31244,15 +26589,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -31312,41 +26651,31 @@ "id": "2021-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31383,14 +26712,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31401,14 +26724,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31419,14 +26736,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31445,18 +26756,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -31464,9 +26766,7 @@ "id": "2021-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31487,17 +26787,13 @@ "id": "2021-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2021-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -31506,17 +26802,13 @@ "id": "2021-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2021-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31527,17 +26819,13 @@ "id": "2021-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2021-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31548,17 +26836,13 @@ "id": "2021-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2021-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -31569,10 +26853,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -31587,14 +26868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31628,14 +26903,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -31643,9 +26912,7 @@ "id": "2021-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31666,17 +26933,13 @@ "id": "2021-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2021-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -31710,14 +26973,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -31729,9 +26986,7 @@ "id": "2021-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31769,49 +27024,37 @@ "id": "2021-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2021-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2021-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2021-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2021-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2021-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -31829,9 +27072,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-02" - }, + "fieldset_info": { "id": "2021-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -31842,9 +27083,7 @@ "id": "2021-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -31882,49 +27121,37 @@ "id": "2021-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2021-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2021-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2021-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2021-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2021-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -31942,9 +27169,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-03" - }, + "fieldset_info": { "id": "2021-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -31961,9 +27186,7 @@ "id": "2021-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32001,49 +27224,37 @@ "id": "2021-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2021-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2021-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2021-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2021-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2021-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -32061,9 +27272,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-04" - }, + "fieldset_info": { "id": "2021-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -32080,9 +27289,7 @@ "id": "2021-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32120,49 +27327,37 @@ "id": "2021-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2021-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2021-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2021-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2021-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2021-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -32180,9 +27375,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-03-g-01-05" - }, + "fieldset_info": { "id": "2021-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -32195,9 +27388,7 @@ "id": "2021-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -32212,14 +27403,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32230,18 +27415,14 @@ "id": "2021-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -32275,9 +27456,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -32303,17 +27482,13 @@ "id": "2021-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32340,14 +27515,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -32358,14 +27527,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -32397,9 +27560,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02", @@ -32412,18 +27573,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32435,17 +27590,13 @@ "id": "2021-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32480,18 +27631,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32503,9 +27645,7 @@ "id": "2021-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32532,18 +27672,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32551,9 +27685,7 @@ "id": "2021-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32582,14 +27714,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -32601,9 +27727,7 @@ "id": "2021-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32626,9 +27750,7 @@ "id": "2021-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -32700,10 +27822,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -32711,9 +27830,7 @@ "id": "2021-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -32751,14 +27868,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -32792,14 +27903,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -32846,9 +27951,7 @@ "id": "2021-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32867,9 +27970,7 @@ "id": "2021-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -32994,9 +28095,7 @@ "id": "2021-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33127,9 +28226,7 @@ "id": "2021-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33170,9 +28267,7 @@ "id": "2021-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -33193,9 +28288,7 @@ "id": "2021-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -33262,18 +28355,14 @@ "id": "2021-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33317,9 +28406,7 @@ "id": "2021-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33360,9 +28447,7 @@ "id": "2021-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -33383,9 +28468,7 @@ "id": "2021-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -33452,18 +28535,14 @@ "id": "2021-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33507,9 +28586,7 @@ "id": "2021-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33550,9 +28627,7 @@ "id": "2021-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -33573,9 +28648,7 @@ "id": "2021-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -33642,18 +28715,14 @@ "id": "2021-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -33671,9 +28740,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2021-04-a-01-01-02-02", @@ -33719,9 +28786,7 @@ "id": "2021-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33762,9 +28827,7 @@ "id": "2021-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -33785,9 +28848,7 @@ "id": "2021-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -33854,18 +28915,14 @@ "id": "2021-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -33909,9 +28966,7 @@ "id": "2021-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -33952,9 +29007,7 @@ "id": "2021-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -33975,9 +29028,7 @@ "id": "2021-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -34044,18 +29095,14 @@ "id": "2021-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34099,9 +29146,7 @@ "id": "2021-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34142,9 +29187,7 @@ "id": "2021-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -34165,9 +29208,7 @@ "id": "2021-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -34234,18 +29275,14 @@ "id": "2021-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34289,205 +29326,193 @@ "id": "2021-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-03", + "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { + "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": "53395" } + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-04-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", "answer": { - "entry": null + "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": "66741" } + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", + "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2021-04-a-01-01-02-02-04-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": ["2019-10-01", "2021-09-01"], + "labels": ["Start", "End"] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": "goal_survey_data", + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2021-04-a-01-01-02-02-04-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { + "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { + "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." + } + }, + { + "id": "2021-04-a-01-01-02-02-04-11", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": "No." } + }, + { + "id": "2021-04-a-01-01-02-02-04-12", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + }, + { + "id": "2021-04-a-01-01-02-02-05", + "type": "repeatable", + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", + "type": "text_multiline", + "label": "Briefly describe your goal for this objective.", + "answer": { + "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " + } + }, + { + "id": "2021-04-a-01-01-02-02-05-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": "goal_new", + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2021-04-a-01-01-02-02-05-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-02')].answer.entry", - "values": { - "interactive": [ - null, - "goal_continuing", - "goal_new" - ], - "noninteractive": [ - "goal_continuing", - "goal_new" - ] - } - } - } - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the numerator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-03", - "hint": "For example: The number of children enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": "The number of enrollees that have at least one dentist within 25 miles of enrollees with a rural residence." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-04", - "type": "integer", - "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } - } - ] - }, - { - "type": "fieldset", - "label": "Define the denominator you're measuring", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-04-05", - "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", - "type": "text_medium", - "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": "The number of ALL Kids enrollees with a residence verified within a rural area." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-06", - "type": "integer", - "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } - } - ] - }, - { - "type": "fieldset", - "questions": [], - "fieldset_info": { - "actions": ["percentage"], - "targets": [ - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-04')].answer.entry", - "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-04-06')].answer.entry" - ] - }, - "fieldset_type": "synthesized_value" - }, - { - "id": "2021-04-a-01-01-02-02-04-07", - "type": "daterange", - "label": "What is the date range of your data?", - "answer": { - "entry": ["2019-10-01", "2021-09-01"], - "labels": ["Start", "End"] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-08", - "type": "radio", - "label": "Which data source did you use?", - "answer": { - "entry": "goal_survey_data", - "options": [ - { - "label": "Eligibility or enrollment data", - "value": "goal_enrollment_data" - }, - { - "label": "Survey data", - "value": "goal_survey_data" - }, - { - "label": "Another data source", - "value": "goal_other_data" - } - ] - } - }, - { - "id": "2021-04-a-01-01-02-02-04-09", - "type": "text_multiline", - "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "The percent of enrollees that have access to at least one dentist and lived in a rural area during FY 2020 decreased from 99.7 in FY19 to 80% in FY20." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-10", - "type": "text_multiline", - "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": "Monthly meetings with BCBS AL staff provide ALL Kids with the opportunity to address provider issues when needed." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-11", - "type": "text_multiline", - "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } - }, - { - "id": "2021-04-a-01-01-02-02-04-12", - "hint": "Optional", - "type": "file_upload", - "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } - } - ] - }, - { - "id": "2021-04-a-01-01-02-02-05", - "type": "repeatable", - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-01", - "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5%.", - "type": "text_multiline", - "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": "Children Access to Primary Care Physicians - At least 90% of children and adolescents who had a primary care physician visit annually, with no more than one gap in enrollment. " - } - }, - { - "id": "2021-04-a-01-01-02-02-05-02", - "type": "radio", - "label": "What type of goal is it?", - "answer": { - "entry": "goal_new", - "options": [ - { - "label": "New goal", - "value": "goal_new" - }, - { - "label": "Continuing goal", - "value": "goal_continuing" - }, - { - "label": "Discontinued goal", - "value": "goal_discontinued" - } - ], - "default_entry": "goal_new" - }, - "questions": [ - { - "id": "2021-04-a-01-01-02-02-05-02-a", - "type": "text_multiline", - "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, - "context_data": { - "conditional_display": { - "type": "conditional_display", - "comment": "Interactive: Hide if 2021-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", - "hide_if": { - "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", + "target": "$..*[?(@ && @.id=='2021-04-a-01-01-02-02-05-02')].answer.entry", "values": { "interactive": [ null, @@ -34522,9 +29547,7 @@ "id": "2021-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -34545,9 +29568,7 @@ "id": "2021-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -34598,9 +29619,7 @@ "id": "2021-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2021-04-a-01-01-02-02-05-10", @@ -34614,18 +29633,14 @@ "id": "2021-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -34691,9 +29706,7 @@ "id": "2021-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34734,9 +29747,7 @@ "id": "2021-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -34757,9 +29768,7 @@ "id": "2021-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -34810,9 +29819,7 @@ "id": "2021-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2021-04-a-01-01-03-02-01-10", @@ -34826,18 +29833,14 @@ "id": "2021-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -34881,9 +29884,7 @@ "id": "2021-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -34924,9 +29925,7 @@ "id": "2021-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -34947,9 +29946,7 @@ "id": "2021-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -35016,18 +30013,14 @@ "id": "2021-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35071,9 +30064,7 @@ "id": "2021-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35114,9 +30105,7 @@ "id": "2021-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -35137,9 +30126,7 @@ "id": "2021-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -35206,18 +30193,14 @@ "id": "2021-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35234,9 +30217,7 @@ "id": "2021-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02", @@ -35250,9 +30231,7 @@ "id": "2021-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-02", @@ -35281,9 +30260,7 @@ "id": "2021-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35315,17 +30292,13 @@ "id": "2021-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35337,17 +30310,13 @@ "id": "2021-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35398,34 +30367,26 @@ "id": "2021-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35442,9 +30403,7 @@ "id": "2021-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02", @@ -35458,9 +30417,7 @@ "id": "2021-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-02", @@ -35489,9 +30446,7 @@ "id": "2021-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35523,17 +30478,13 @@ "id": "2021-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35545,17 +30496,13 @@ "id": "2021-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35606,34 +30553,26 @@ "id": "2021-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35650,9 +30589,7 @@ "id": "2021-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02", @@ -35666,9 +30603,7 @@ "id": "2021-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-02", @@ -35697,9 +30632,7 @@ "id": "2021-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -35731,17 +30664,13 @@ "id": "2021-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35754,17 +30683,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -35815,34 +30740,26 @@ "id": "2021-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35872,9 +30789,7 @@ "id": "2021-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2021-04-a-02-03", @@ -35889,9 +30804,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -35946,34 +30859,26 @@ "id": "2021-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-01" - }, + "fieldset_info": { "id": "2021-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -35987,34 +30892,26 @@ "id": "2021-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2021-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-02" - }, + "fieldset_info": { "id": "2021-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -36028,34 +30925,26 @@ "id": "2021-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-03" - }, + "fieldset_info": { "id": "2021-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -36069,34 +30958,26 @@ "id": "2021-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2021-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-01-04" - }, + "fieldset_info": { "id": "2021-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -36107,9 +30988,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -36130,9 +31009,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -36153,9 +31030,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -36199,9 +31074,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -36232,18 +31105,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36268,34 +31133,26 @@ "id": "2021-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2021-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-01" - }, + "fieldset_info": { "id": "2021-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -36309,34 +31166,26 @@ "id": "2021-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2021-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-02" - }, + "fieldset_info": { "id": "2021-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -36350,34 +31199,26 @@ "id": "2021-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-03" - }, + "fieldset_info": { "id": "2021-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -36391,34 +31232,26 @@ "id": "2021-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2021-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-04" - }, + "fieldset_info": { "id": "2021-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -36432,34 +31265,26 @@ "id": "2021-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2021-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-05" - }, + "fieldset_info": { "id": "2021-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -36473,34 +31298,26 @@ "id": "2021-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2021-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-06" - }, + "fieldset_info": { "id": "2021-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -36514,34 +31331,26 @@ "id": "2021-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2021-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-02-07" - }, + "fieldset_info": { "id": "2021-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -36552,9 +31361,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -36575,9 +31382,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -36598,9 +31403,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -36621,9 +31424,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -36644,9 +31445,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -36667,9 +31466,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -36690,9 +31487,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -36713,9 +31508,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -36754,9 +31547,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -36793,18 +31584,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -36817,9 +31600,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -36876,48 +31657,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -36936,9 +31699,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -36957,9 +31718,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -36976,9 +31735,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -36994,9 +31751,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2021-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-a')].answer.entry", @@ -37026,9 +31781,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2021-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-b')].answer.entry", @@ -37058,9 +31811,7 @@ "$..*[?(@ && @.id=='2021-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2021-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2021-05-a-01-03-c')].answer.entry", @@ -37078,18 +31829,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37130,10 +31873,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -37141,9 +31881,7 @@ "id": "2021-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37167,14 +31905,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37182,9 +31914,7 @@ "id": "2021-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37220,34 +31950,26 @@ "id": "2021-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2021-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-01" - }, + "fieldset_info": { "id": "2021-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -37262,34 +31984,26 @@ "id": "2021-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2021-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-03-02" - }, + "fieldset_info": { "id": "2021-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -37298,9 +32012,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37321,9 +32033,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37345,18 +32055,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37380,34 +32082,26 @@ "id": "2021-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2021-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-01" - }, + "fieldset_info": { "id": "2021-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -37422,34 +32116,26 @@ "id": "2021-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2021-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2021-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2021-05-a-04-02" - }, + "fieldset_info": { "id": "2021-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -37458,9 +32144,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -37481,9 +32165,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -37505,18 +32187,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -37539,9 +32213,7 @@ "id": "2021-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37618,9 +32290,7 @@ "id": "2021-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -37707,25 +32377,19 @@ "id": "2020-00-a-01-04", "type": "text", "label": "Contact name:", - "answer": { - "entry": "Tester" - } + "answer": { "entry": "Tester" } }, { "id": "2020-00-a-01-05", "type": "text", "label": "Job title:", - "answer": { - "entry": "Director" - } + "answer": { "entry": "Director" } }, { "id": "2020-00-a-01-06", "type": "email", "label": "Email:", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-00-a-01-07", @@ -37740,9 +32404,7 @@ "id": "2020-00-a-01-08", "type": "phone_number", "label": "Phone number:", - "answer": { - "entry": "123-456-7890" - } + "answer": { "entry": "123-456-7890" } }, { "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather the data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", @@ -37791,14 +32453,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37806,9 +32462,7 @@ "id": "2020-01-a-01-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37832,14 +32486,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37853,14 +32501,8 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -37897,9 +32539,7 @@ "id": "2020-01-a-01-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -37939,14 +32579,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -37984,9 +32618,7 @@ "id": "2020-01-a-01-03-b", "type": "money", "label": "What's the maximum premium a family would be charged each year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38007,9 +32639,7 @@ "id": "2020-01-a-01-04", "type": "text_multiline", "label": "Do premiums differ for different Medicaid Expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } }, { "id": "2020-01-a-01-05", @@ -38019,18 +32649,12 @@ "answer": { "entry": [null, "pccm"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38038,9 +32662,7 @@ "id": "2020-01-a-01-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which Medicaid Expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38063,14 +32685,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38078,9 +32694,7 @@ "id": "2020-01-a-02-01-a", "type": "money", "label": "How much is your enrollment fee?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38104,14 +32718,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38125,14 +32733,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -38174,9 +32776,7 @@ "id": "2020-01-a-02-02-c", "type": "money", "label": "How much is the premium for one child?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38216,14 +32816,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -38266,9 +32860,7 @@ "id": "2020-01-a-02-03-b", "type": "money", "label": "What's the maximum premium fee a family would be charged each year?", - "answer": { - "entry": "312" - }, + "answer": { "entry": "312" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -38301,18 +32893,12 @@ "answer": { "entry": [null, "ffs"], "options": [ - { - "label": "Managed Care", - "value": "mco" - }, + { "label": "Managed Care", "value": "mco" }, { "label": "Primary Care Case Management", "value": "pccm" }, - { - "label": "Fee for Service", - "value": "ffs" - } + { "label": "Fee for Service", "value": "ffs" } ] } }, @@ -38320,9 +32906,7 @@ "id": "2020-01-a-02-06", "type": "text_multiline", "label": "Which delivery system(s) are available to which CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", - "answer": { - "entry": "N/A" - } + "answer": { "entry": "N/A" } } ], "context_data": { @@ -38343,18 +32927,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38368,18 +32943,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38394,18 +32960,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38420,18 +32977,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38445,18 +32993,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38471,23 +33010,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-03-07", @@ -38497,23 +33025,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-03-08", @@ -38523,23 +33040,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-03-09", @@ -38549,18 +33055,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38574,18 +33071,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38600,18 +33088,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38626,23 +33105,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-03-13", @@ -38651,18 +33119,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38676,18 +33135,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38701,18 +33151,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38726,23 +33167,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -38762,18 +33192,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] } } @@ -38832,18 +33253,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38857,18 +33269,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38883,18 +33286,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38909,18 +33303,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38934,18 +33319,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -38960,23 +33336,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Outreach efforts" - } + "context_data": { "bullet_text": "Outreach efforts" } }, { "id": "2020-01-a-04-07", @@ -38986,23 +33351,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Delivery system(s)" - } + "context_data": { "bullet_text": "Delivery system(s)" } }, { "id": "2020-01-a-04-08", @@ -39012,23 +33366,12 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Cost sharing" - } + "context_data": { "bullet_text": "Cost sharing" } }, { "id": "2020-01-a-04-09", @@ -39038,23 +33381,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Crowd-out policies" - } + "context_data": { "bullet_text": "Crowd-out policies" } }, { "id": "2020-01-a-04-10", @@ -39063,18 +33395,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39088,18 +33411,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39114,18 +33428,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39140,23 +33445,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Premium assistance" - } + "context_data": { "bullet_text": "Premium assistance" } }, { "id": "2020-01-a-04-14", @@ -39165,18 +33459,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39191,18 +33476,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39217,18 +33493,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39242,18 +33509,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39267,18 +33525,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, "context_data": { @@ -39292,23 +33541,12 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "n/a" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "n/a" } ] }, - "context_data": { - "bullet_text": "Other program areas" - } + "context_data": { "bullet_text": "Other program areas" } }, { "type": "fieldset", @@ -39328,14 +33566,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -39463,9 +33695,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "2015" - }, + { "contents": "2015" }, { "lookupAcs": { "ffy": "2015", @@ -39492,9 +33722,7 @@ } ], [ - { - "contents": "2016" - }, + { "contents": "2016" }, { "lookupAcs": { "ffy": "2016", @@ -39521,9 +33749,7 @@ } ], [ - { - "contents": "2017" - }, + { "contents": "2017" }, { "lookupAcs": { "ffy": "2017", @@ -39550,9 +33776,7 @@ } ], [ - { - "contents": "2018" - }, + { "contents": "2018" }, { "lookupAcs": { "ffy": "2018", @@ -39579,9 +33803,7 @@ } ], [ - { - "contents": "2019" - }, + { "contents": "2019" }, { "lookupAcs": { "ffy": "2019", @@ -39609,21 +33831,13 @@ ] ], "headers": [ - { - "contents": "Year" - }, - { - "contents": "Number of uninsured children" - }, - { - "contents": "Margin of error" - }, + { "contents": "Year" }, + { "contents": "Number of uninsured children" }, + { "contents": "Margin of error" }, { "contents": "Percent of uninsured children (of total children in your state)" }, - { - "contents": "Margin of error" - } + { "contents": "Margin of error" } ] }, "fieldset_type": "synthesized_table" @@ -39644,9 +33858,7 @@ ] ], "headers": [ - { - "contents": "Percent change between 2018 and 2019" - } + { "contents": "Percent change between 2018 and 2019" } ] }, "fieldset_type": "synthesized_table" @@ -39666,14 +33878,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39681,9 +33887,7 @@ "id": "2020-02-a-02-02-a", "type": "text_multiline", "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39707,14 +33911,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39725,9 +33923,7 @@ "id": "2020-02-a-02-03-a", "type": "text_multiline", "label": "What is the alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-b", @@ -39742,49 +33938,37 @@ "id": "2020-02-a-02-03-c", "type": "text_multiline", "label": "Define the population you’re measuring, including ages and federal poverty levels.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-d", "type": "text_multiline", "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-e", "type": "text_multiline", "label": "Why did your state choose to adopt this alternate data source?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-f", "type": "text_multiline", "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-g", "type": "text_multiline", "label": "What are the limitations of this alternate data source or methodology?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-02-a-02-03-h", "type": "text_multiline", "label": "How do you use this alternate data source in CHIP program planning?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -39807,17 +33991,13 @@ "id": "2020-02-a-02-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-02-a-02-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39857,14 +34037,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39899,14 +34073,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -39914,9 +34082,7 @@ "id": "2020-03-a-01-02-a", "type": "text_multiline", "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -39946,17 +34112,13 @@ "id": "2020-03-a-01-04", "type": "text_multiline", "label": "Is there anything else you’d like to add about your outreach efforts?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-a-01-05", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -39979,18 +34141,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -39998,9 +34151,7 @@ "id": "2020-03-b-01-01-a", "type": "text_multiline", "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40024,18 +34175,9 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40043,9 +34185,7 @@ "id": "2020-03-b-01-02-a", "type": "text_multiline", "label": "Which database do you use?", - "answer": { - "entry": "BCBS of AL enrollment database" - }, + "answer": { "entry": "BCBS of AL enrollment database" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40066,9 +34206,7 @@ "id": "2020-03-b-01-03", "type": "percentage", "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", - "answer": { - "entry": "4.11" - } + "answer": { "entry": "4.11" } }, { "type": "fieldset", @@ -40080,18 +34218,9 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40102,9 +34231,7 @@ "id": "2020-03-b-01-04-a", "type": "text_multiline", "label": "How long is the waiting period?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40125,9 +34252,7 @@ "id": "2020-03-b-01-04-b", "type": "text_multiline", "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40146,9 +34271,7 @@ "id": "2020-03-b-01-04-c", "type": "text_multiline", "label": "What exemptions apply to the waiting period?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40167,9 +34290,7 @@ "id": "2020-03-b-01-04-d", "type": "text_multiline", "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -40199,17 +34320,13 @@ "id": "2020-03-b-01-05", "type": "text_multiline", "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting data?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } }, { "id": "2020-03-b-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -40234,18 +34351,9 @@ "answer": { "entry": "", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -40256,17 +34364,13 @@ "id": "2020-03-c-01-01-a", "type": "percentage", "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-c-01-01-b", "type": "percentage", "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -40292,14 +34396,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -40310,14 +34408,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -40328,9 +34420,7 @@ "id": "2020-03-c-01-03-a", "type": "text", "label": "How many notices do you send to families before disenrolling a child from the program?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-01-03-b", @@ -40385,9 +34475,7 @@ "id": "2020-03-c-01-07", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No. " - } + "answer": { "entry": "No. " } } ] }, @@ -40401,35 +34489,27 @@ "hint": "Don’t include applicants being considered for redetermination — this data will be collected in Part 3.", "type": "integer", "label": "How many applicants were denied CHIP coverage in FFY 2020?", - "answer": { - "entry": "4283" - } + "answer": { "entry": "4283" } }, { "id": "2020-03-c-02-02", "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many applicants were denied CHIP coverage for procedural reasons?", - "answer": { - "entry": "500" - } + "answer": { "entry": "500" } }, { "id": "2020-03-c-02-03", "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", "type": "integer", "label": "How many applicants were denied CHIP coverage for eligibility reasons?", - "answer": { - "entry": "3484" - }, + "answer": { "entry": "3484" }, "questions": [ { "id": "2020-03-c-02-03-a", "type": "integer", "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", - "answer": { - "entry": "299" - } + "answer": { "entry": "299" } } ] }, @@ -40437,9 +34517,7 @@ "id": "2020-03-c-02-04", "type": "integer", "label": "How many applicants were denied CHIP coverage for other reasons?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-03-c-02-05", @@ -40457,9 +34535,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total denials" - }, + { "contents": "Total denials" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-01')].answer.entry" @@ -40474,9 +34550,7 @@ } ], [ - { - "contents": "Denied for procedural reasons" - }, + { "contents": "Denied for procedural reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-02')].answer.entry" @@ -40491,9 +34565,7 @@ } ], [ - { - "contents": "Denied for eligibility reasons" - }, + { "contents": "Denied for eligibility reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-03')].answer.entry" @@ -40508,9 +34580,7 @@ } ], [ - { - "contents": "Denials for other reasons" - }, + { "contents": "Denials for other reasons" }, { "targets": [ "$..*[?(@ && @.id=='2020-03-c-02-04')].answer.entry" @@ -40526,15 +34596,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40551,34 +34615,26 @@ "id": "2020-03-c-03-01", "type": "integer", "label": "How many children were eligible for redetermination in CHIP in FFY 2020?", - "answer": { - "entry": "145390" - } + "answer": { "entry": "145390" } }, { "id": "2020-03-c-03-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "131011" - } + "answer": { "entry": "131011" } }, { "id": "2020-03-c-03-03", "type": "integer", "label": "How many children were retained in CHIP after redetermination?", - "answer": { - "entry": "113009" - } + "answer": { "entry": "113009" } }, { "id": "2020-03-c-03-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in CHIP after the redetermination process?", - "answer": { - "entry": "17989" - }, + "answer": { "entry": "17989" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40599,26 +34655,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "id": "2020-03-c-03-04-b", "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "15242" - } + "answer": { "entry": "15242" } }, { "id": "2020-03-c-03-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "854" - } + "answer": { "entry": "854" } } ] }, @@ -40626,9 +34676,7 @@ "id": "2020-03-c-03-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40690,15 +34738,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40780,15 +34822,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -40805,34 +34841,26 @@ "id": "2020-03-c-04-01", "type": "integer", "label": "How many children were eligible for redetermination in Medicaid in FFY 2020?", - "answer": { - "entry": "463373" - } + "answer": { "entry": "463373" } }, { "id": "2020-03-c-04-02", "type": "integer", "label": "Of the eligible children, how many were then screened for redetermination?", - "answer": { - "entry": "438232" - } + "answer": { "entry": "438232" } }, { "id": "2020-03-c-04-03", "type": "integer", "label": "How many children were retained in Medicaid after redetermination?", - "answer": { - "entry": "413500" - } + "answer": { "entry": "413500" } }, { "id": "2020-03-c-04-04", "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", "type": "integer", "label": "How many children were disenrolled in Medicaid after the redetermination process?", - "answer": { - "entry": "24718" - }, + "answer": { "entry": "24718" }, "questions": [ { "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", @@ -40853,26 +34881,20 @@ "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", "type": "integer", "label": "How many children were disenrolled for procedural reasons?", - "answer": { - "entry": "559" - } + "answer": { "entry": "559" } }, { "id": "2020-03-c-04-04-b", "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", "type": "integer", "label": "How many children were disenrolled for eligibility reasons?", - "answer": { - "entry": "23489" - } + "answer": { "entry": "23489" } }, { "id": "2020-03-c-04-04-c", "type": "integer", "label": "How many children were disenrolled for other reasons?", - "answer": { - "entry": "670" - } + "answer": { "entry": "670" } } ] }, @@ -40880,9 +34902,7 @@ "id": "2020-03-c-04-05", "type": "text_multiline", "label": "Did you have any limitations in collecting this data?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "hint": "These tables are auto-populated with the data you entered above.", @@ -40944,15 +34964,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41034,15 +35048,9 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "Number" - }, - { - "contents": "Percent" - } + { "contents": "" }, + { "contents": "Number" }, + { "contents": "Percent" } ] }, "fieldset_type": "synthesized_table" @@ -41087,14 +35095,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -41111,9 +35113,7 @@ "id": "2020-03-c-05-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41149,33 +35149,25 @@ "id": "2020-03-c-05-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "919" - } + "answer": { "entry": "919" } }, { "id": "2020-03-c-05-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "2265" - } + "answer": { "entry": "2265" } }, { "id": "2020-03-c-05-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5710" - } + "answer": { "entry": "5710" } }, { "id": "2020-03-c-05-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4958" - } + "answer": { "entry": "4958" } } ], "context_data": { @@ -41193,9 +35185,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-03" - }, + "fieldset_info": { "id": "2020-03-c-05-03" }, "fieldset_type": "marked" }, { @@ -41212,9 +35202,7 @@ "id": "2020-03-c-05-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41250,33 +35238,25 @@ "id": "2020-03-c-05-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "909" - } + "answer": { "entry": "909" } }, { "id": "2020-03-c-05-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "22213" - } + "answer": { "entry": "22213" } }, { "id": "2020-03-c-05-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "5451" - } + "answer": { "entry": "5451" } }, { "id": "2020-03-c-05-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4445" - } + "answer": { "entry": "4445" } } ], "context_data": { @@ -41294,9 +35274,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-04" - }, + "fieldset_info": { "id": "2020-03-c-05-04" }, "fieldset_type": "marked" }, { @@ -41307,9 +35285,7 @@ "id": "2020-03-c-05-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41345,33 +35321,25 @@ "id": "2020-03-c-05-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41389,9 +35357,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-05" - }, + "fieldset_info": { "id": "2020-03-c-05-05" }, "fieldset_type": "marked" }, { @@ -41402,9 +35368,7 @@ "id": "2020-03-c-05-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41440,33 +35404,25 @@ "id": "2020-03-c-05-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-c-05-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } } ], "context_data": { @@ -41484,9 +35440,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-06" - }, + "fieldset_info": { "id": "2020-03-c-05-06" }, "fieldset_type": "marked" }, { @@ -41498,9 +35452,7 @@ "id": "2020-03-c-05-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41536,33 +35488,25 @@ "id": "2020-03-c-05-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "10" - } + "answer": { "entry": "10" } }, { "id": "2020-03-c-05-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "44" - } + "answer": { "entry": "44" } }, { "id": "2020-03-c-05-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "257" - } + "answer": { "entry": "257" } }, { "id": "2020-03-c-05-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "510" - } + "answer": { "entry": "510" } } ], "context_data": { @@ -41580,9 +35524,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-07" - }, + "fieldset_info": { "id": "2020-03-c-05-07" }, "fieldset_type": "marked" }, { @@ -41593,9 +35535,7 @@ "id": "2020-03-c-05-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41631,33 +35571,25 @@ "id": "2020-03-c-05-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-c-05-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "145" - } + "answer": { "entry": "145" } }, { "id": "2020-03-c-05-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "447" - } + "answer": { "entry": "447" } } ], "context_data": { @@ -41675,18 +35607,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-08" - }, + "fieldset_info": { "id": "2020-03-c-05-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -41703,10 +35631,7 @@ "id": "2020-03-c-05-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41742,37 +35667,25 @@ "id": "2020-03-c-05-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41790,9 +35703,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-10" - }, + "fieldset_info": { "id": "2020-03-c-05-10" }, "fieldset_type": "marked" }, { @@ -41803,10 +35714,7 @@ "id": "2020-03-c-05-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41842,37 +35750,25 @@ "id": "2020-03-c-05-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41890,9 +35786,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-11" - }, + "fieldset_info": { "id": "2020-03-c-05-11" }, "fieldset_type": "marked" }, { @@ -41903,10 +35797,7 @@ "id": "2020-03-c-05-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -41942,37 +35833,25 @@ "id": "2020-03-c-05-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -41990,9 +35869,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-12" - }, + "fieldset_info": { "id": "2020-03-c-05-12" }, "fieldset_type": "marked" }, { @@ -42004,10 +35881,7 @@ "id": "2020-03-c-05-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42043,37 +35917,25 @@ "id": "2020-03-c-05-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42091,9 +35953,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-13" - }, + "fieldset_info": { "id": "2020-03-c-05-13" }, "fieldset_type": "marked" }, { @@ -42104,10 +35964,7 @@ "id": "2020-03-c-05-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42143,37 +36000,25 @@ "id": "2020-03-c-05-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42191,9 +36036,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-14" - }, + "fieldset_info": { "id": "2020-03-c-05-14" }, "fieldset_type": "marked" }, { @@ -42211,10 +36054,7 @@ "id": "2020-03-c-05-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42250,37 +36090,25 @@ "id": "2020-03-c-05-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42298,9 +36126,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-15" - }, + "fieldset_info": { "id": "2020-03-c-05-15" }, "fieldset_type": "marked" }, { @@ -42311,10 +36137,7 @@ "id": "2020-03-c-05-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42350,37 +36173,25 @@ "id": "2020-03-c-05-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42398,9 +36209,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-16" - }, + "fieldset_info": { "id": "2020-03-c-05-16" }, "fieldset_type": "marked" }, { @@ -42411,10 +36220,7 @@ "id": "2020-03-c-05-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42450,37 +36256,25 @@ "id": "2020-03-c-05-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42498,9 +36292,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-17" - }, + "fieldset_info": { "id": "2020-03-c-05-17" }, "fieldset_type": "marked" }, { @@ -42512,10 +36304,7 @@ "id": "2020-03-c-05-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42551,37 +36340,25 @@ "id": "2020-03-c-05-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42599,9 +36376,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-18" - }, + "fieldset_info": { "id": "2020-03-c-05-18" }, "fieldset_type": "marked" }, { @@ -42612,10 +36387,7 @@ "id": "2020-03-c-05-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42651,37 +36423,25 @@ "id": "2020-03-c-05-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-05-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -42699,18 +36459,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-05-19" - }, + "fieldset_info": { "id": "2020-03-c-05-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-05-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -42752,14 +36508,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -42776,9 +36526,7 @@ "id": "2020-03-c-06-03-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42814,33 +36562,25 @@ "id": "2020-03-c-06-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "127630" - } + "answer": { "entry": "127630" } }, { "id": "2020-03-c-06-03-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "7311" - } + "answer": { "entry": "7311" } }, { "id": "2020-03-c-06-03-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9418" - } + "answer": { "entry": "9418" } }, { "id": "2020-03-c-06-03-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "4527" - } + "answer": { "entry": "4527" } } ], "context_data": { @@ -42858,9 +36598,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-03" - }, + "fieldset_info": { "id": "2020-03-c-06-03" }, "fieldset_type": "marked" }, { @@ -42877,9 +36615,7 @@ "id": "2020-03-c-06-04-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -42915,33 +36651,25 @@ "id": "2020-03-c-06-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12237" - } + "answer": { "entry": "12237" } }, { "id": "2020-03-c-06-04-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "70464" - } + "answer": { "entry": "70464" } }, { "id": "2020-03-c-06-04-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "9159" - } + "answer": { "entry": "9159" } }, { "id": "2020-03-c-06-04-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "3821" - } + "answer": { "entry": "3821" } } ], "context_data": { @@ -42959,9 +36687,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-04" - }, + "fieldset_info": { "id": "2020-03-c-06-04" }, "fieldset_type": "marked" }, { @@ -42972,9 +36698,7 @@ "id": "2020-03-c-06-05-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43010,33 +36734,25 @@ "id": "2020-03-c-06-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-05-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-05-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-05-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } } ], "context_data": { @@ -43054,9 +36770,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-05" - }, + "fieldset_info": { "id": "2020-03-c-06-05" }, "fieldset_type": "marked" }, { @@ -43067,9 +36781,7 @@ "id": "2020-03-c-06-06-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43105,33 +36817,25 @@ "id": "2020-03-c-06-06-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "87" - } + "answer": { "entry": "87" } }, { "id": "2020-03-c-06-06-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "36" - } + "answer": { "entry": "36" } }, { "id": "2020-03-c-06-06-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "23" - } + "answer": { "entry": "23" } }, { "id": "2020-03-c-06-06-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "88" - } + "answer": { "entry": "88" } } ], "context_data": { @@ -43149,9 +36853,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-06" - }, + "fieldset_info": { "id": "2020-03-c-06-06" }, "fieldset_type": "marked" }, { @@ -43163,9 +36865,7 @@ "id": "2020-03-c-06-07-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43201,33 +36901,25 @@ "id": "2020-03-c-06-07-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "439" - } + "answer": { "entry": "439" } }, { "id": "2020-03-c-06-07-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "229" - } + "answer": { "entry": "229" } }, { "id": "2020-03-c-06-07-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "236" - } + "answer": { "entry": "236" } }, { "id": "2020-03-c-06-07-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "698" - } + "answer": { "entry": "698" } } ], "context_data": { @@ -43245,9 +36937,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-07" - }, + "fieldset_info": { "id": "2020-03-c-06-07" }, "fieldset_type": "marked" }, { @@ -43258,9 +36948,7 @@ "id": "2020-03-c-06-08-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43296,33 +36984,25 @@ "id": "2020-03-c-06-08-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-c-06-08-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-c-06-08-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": "46" - } + "answer": { "entry": "46" } }, { "id": "2020-03-c-06-08-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": "55" - } + "answer": { "entry": "55" } } ], "context_data": { @@ -43340,18 +37020,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-08" - }, + "fieldset_info": { "id": "2020-03-c-06-08" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-09", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": "No. yes added more " - } + "answer": { "entry": "No. yes added more " } }, { "hint": "Next year you’ll report this data. Leave it blank in the meantime.", @@ -43368,10 +37044,7 @@ "id": "2020-03-c-06-10-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43407,37 +37080,25 @@ "id": "2020-03-c-06-10-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-10-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43455,9 +37116,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-10" - }, + "fieldset_info": { "id": "2020-03-c-06-10" }, "fieldset_type": "marked" }, { @@ -43468,10 +37127,7 @@ "id": "2020-03-c-06-11-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43507,37 +37163,25 @@ "id": "2020-03-c-06-11-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-11-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43555,9 +37199,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-11" - }, + "fieldset_info": { "id": "2020-03-c-06-11" }, "fieldset_type": "marked" }, { @@ -43568,10 +37210,7 @@ "id": "2020-03-c-06-12-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43607,37 +37246,25 @@ "id": "2020-03-c-06-12-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-12-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43655,9 +37282,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-12" - }, + "fieldset_info": { "id": "2020-03-c-06-12" }, "fieldset_type": "marked" }, { @@ -43669,10 +37294,7 @@ "id": "2020-03-c-06-13-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43708,37 +37330,25 @@ "id": "2020-03-c-06-13-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-13-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43756,9 +37366,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-13" - }, + "fieldset_info": { "id": "2020-03-c-06-13" }, "fieldset_type": "marked" }, { @@ -43769,10 +37377,7 @@ "id": "2020-03-c-06-14-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43808,37 +37413,25 @@ "id": "2020-03-c-06-14-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-14-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43856,9 +37449,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-14" - }, + "fieldset_info": { "id": "2020-03-c-06-14" }, "fieldset_type": "marked" }, { @@ -43876,10 +37467,7 @@ "id": "2020-03-c-06-15-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -43915,37 +37503,25 @@ "id": "2020-03-c-06-15-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-15-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -43963,9 +37539,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-15" - }, + "fieldset_info": { "id": "2020-03-c-06-15" }, "fieldset_type": "marked" }, { @@ -43976,10 +37550,7 @@ "id": "2020-03-c-06-16-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44015,37 +37586,25 @@ "id": "2020-03-c-06-16-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-16-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44063,9 +37622,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-16" - }, + "fieldset_info": { "id": "2020-03-c-06-16" }, "fieldset_type": "marked" }, { @@ -44076,10 +37633,7 @@ "id": "2020-03-c-06-17-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44115,37 +37669,25 @@ "id": "2020-03-c-06-17-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-17-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44163,9 +37705,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-17" - }, + "fieldset_info": { "id": "2020-03-c-06-17" }, "fieldset_type": "marked" }, { @@ -44177,10 +37717,7 @@ "id": "2020-03-c-06-18-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44216,37 +37753,25 @@ "id": "2020-03-c-06-18-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-18-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44264,9 +37789,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-18" - }, + "fieldset_info": { "id": "2020-03-c-06-18" }, "fieldset_type": "marked" }, { @@ -44277,10 +37800,7 @@ "id": "2020-03-c-06-19-a", "type": "integer", "label": "Total for all ages (0-16)", - "answer": { - "entry": null, - "readonly": true - }, + "answer": { "entry": null, "readonly": true }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44316,37 +37836,25 @@ "id": "2020-03-c-06-19-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-c", "type": "integer", "label": "Ages 1-5", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-d", "type": "integer", "label": "Ages 6-12", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } }, { "id": "2020-03-c-06-19-e", "type": "integer", "label": "Ages 13-16", - "answer": { - "entry": null, - "readonly": true - } + "answer": { "entry": null, "readonly": true } } ], "context_data": { @@ -44364,18 +37872,14 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-c-06-19" - }, + "fieldset_info": { "id": "2020-03-c-06-19" }, "fieldset_type": "marked" }, { "id": "2020-03-c-06-20", "type": "text_multiline", "label": "Is there anything else you’d like to add about your data?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -44398,14 +37902,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44427,18 +37925,12 @@ "label": "Health plans", "value": "health_plans" }, - { - "label": "States", - "value": "states" - }, + { "label": "States", "value": "states" }, { "label": "Third party administrator", "value": "third_party_administrator" }, - { - "label": "Other ", - "value": "other" - } + { "label": "Other ", "value": "other" } ] }, "questions": [ @@ -44478,9 +37970,7 @@ "id": "2020-03-d-01-02-b", "type": "text_multiline", "label": "Who tracks cost sharing?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44519,9 +38009,7 @@ "id": "2020-03-d-01-04", "type": "text_multiline", "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-d-01-05", @@ -44530,14 +38018,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44545,9 +38027,7 @@ "id": "2020-03-d-01-05-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44571,14 +38051,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -44586,9 +38060,7 @@ "id": "2020-03-d-01-06-a", "type": "text_multiline", "label": "What did you find in your assessment?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44633,17 +38105,13 @@ "id": "2020-03-d-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-d-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -44686,14 +38154,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -44733,14 +38195,8 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -44749,9 +38205,7 @@ "hint": "This only applies to states operating an 1115 demo.", "type": "text_multiline", "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-04", @@ -44761,18 +38215,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44784,18 +38229,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] } }, @@ -44807,18 +38243,9 @@ "answer": { "entry": null, "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -44826,9 +38253,7 @@ "id": "2020-03-e-02-06-a", "type": "text_multiline", "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -44849,9 +38274,7 @@ "id": "2020-03-e-02-07", "type": "integer", "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -44860,25 +38283,19 @@ "id": "2020-03-e-02-08", "type": "money", "label": "What’s the average monthly contribution the state pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-09", "type": "money", "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-10", "type": "money", "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -44911,15 +38328,9 @@ ] ], "headers": [ - { - "contents": "State" - }, - { - "contents": "Employer" - }, - { - "contents": "Employee" - } + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } ] }, "fieldset_type": "synthesized_table" @@ -44979,41 +38390,31 @@ "id": "2020-03-e-02-14", "type": "text_multiline", "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-15", "type": "text_multiline", "label": "What challenges did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-16", "type": "text_multiline", "label": "What accomplishments did you experience with your premium assistance program in FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-e-02-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45050,14 +38451,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45068,14 +38463,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45086,14 +38475,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45112,18 +38495,9 @@ "answer": { "entry": "na", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - }, - { - "label": "N/A", - "value": "na" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } ] }, "questions": [ @@ -45131,9 +38505,7 @@ "id": "2020-03-f-01-05-a", "type": "text_multiline", "label": "What safeguards and procedures do the Managed Care plans have in place?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45154,17 +38526,13 @@ "id": "2020-03-f-01-06", "type": "integer", "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "id": "2020-03-f-01-07", "type": "integer", "label": "How many cases have been found in favor of the beneficiary in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } }, { "type": "fieldset", @@ -45173,17 +38541,13 @@ "id": "2020-03-f-01-08", "type": "integer", "label": "How many cases related to provider credentialing were investigated in FFY 2020?", - "answer": { - "entry": "2" - } + "answer": { "entry": "2" } }, { "id": "2020-03-f-01-09", "type": "integer", "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45194,17 +38558,13 @@ "id": "2020-03-f-01-10", "type": "integer", "label": "How many cases related to provider billing were investigated in FFY 2020?", - "answer": { - "entry": "19" - } + "answer": { "entry": "19" } }, { "id": "2020-03-f-01-11", "type": "integer", "label": "How many cases were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45215,17 +38575,13 @@ "id": "2020-03-f-01-12", "type": "integer", "label": "How many cases related to beneficiary eligibility were investigated in FFY 2020?", - "answer": { - "entry": "4" - } + "answer": { "entry": "4" } }, { "id": "2020-03-f-01-13", "type": "integer", "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2020?", - "answer": { - "entry": "0" - } + "answer": { "entry": "0" } } ] }, @@ -45236,10 +38592,7 @@ "answer": { "entry": "separate_chip_only", "options": [ - { - "label": "CHIP only", - "value": "separate_chip_only" - }, + { "label": "CHIP only", "value": "separate_chip_only" }, { "label": "Medicaid and CHIP combined", "value": "medicaid_separate_chip_combined" @@ -45254,14 +38607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45295,14 +38642,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45310,9 +38651,7 @@ "id": "2020-03-f-01-16-a", "type": "text_multiline", "label": "What specifically are the contractors responsible for in terms of oversight?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45333,17 +38672,13 @@ "id": "2020-03-f-01-17", "type": "text_multiline", "label": "Is there anything else you’d like to add that wasn’t already covered?", - "answer": { - "entry": "Only Separate CHIP reported." - } + "answer": { "entry": "Only Separate CHIP reported." } }, { "id": "2020-03-f-01-18", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -45377,14 +38712,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -45396,9 +38725,7 @@ "id": "2020-03-g-01-02-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45436,49 +38763,37 @@ "id": "2020-03-g-01-02-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "1915" - } + "answer": { "entry": "1915" } }, { "id": "2020-03-g-01-02-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "8659" - } + "answer": { "entry": "8659" } }, { "id": "2020-03-g-01-02-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "15546" - } + "answer": { "entry": "15546" } }, { "id": "2020-03-g-01-02-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "21088" - } + "answer": { "entry": "21088" } }, { "id": "2020-03-g-01-02-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "26998" - } + "answer": { "entry": "26998" } }, { "id": "2020-03-g-01-02-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "19934" - } + "answer": { "entry": "19934" } } ], "context_data": { @@ -45496,9 +38811,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-02" - }, + "fieldset_info": { "id": "2020-03-g-01-02" }, "fieldset_type": "marked" }, { @@ -45509,9 +38822,7 @@ "id": "2020-03-g-01-03-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45549,49 +38860,37 @@ "id": "2020-03-g-01-03-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "24" - } + "answer": { "entry": "24" } }, { "id": "2020-03-g-01-03-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "2238" - } + "answer": { "entry": "2238" } }, { "id": "2020-03-g-01-03-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8868" - } + "answer": { "entry": "8868" } }, { "id": "2020-03-g-01-03-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "14543" - } + "answer": { "entry": "14543" } }, { "id": "2020-03-g-01-03-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "17462" - } + "answer": { "entry": "17462" } }, { "id": "2020-03-g-01-03-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "11415" - } + "answer": { "entry": "11415" } } ], "context_data": { @@ -45609,9 +38908,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-03" - }, + "fieldset_info": { "id": "2020-03-g-01-03" }, "fieldset_type": "marked" }, { @@ -45628,9 +38925,7 @@ "id": "2020-03-g-01-04-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45668,49 +38963,37 @@ "id": "2020-03-g-01-04-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "8" - } + "answer": { "entry": "8" } }, { "id": "2020-03-g-01-04-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "1997" - } + "answer": { "entry": "1997" } }, { "id": "2020-03-g-01-04-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "8504" - } + "answer": { "entry": "8504" } }, { "id": "2020-03-g-01-04-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "13966" - } + "answer": { "entry": "13966" } }, { "id": "2020-03-g-01-04-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "16828" - } + "answer": { "entry": "16828" } }, { "id": "2020-03-g-01-04-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "10639" - } + "answer": { "entry": "10639" } } ], "context_data": { @@ -45728,9 +39011,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-04" - }, + "fieldset_info": { "id": "2020-03-g-01-04" }, "fieldset_type": "marked" }, { @@ -45747,9 +39028,7 @@ "id": "2020-03-g-01-05-a", "type": "integer", "label": "Total for all ages (0-18)", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -45787,49 +39066,37 @@ "id": "2020-03-g-01-05-b", "type": "integer", "label": "Ages 0-1", - "answer": { - "entry": "12" - } + "answer": { "entry": "12" } }, { "id": "2020-03-g-01-05-c", "type": "integer", "label": "Ages 1-2", - "answer": { - "entry": "117" - } + "answer": { "entry": "117" } }, { "id": "2020-03-g-01-05-d", "type": "integer", "label": "Ages 3-5", - "answer": { - "entry": "2133" - } + "answer": { "entry": "2133" } }, { "id": "2020-03-g-01-05-e", "type": "integer", "label": "Ages 6-9", - "answer": { - "entry": "5991" - } + "answer": { "entry": "5991" } }, { "id": "2020-03-g-01-05-f", "type": "integer", "label": "Ages 10-14", - "answer": { - "entry": "5931" - } + "answer": { "entry": "5931" } }, { "id": "2020-03-g-01-05-g", "type": "integer", "label": "Ages 15-18", - "answer": { - "entry": "4883" - } + "answer": { "entry": "4883" } } ], "context_data": { @@ -45847,9 +39114,7 @@ "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-03-g-01-05" - }, + "fieldset_info": { "id": "2020-03-g-01-05" }, "fieldset_type": "marked" }, { @@ -45862,9 +39127,7 @@ "id": "2020-03-g-01-06", "type": "integer", "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2020?", - "answer": { - "entry": "1893" - } + "answer": { "entry": "1893" } }, { "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", @@ -45879,14 +39142,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -45897,18 +39154,14 @@ "id": "2020-03-g-01-07-a", "type": "integer", "label": "How many children were enrolled in supplemental dental coverage during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-g-01-07-b", "hint": "This is the total number for all children between 0-18 years from question 1.", "type": "integer", "label": "How many children were enrolled in Separate CHIP for at least 90 continuous days during FFY 2020?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "type": "fieldset", @@ -45942,9 +39195,7 @@ { "contents": "Children enrolled in Separate CHIP" }, - { - "contents": "Percentage" - } + { "contents": "Percentage" } ] }, "fieldset_type": "synthesized_table" @@ -45970,17 +39221,13 @@ "id": "2020-03-g-01-08", "type": "text_multiline", "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-03-g-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46007,14 +39254,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -46025,14 +39266,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "context_data": { @@ -46064,9 +39299,7 @@ "hint": "This is optional if you already submitted CAHPS raw data to the AHRQ CAHPS database. Submit results only for the CHIP population, not for both Medicaid (Title XIX) and CHIP (Title XXI) together. Your data should represent children enrolled in all types of delivery systems (Managed Care, PCCM, and Fee for Service).", "type": "file_upload", "label": "Upload a summary report of your CAHPS survey results.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02", @@ -46079,18 +39312,12 @@ "label": "Medicaid Expansion CHIP", "value": "medicaid expansion chip" }, - { - "label": "Separate CHIP", - "value": "separate chip" - }, + { "label": "Separate CHIP", "value": "separate chip" }, { "label": "Both Separate CHIP and Medicaid Expansion CHIP", "value": "combination chip" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46102,17 +39329,13 @@ "id": "2020-03-h-02-02-a", "type": "text", "label": "Which population did you survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-03-h-02-02-b", "type": "integer", "label": "How many children were included in the survey?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46147,18 +39370,9 @@ "answer": { "entry": "5.0H", "options": [ - { - "label": "CAHPS 5.0", - "value": "5.0" - }, - { - "label": "CAHPS 5.0H", - "value": "5.0H" - }, - { - "label": "Other", - "value": "other" - } + { "label": "CAHPS 5.0", "value": "5.0" }, + { "label": "CAHPS 5.0H", "value": "5.0H" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46170,9 +39384,7 @@ "id": "2020-03-h-02-03-a", "type": "text", "label": "Which CAHPS survey did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46199,18 +39411,12 @@ "answer": { "entry": [null, "chronic"], "options": [ - { - "label": "None", - "value": "none" - }, + { "label": "None", "value": "none" }, { "label": "Children with Chronic Conditions", "value": "chronic" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46218,9 +39424,7 @@ "id": "2020-03-h-02-04-a", "type": "text", "label": "Which supplemental item sets did you include?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46249,14 +39453,8 @@ "label": "NCQA HEDIS CAHPS 5.0H", "value": "ncqa hedis cahps 5.0h" }, - { - "label": "HRQ CAHPS", - "value": "hrq cahps" - }, - { - "label": "Other", - "value": "other" - } + { "label": "HRQ CAHPS", "value": "hrq cahps" }, + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -46268,9 +39466,7 @@ "id": "2020-03-h-02-05-a", "type": "text", "label": "Which administrative protocol did you use?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46293,9 +39489,7 @@ "id": "2020-03-h-02-06", "type": "text_multiline", "label": "Is there anything else you'd like to add about your CAHPS survey results?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } } ], "context_data": { @@ -46367,10 +39561,7 @@ "label": "Sample size was too small (fewer than 30)", "value": "Sample size was too small (fewer than 30)" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] } }, @@ -46378,9 +39569,7 @@ "id": "2020-03-h-03-02", "type": "text_multiline", "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "context_data": { @@ -46418,14 +39607,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } } @@ -46459,14 +39642,8 @@ "answer": { "entry": "yes", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] } }, @@ -46513,9 +39690,7 @@ "id": "2020-03-i-02-01-01-04", "type": "integer", "label": "How many children do you estimate are being served by the HSI program?", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46534,9 +39709,7 @@ "id": "2020-03-i-02-01-01-05", "type": "integer", "label": "How many children in the HSI program are below your state's FPL threshold? ", - "answer": { - "entry": "112" - }, + "answer": { "entry": "112" }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46661,9 +39834,7 @@ "id": "2020-03-i-02-01-01-09", "type": "file_upload", "label": "Optional: Attach any additional documents.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46794,9 +39965,7 @@ "id": "2020-04-a-01-01-01-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -46837,9 +40006,7 @@ "id": "2020-04-a-01-01-01-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "30669" - } + "answer": { "entry": "30669" } } ] }, @@ -46860,9 +40027,7 @@ "id": "2020-04-a-01-01-01-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1127906" - } + "answer": { "entry": "1127906" } } ] }, @@ -46929,18 +40094,14 @@ "id": "2020-04-a-01-01-01-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -46984,9 +40145,7 @@ "id": "2020-04-a-01-01-01-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47027,9 +40186,7 @@ "id": "2020-04-a-01-01-01-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "13922" - } + "answer": { "entry": "13922" } } ] }, @@ -47050,9 +40207,7 @@ "id": "2020-04-a-01-01-01-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "359680" - } + "answer": { "entry": "359680" } } ] }, @@ -47119,18 +40274,14 @@ "id": "2020-04-a-01-01-01-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47174,9 +40325,7 @@ "id": "2020-04-a-01-01-01-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47217,9 +40366,7 @@ "id": "2020-04-a-01-01-01-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "16747" - } + "answer": { "entry": "16747" } } ] }, @@ -47240,9 +40387,7 @@ "id": "2020-04-a-01-01-01-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "351278" - } + "answer": { "entry": "351278" } } ] }, @@ -47309,18 +40454,14 @@ "id": "2020-04-a-01-01-01-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-01-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -47338,9 +40479,7 @@ "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": "Increase Access to Care" - } + "answer": { "entry": "Increase Access to Care" } }, { "id": "2020-04-a-01-01-02-02", @@ -47386,9 +40525,7 @@ "id": "2020-04-a-01-01-02-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47429,9 +40566,7 @@ "id": "2020-04-a-01-01-02-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "78593" - } + "answer": { "entry": "78593" } } ] }, @@ -47452,9 +40587,7 @@ "id": "2020-04-a-01-01-02-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "78908" - } + "answer": { "entry": "78908" } } ] }, @@ -47521,18 +40654,14 @@ "id": "2020-04-a-01-01-02-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47576,9 +40705,7 @@ "id": "2020-04-a-01-01-02-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47619,9 +40746,7 @@ "id": "2020-04-a-01-01-02-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "1329" - } + "answer": { "entry": "1329" } } ] }, @@ -47642,9 +40767,7 @@ "id": "2020-04-a-01-01-02-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "1338" - } + "answer": { "entry": "1338" } } ] }, @@ -47711,18 +40834,14 @@ "id": "2020-04-a-01-01-02-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47766,9 +40885,7 @@ "id": "2020-04-a-01-01-02-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47809,9 +40926,7 @@ "id": "2020-04-a-01-01-02-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "10464" - } + "answer": { "entry": "10464" } } ] }, @@ -47832,9 +40947,7 @@ "id": "2020-04-a-01-01-02-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "10776" - } + "answer": { "entry": "10776" } } ] }, @@ -47901,18 +41014,14 @@ "id": "2020-04-a-01-01-02-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -47956,9 +41065,7 @@ "id": "2020-04-a-01-01-02-02-04-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -47999,9 +41106,7 @@ "id": "2020-04-a-01-01-02-02-04-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "53395" - } + "answer": { "entry": "53395" } } ] }, @@ -48022,9 +41127,7 @@ "id": "2020-04-a-01-01-02-02-04-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "66741" - } + "answer": { "entry": "66741" } } ] }, @@ -48091,18 +41194,14 @@ "id": "2020-04-a-01-01-02-02-04-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-04-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48146,9 +41245,7 @@ "id": "2020-04-a-01-01-02-02-05-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48189,9 +41286,7 @@ "id": "2020-04-a-01-01-02-02-05-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "43656" - } + "answer": { "entry": "43656" } } ] }, @@ -48212,9 +41307,7 @@ "id": "2020-04-a-01-01-02-02-05-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "46439" - } + "answer": { "entry": "46439" } } ] }, @@ -48265,9 +41358,7 @@ "id": "2020-04-a-01-01-02-02-05-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal." - } + "answer": { "entry": "This is a new goal." } }, { "id": "2020-04-a-01-01-02-02-05-10", @@ -48281,18 +41372,14 @@ "id": "2020-04-a-01-01-02-02-05-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-02-02-05-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48358,9 +41445,7 @@ "id": "2020-04-a-01-01-03-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48401,9 +41486,7 @@ "id": "2020-04-a-01-01-03-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "367" - } + "answer": { "entry": "367" } } ] }, @@ -48424,9 +41507,7 @@ "id": "2020-04-a-01-01-03-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "378" - } + "answer": { "entry": "378" } } ] }, @@ -48477,9 +41558,7 @@ "id": "2020-04-a-01-01-03-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": "This is a new goal" - } + "answer": { "entry": "This is a new goal" } }, { "id": "2020-04-a-01-01-03-02-01-10", @@ -48493,18 +41572,14 @@ "id": "2020-04-a-01-01-03-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48548,9 +41623,7 @@ "id": "2020-04-a-01-01-03-02-02-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48591,9 +41664,7 @@ "id": "2020-04-a-01-01-03-02-02-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "369" - } + "answer": { "entry": "369" } } ] }, @@ -48614,9 +41685,7 @@ "id": "2020-04-a-01-01-03-02-02-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "401" - } + "answer": { "entry": "401" } } ] }, @@ -48683,18 +41752,14 @@ "id": "2020-04-a-01-01-03-02-02-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-02-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -48738,9 +41803,7 @@ "id": "2020-04-a-01-01-03-02-03-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48781,9 +41844,7 @@ "id": "2020-04-a-01-01-03-02-03-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": "41565" - } + "answer": { "entry": "41565" } } ] }, @@ -48804,9 +41865,7 @@ "id": "2020-04-a-01-01-03-02-03-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": "54080" - } + "answer": { "entry": "54080" } } ] }, @@ -48873,18 +41932,14 @@ "id": "2020-04-a-01-01-03-02-03-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-01-01-03-02-03-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -48901,9 +41956,7 @@ "id": "2020-04-a-01-01-04-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02", @@ -48917,9 +41970,7 @@ "id": "2020-04-a-01-01-04-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-02", @@ -48948,9 +41999,7 @@ "id": "2020-04-a-01-01-04-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -48982,17 +42031,13 @@ "id": "2020-04-a-01-01-04-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49004,17 +42049,13 @@ "id": "2020-04-a-01-01-04-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49065,34 +42106,26 @@ "id": "2020-04-a-01-01-04-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-04-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49109,9 +42142,7 @@ "id": "2020-04-a-01-01-05-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02", @@ -49125,9 +42156,7 @@ "id": "2020-04-a-01-01-05-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-02", @@ -49156,9 +42185,7 @@ "id": "2020-04-a-01-01-05-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49190,17 +42217,13 @@ "id": "2020-04-a-01-01-05-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49212,17 +42235,13 @@ "id": "2020-04-a-01-01-05-02-01-05", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49273,34 +42292,26 @@ "id": "2020-04-a-01-01-05-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-05-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49317,9 +42328,7 @@ "id": "2020-04-a-01-01-06-01", "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02", @@ -49333,9 +42342,7 @@ "id": "2020-04-a-01-01-06-02-01-01", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-02", @@ -49364,9 +42371,7 @@ "id": "2020-04-a-01-01-06-02-01-02-a", "type": "text_multiline", "label": "Why was this goal discontinued?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -49398,17 +42403,13 @@ "id": "2020-04-a-01-01-06-02-01-03", "type": "text_medium", "label": "Which population are you measuring in the numerator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-04", "type": "integer", "label": "Numerator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49421,17 +42422,13 @@ "hint": "For example: The total number of eligible children in the last federal fiscal year.", "type": "text_medium", "label": "Which population are you measuring in the denominator?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-06", "type": "integer", "label": "Denominator (total number)", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] }, @@ -49482,34 +42479,26 @@ "id": "2020-04-a-01-01-06-02-01-09", "type": "text_multiline", "label": "How did your progress towards your goal last year compare to your previous year’s progress?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-10", "type": "text_multiline", "label": "What are you doing to continually make progress towards your goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-11", "type": "text_multiline", "label": "Anything else you'd like to tell us about this goal?", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-04-a-01-01-06-02-01-12", "hint": "Optional", "type": "file_upload", "label": "Do you have any supporting documentation?", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49539,9 +42528,7 @@ "id": "2020-04-a-02-02", "type": "text_multiline", "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will this data become available?", - "answer": { - "entry": "No." - } + "answer": { "entry": "No." } }, { "id": "2020-04-a-02-03", @@ -49556,9 +42543,7 @@ "hint": "For example: studies, analyses, or any other documents that address your performance goals.", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -49613,34 +42598,26 @@ "id": "2020-05-a-01-01-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-01-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-01-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-01" - }, + "fieldset_info": { "id": "2020-05-a-01-01" }, "fieldset_type": "marked" }, { @@ -49654,34 +42631,26 @@ "id": "2020-05-a-01-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "356487608" - }, + "answer": { "entry": "356487608" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "411883043" - } + "answer": { "entry": "411883043" } }, { "id": "2020-05-a-01-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "443317001" - } + "answer": { "entry": "443317001" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-02" - }, + "fieldset_info": { "id": "2020-05-a-01-02" }, "fieldset_type": "marked" }, { @@ -49695,34 +42664,26 @@ "id": "2020-05-a-01-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-01-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-03" - }, + "fieldset_info": { "id": "2020-05-a-01-03" }, "fieldset_type": "marked" }, { @@ -49736,34 +42697,26 @@ "id": "2020-05-a-01-04-a", "type": "money", "label": "2020", - "answer": { - "entry": "6343194" - }, + "answer": { "entry": "6343194" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-01-04-b", "type": "money", "label": "2021", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } }, { "id": "2020-05-a-01-04-c", "type": "money", "label": "2022", - "answer": { - "entry": "7000000" - } + "answer": { "entry": "7000000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-01-04" - }, + "fieldset_info": { "id": "2020-05-a-01-04" }, "fieldset_type": "marked" }, { @@ -49774,9 +42727,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Managed Care" - }, + { "contents": "Managed Care" }, { "actions": ["identity"], "targets": [ @@ -49797,9 +42748,7 @@ } ], [ - { - "contents": "Fee for Service" - }, + { "contents": "Fee for Service" }, { "actions": ["identity"], "targets": [ @@ -49820,9 +42769,7 @@ } ], [ - { - "contents": "Other benefit costs" - }, + { "contents": "Other benefit costs" }, { "actions": ["identity"], "targets": [ @@ -49866,9 +42813,7 @@ } ], [ - { - "contents": "Total benefit costs" - }, + { "contents": "Total benefit costs" }, { "actions": ["sum"], "targets": [ @@ -49899,18 +42844,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -49935,34 +42872,26 @@ "id": "2020-05-a-02-01-a", "type": "money", "label": "2020", - "answer": { - "entry": "5005640" - }, + "answer": { "entry": "5005640" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-01-b", "type": "money", "label": "2021", - "answer": { - "entry": "5716281" - } + "answer": { "entry": "5716281" } }, { "id": "2020-05-a-02-01-c", "type": "money", "label": "2022", - "answer": { - "entry": "6287909" - } + "answer": { "entry": "6287909" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-01" - }, + "fieldset_info": { "id": "2020-05-a-02-01" }, "fieldset_type": "marked" }, { @@ -49976,34 +42905,26 @@ "id": "2020-05-a-02-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "5839005" - }, + "answer": { "entry": "5839005" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "6923267" - } + "answer": { "entry": "6923267" } }, { "id": "2020-05-a-02-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "7555964" - } + "answer": { "entry": "7555964" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-02" - }, + "fieldset_info": { "id": "2020-05-a-02-02" }, "fieldset_type": "marked" }, { @@ -50017,34 +42938,26 @@ "id": "2020-05-a-02-03-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-03-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-03-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-03" - }, + "fieldset_info": { "id": "2020-05-a-02-03" }, "fieldset_type": "marked" }, { @@ -50058,34 +42971,26 @@ "id": "2020-05-a-02-04-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-04-b", "type": "money", "label": "2021", - "answer": { - "entry": null - } + "answer": { "entry": null } }, { "id": "2020-05-a-02-04-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-04" - }, + "fieldset_info": { "id": "2020-05-a-02-04" }, "fieldset_type": "marked" }, { @@ -50099,34 +43004,26 @@ "id": "2020-05-a-02-05-a", "type": "money", "label": "2020", - "answer": { - "entry": "201056" - }, + "answer": { "entry": "201056" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-05-b", "type": "money", "label": "2021", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } }, { "id": "2020-05-a-02-05-c", "type": "money", "label": "2022", - "answer": { - "entry": "500000" - } + "answer": { "entry": "500000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-05" - }, + "fieldset_info": { "id": "2020-05-a-02-05" }, "fieldset_type": "marked" }, { @@ -50140,34 +43037,26 @@ "id": "2020-05-a-02-06-a", "type": "money", "label": "2020", - "answer": { - "entry": "230094" - }, + "answer": { "entry": "230094" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-06-b", "type": "money", "label": "2021", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } }, { "id": "2020-05-a-02-06-c", "type": "money", "label": "2022", - "answer": { - "entry": "200000" - } + "answer": { "entry": "200000" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-06" - }, + "fieldset_info": { "id": "2020-05-a-02-06" }, "fieldset_type": "marked" }, { @@ -50181,34 +43070,26 @@ "id": "2020-05-a-02-07-a", "type": "money", "label": "2020", - "answer": { - "entry": "885410" - }, + "answer": { "entry": "885410" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-02-07-b", "type": "money", "label": "2021", - "answer": { - "entry": "1371907" - } + "answer": { "entry": "1371907" } }, { "id": "2020-05-a-02-07-c", "type": "money", "label": "2022", - "answer": { - "entry": "1509098" - } + "answer": { "entry": "1509098" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-02-07" - }, + "fieldset_info": { "id": "2020-05-a-02-07" }, "fieldset_type": "marked" }, { @@ -50219,9 +43100,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Personnel" - }, + { "contents": "Personnel" }, { "actions": ["identity"], "targets": [ @@ -50242,9 +43121,7 @@ } ], [ - { - "contents": "General administration" - }, + { "contents": "General administration" }, { "actions": ["identity"], "targets": [ @@ -50265,9 +43142,7 @@ } ], [ - { - "contents": "Contractors and brokers" - }, + { "contents": "Contractors and brokers" }, { "actions": ["identity"], "targets": [ @@ -50288,9 +43163,7 @@ } ], [ - { - "contents": "Claims processing" - }, + { "contents": "Claims processing" }, { "actions": ["identity"], "targets": [ @@ -50311,9 +43184,7 @@ } ], [ - { - "contents": "Outreach and marketing" - }, + { "contents": "Outreach and marketing" }, { "actions": ["identity"], "targets": [ @@ -50334,9 +43205,7 @@ } ], [ - { - "contents": "Health Services Initiatives (HSI)" - }, + { "contents": "Health Services Initiatives (HSI)" }, { "actions": ["identity"], "targets": [ @@ -50357,9 +43226,7 @@ } ], [ - { - "contents": "Other administrative costs" - }, + { "contents": "Other administrative costs" }, { "actions": ["identity"], "targets": [ @@ -50380,9 +43247,7 @@ } ], [ - { - "contents": "Total administrative costs" - }, + { "contents": "Total administrative costs" }, { "actions": ["sum"], "targets": [ @@ -50421,9 +43286,7 @@ } ], [ - { - "contents": "10% administrative cap" - }, + { "contents": "10% administrative cap" }, { "actions": ["formula"], "formula": "(<0> + <1> + <2> - <3>) / 9", @@ -50460,18 +43323,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50484,9 +43339,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Total program costs " - }, + { "contents": "Total program costs " }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", @@ -50543,48 +43396,30 @@ } ], [ - { - "contents": "eFMAP" - }, + { "contents": "eFMAP" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2020" - } - ], + "targets": [{ "lookupFmapFy": "2020" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY20)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2021" - } - ], + "targets": [{ "lookupFmapFy": "2021" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY21)" }, { "actions": ["identity"], - "targets": [ - { - "lookupFmapFy": "2022" - } - ], + "targets": [{ "lookupFmapFy": "2022" }], "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY22)" } ], [ - { - "contents": "Federal share" - }, + { "contents": "Federal share" }, { "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50603,9 +43438,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50624,9 +43457,7 @@ "actions": ["formula"], "formula": "(<0> / 100) * (<1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", "targets": [ - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50643,9 +43474,7 @@ } ], [ - { - "contents": "State share" - }, + { "contents": "State share" }, { "actions": ["formula"], "formula": "<0> + <1> + <2> + <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> + <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", @@ -50661,9 +43490,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-a')].answer.entry", - { - "lookupFmapFy": "2020" - }, + { "lookupFmapFy": "2020" }, "$..*[?(@ && @.id=='2020-05-a-01-01-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-a')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-a')].answer.entry", @@ -50693,9 +43520,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-b')].answer.entry", - { - "lookupFmapFy": "2021" - }, + { "lookupFmapFy": "2021" }, "$..*[?(@ && @.id=='2020-05-a-01-01-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-b')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-b')].answer.entry", @@ -50725,9 +43550,7 @@ "$..*[?(@ && @.id=='2020-05-a-02-05-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-06-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-02-07-c')].answer.entry", - { - "lookupFmapFy": "2022" - }, + { "lookupFmapFy": "2022" }, "$..*[?(@ && @.id=='2020-05-a-01-01-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-02-c')].answer.entry", "$..*[?(@ && @.id=='2020-05-a-01-03-c')].answer.entry", @@ -50745,18 +43568,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -50797,10 +43612,7 @@ "label": "Tobacco settlement", "value": "tobacco settlement" }, - { - "label": "Other", - "value": "other" - } + { "label": "Other", "value": "other" } ] }, "questions": [ @@ -50808,9 +43620,7 @@ "id": "2020-05-a-02-08-a", "type": "text", "label": "What other type of funding did you receive?", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50834,14 +43644,8 @@ "answer": { "entry": "no", "options": [ - { - "label": "Yes", - "value": "yes" - }, - { - "label": "No", - "value": "no" - } + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } ] }, "questions": [ @@ -50849,9 +43653,7 @@ "id": "2020-05-a-02-09-a", "type": "text_multiline", "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "context_data": { "conditional_display": { "type": "conditional_display", @@ -50887,34 +43689,26 @@ "id": "2020-05-a-03-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "53253" - }, + "answer": { "entry": "53253" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "" - } + "answer": { "entry": "" } }, { "id": "2020-05-a-03-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-01" - }, + "fieldset_info": { "id": "2020-05-a-03-01" }, "fieldset_type": "marked" }, { @@ -50929,34 +43723,26 @@ "id": "2020-05-a-03-02-a", "type": "money", "label": "2020", - "answer": { - "entry": null - }, + "answer": { "entry": null }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-03-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "5" - } + "answer": { "entry": "5" } }, { "id": "2020-05-a-03-02-c", "type": "money", "label": "2022", - "answer": { - "entry": null - } + "answer": { "entry": null } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-03-02" - }, + "fieldset_info": { "id": "2020-05-a-03-02" }, "fieldset_type": "marked" }, { @@ -50965,9 +43751,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -50988,9 +43772,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51012,18 +43794,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51047,34 +43821,26 @@ "id": "2020-05-a-04-01-a", "type": "integer", "label": "2020", - "answer": { - "entry": "174401" - }, + "answer": { "entry": "174401" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-01-b", "type": "integer", "label": "2021", - "answer": { - "entry": "80722" - } + "answer": { "entry": "80722" } }, { "id": "2020-05-a-04-01-c", "type": "integer", "label": "2022", - "answer": { - "entry": "84885" - } + "answer": { "entry": "84885" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-01" - }, + "fieldset_info": { "id": "2020-05-a-04-01" }, "fieldset_type": "marked" }, { @@ -51089,34 +43855,26 @@ "id": "2020-05-a-04-02-a", "type": "money", "label": "2020", - "answer": { - "entry": "233" - }, + "answer": { "entry": "233" }, "comment": "This is the first real question so far in this part…" }, { "id": "2020-05-a-04-02-b", "type": "money", "label": "2021", - "answer": { - "entry": "3" - } + "answer": { "entry": "3" } }, { "id": "2020-05-a-04-02-c", "type": "money", "label": "2022", - "answer": { - "entry": "252" - } + "answer": { "entry": "252" } } ], "fieldset_type": "datagrid" } ], - "fieldset_info": { - "id": "2020-05-a-04-02" - }, + "fieldset_info": { "id": "2020-05-a-04-02" }, "fieldset_type": "marked" }, { @@ -51125,9 +43883,7 @@ "fieldset_info": { "rows": [ [ - { - "contents": "Eligible children" - }, + { "contents": "Eligible children" }, { "actions": ["identity"], "targets": [ @@ -51148,9 +43904,7 @@ } ], [ - { - "contents": "PMPM cost" - }, + { "contents": "PMPM cost" }, { "actions": ["identity"], "targets": [ @@ -51172,18 +43926,10 @@ ] ], "headers": [ - { - "contents": "" - }, - { - "contents": "FFY 2020" - }, - { - "contents": "FFY 2021" - }, - { - "contents": "FFY 2022" - } + { "contents": "" }, + { "contents": "FFY 2020" }, + { "contents": "FFY 2021" }, + { "contents": "FFY 2022" } ] }, "fieldset_type": "synthesized_table" @@ -51206,9 +43952,7 @@ "id": "2020-05-a-05-02", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } @@ -51285,9 +44029,7 @@ "id": "2020-06-a-01-06", "type": "file_upload", "label": "Optional: Attach any additional documents here.", - "answer": { - "entry": null - } + "answer": { "entry": null } } ] } diff --git a/services/database/data/seed/seed-section-base-2023.json b/services/database/data/seed/seed-section-base-2023.json index bba4ec5ad..f8d6c8d01 100644 --- a/services/database/data/seed/seed-section-base-2023.json +++ b/services/database/data/seed/seed-section-base-2023.json @@ -4888,8 +4888,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5640,8 +5639,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5736,8 +5734,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5832,8 +5829,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -5929,8 +5925,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6025,8 +6020,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6128,8 +6122,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6224,8 +6217,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6320,8 +6312,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6417,8 +6408,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { @@ -6513,8 +6503,7 @@ "type": "integer", "label": "Total for all ages (0-16)", "answer": { - "entry": null, - "readonly": true + "entry": null }, "context_data": { "conditional_display": { diff --git a/services/database/package.json b/services/database/package.json index a43b99aeb..1464e68c3 100644 --- a/services/database/package.json +++ b/services/database/package.json @@ -13,8 +13,8 @@ "serverless-dynamodb": "^0.2.53" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.596.0", - "@aws-sdk/lib-dynamodb": "^3.596.0", + "@aws-sdk/client-dynamodb": "^3.621.0", + "@aws-sdk/lib-dynamodb": "^3.621.0", "pg": "^8.11.4" } } diff --git a/services/database/scripts/remove-readonly-in-section-3c.js b/services/database/scripts/remove-readonly-in-section-3c.js new file mode 100644 index 000000000..22bead5f1 --- /dev/null +++ b/services/database/scripts/remove-readonly-in-section-3c.js @@ -0,0 +1,99 @@ +/* eslint-disable no-console */ +/* + * Local: + * `DYNAMODB_URL="http://localhost:8000" dynamoPrefix="local" node services/database/scripts/remove-readonly-in-section-3c.js` + * Branch: + * dynamoPrefix="YOUR BRANCH NAME" node services/database/scripts/remove-readonly-in-section-3c.js + */ + +const { buildDynamoClient, scan, update } = require("./utils/dynamodb.js"); + +const isLocal = !!process.env.DYNAMODB_URL; + +const sectionTable = isLocal + ? "local-section" + : process.env.dynamoPrefix + "-section"; + +async function handler() { + try { + console.log("Searching for 2023 Forms"); + + buildDynamoClient(); + + console.log(`Processing table ${sectionTable}`); + const existingItems = await scan({ + TableName: sectionTable, + }); + const filteredItems = filter(existingItems); + const transformedItems = await transform(filteredItems); + await update(sectionTable, transformedItems); + console.log(`Touched ${transformedItems.length} in table ${sectionTable}`); + console.debug("Data fix complete"); + + return { + statusCode: 200, + body: "All done!", + }; + } catch (err) { + console.error(err); + return { + statusCode: 500, + body: err.message, + }; + } +} + +function filter(items) { + return items.filter((item) => item.year === 2023 && item.sectionId === 3); +} + +async function transform(items) { + // Touch sync field only + const transformed = items.map((section) => { + console.log("Transforming section!", section); + return updateSection3(section); + }); + + return transformed; +} + +const updateSection3 = (section) => { + section.contents.section.subsections[2].parts.map((part) => { + return recurseAndUpdateQuestions(part.questions, section.pk); + }); + return section; +}; + +const recurseAndUpdateQuestions = (questions, reportBeingTransformed) => { + const fieldstoRemoveReadonly = [ + "2023-03-c-05-19-a", + "2023-03-c-06-10-a", + "2023-03-c-06-11-a", + "2023-03-c-06-12-a", + "2023-03-c-06-13-a", + "2023-03-c-06-14-a", + "2023-03-c-06-15-a", + "2023-03-c-06-16-a", + "2023-03-c-06-17-a", + "2023-03-c-06-18-a", + "2023-03-c-06-19-a", + ]; + for (let question of questions) { + if ( + fieldstoRemoveReadonly.includes(question?.id) && + question?.answer?.readonly + ) { + console.log( + reportBeingTransformed, + "Found and deleting readonly field from question", + question.id + ); + delete question.answer.readonly; + } + if (question?.questions) { + recurseAndUpdateQuestions(question.questions, reportBeingTransformed); + } + } +}; + +handler(); diff --git a/services/database/serverless.yml b/services/database/serverless.yml index 4cb11570c..cd23c4b87 100644 --- a/services/database/serverless.yml +++ b/services/database/serverless.yml @@ -21,7 +21,6 @@ custom: serverlessTerminationProtection: stages: - main - - master - val - production acsTableName: ${self:custom.stage}-acs diff --git a/services/database/yarn.lock b/services/database/yarn.lock index 11e44237c..12d910970 100644 --- a/services/database/yarn.lock +++ b/services/database/yarn.lock @@ -23,6 +23,19 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" @@ -32,6 +45,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/supports-web-crypto@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" @@ -39,6 +61,13 @@ dependencies: tslib "^1.11.1" +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== + dependencies: + tslib "^2.6.2" + "@aws-crypto/util@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" @@ -48,6 +77,15 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== + dependencies: + "@aws-sdk/types" "^3.222.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-sdk/client-dynamodb@^3.428.0": version "3.569.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.569.0.tgz#960f0f9d112d883d30361500a82b50c55df25fb8" @@ -98,53 +136,53 @@ tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.596.0.tgz#a811d319632c58eecbc99f33fb386be90f8637f7" - integrity sha512-i0TB/UuZJ/+yCIDsYpVc874IypGxksU81bckNK96j4cM9BO9mitdt0gxickqnIqTwsZIZBs7RW6ANSxDi7yVxA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-endpoint-discovery" "3.587.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" + integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-endpoint-discovery" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" tslib "^2.6.2" uuid "^9.0.1" @@ -194,49 +232,48 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -284,47 +321,47 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -374,49 +411,49 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -433,17 +470,19 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" tslib "^2.6.2" "@aws-sdk/credential-provider-env@3.568.0": @@ -456,14 +495,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-http@3.568.0": @@ -481,19 +520,19 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@aws-sdk/credential-provider-ini@3.568.0": @@ -512,21 +551,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-node@3.569.0": @@ -547,22 +586,22 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-process@3.568.0": @@ -576,15 +615,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-sso@3.568.0": @@ -600,17 +639,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/credential-provider-web-identity@3.568.0": @@ -623,14 +662,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.568.0": @@ -659,14 +698,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.596.0.tgz#bca9eca213129fc1027f9eb0b5e3301b4360af11" - integrity sha512-nTl1lsVRG1iQeY2dIyIWbPrvKepSpE/doL9ET3hAzjTClm81mpvYs3XIVtQsbcmjkgQ62GUrym6D1nk1LcIq+A== +"@aws-sdk/lib-dynamodb@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" + integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== dependencies: - "@aws-sdk/util-dynamodb" "3.596.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@aws-sdk/util-dynamodb" "3.621.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-endpoint-discovery@3.568.0": @@ -681,16 +720,16 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.587.0.tgz#da69990f4810f85e8afe944eb3e4f695e7f9580f" - integrity sha512-/FCTOwO2/GtGx31Y0aO149aXw/LbyyYFJp82fQQCR0eff9RilJ5ViQCdCpcf9zf0ZIlvqGy9aXVutBQU83wlGg== +"@aws-sdk/middleware-endpoint-discovery@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" + integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-host-header@3.567.0": @@ -703,14 +742,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-logger@3.568.0": @@ -722,13 +761,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-recursion-detection@3.567.0": @@ -741,14 +780,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/middleware-user-agent@3.567.0": @@ -762,15 +801,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/region-config-resolver@3.567.0": @@ -785,16 +824,16 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@aws-sdk/token-providers@3.568.0": @@ -808,15 +847,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@3.567.0": @@ -827,12 +866,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -850,10 +889,10 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.596.0.tgz#d3d4fce5d55c54e876ad8fdaf05a78d5f63edb9c" - integrity sha512-oLdB6rUo0gQmry97yvOZ3pJvgzNZLrTk29O2NvMRB5EtXStymfxC53ZeJShdI20jZgP/l8vRUtVf7tjWwjlcIQ== +"@aws-sdk/util-dynamodb@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" + integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== dependencies: tslib "^2.6.2" @@ -867,14 +906,14 @@ "@smithy/util-endpoints" "^1.2.0" tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -894,13 +933,13 @@ bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" @@ -914,14 +953,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/util-utf8-browser@^3.0.0": @@ -939,12 +978,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" - integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/config-resolver@^2.2.0": @@ -958,15 +997,15 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" - integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@smithy/core@^1.4.2": @@ -983,18 +1022,18 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/core@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.0.tgz#f1b0837b7afa5507a9693c1e93da6ca9808022c1" - integrity sha512-ygLZSSKgt9bR8HAxR9mK+U5obvAJBr6zlQuhN5soYWx/amjDoQN4dTkydTypgKe6rIbUjTILyLU+W5XFwXr4kg== +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@smithy/credential-provider-imds@^2.3.0": @@ -1008,15 +1047,15 @@ "@smithy/url-parser" "^2.2.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" - integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" "@smithy/fetch-http-handler@^2.5.0": @@ -1030,14 +1069,14 @@ "@smithy/util-base64" "^2.3.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" - integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" @@ -1051,12 +1090,12 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" - integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1069,12 +1108,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" - integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -1100,13 +1139,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" - integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/middleware-endpoint@^2.5.1": @@ -1122,17 +1161,17 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" - integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== dependencies: - "@smithy/middleware-serde" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" "@smithy/middleware-retry@^2.3.1": @@ -1150,18 +1189,18 @@ tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" - integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/service-error-classification" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" uuid "^9.0.1" @@ -1173,12 +1212,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-serde@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" - integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/middleware-stack@^2.2.0": @@ -1189,12 +1228,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" - integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/node-config-provider@^2.3.0": @@ -1207,14 +1246,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" - integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/node-http-handler@^2.5.0": @@ -1228,15 +1267,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" - integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/property-provider@^2.2.0": @@ -1247,12 +1286,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" - integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/protocol-http@^3.3.0": @@ -1263,12 +1302,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" - integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/querystring-builder@^2.2.0": @@ -1280,12 +1319,12 @@ "@smithy/util-uri-escape" "^2.2.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" - integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" @@ -1297,12 +1336,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" - integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/service-error-classification@^2.1.5": @@ -1312,12 +1351,12 @@ dependencies: "@smithy/types" "^2.12.0" -"@smithy/service-error-classification@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" - integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/shared-ini-file-loader@^2.4.0": version "2.4.0" @@ -1327,12 +1366,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/shared-ini-file-loader@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" - integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/signature-v4@^2.3.0": @@ -1348,15 +1387,16 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" - integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1373,16 +1413,16 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" - integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -1399,10 +1439,10 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" - integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" @@ -1415,13 +1455,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/url-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" - integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^2.3.0": @@ -1511,14 +1551,14 @@ bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" - integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" @@ -1535,17 +1575,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" - integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== dependencies: - "@smithy/config-resolver" "^3.0.1" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-endpoints@^1.2.0": @@ -1557,13 +1597,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" - integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^2.2.0": @@ -1588,12 +1628,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" - integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-retry@^2.2.0": @@ -1605,13 +1645,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" - integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/service-error-classification" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-stream@^2.2.0": @@ -1628,14 +1668,14 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" - integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1656,7 +1696,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.3.0": +"@smithy/util-utf8@^2.0.0", "@smithy/util-utf8@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== @@ -1681,13 +1721,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.0.0.tgz#26bcc5bbbf1de9360a7aeb3b3919926fc6afa2bc" - integrity sha512-+fEXJxGDLCoqRKVSmo0auGxaqbiCo+8oph+4auefYjaNxjOLKSY2MxVQfRzo65PaZv4fr+5lWg+au7vSuJJ/zw== +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" tslib "^2.6.2" ansi-colors@4.1.1: @@ -1882,6 +1922,13 @@ fast-xml-parser@4.2.5: dependencies: strnum "^1.0.5" +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== + dependencies: + strnum "^1.0.5" + fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" diff --git a/services/ui-auth/package.json b/services/ui-auth/package.json index 6435a3920..38f0cd96a 100644 --- a/services/ui-auth/package.json +++ b/services/ui-auth/package.json @@ -10,6 +10,6 @@ "license": "CC0-1.0", "devDependencies": {}, "dependencies": { - "@aws-sdk/client-cognito-identity-provider": "^3.596.0" + "@aws-sdk/client-cognito-identity-provider": "^3.621.0" } } diff --git a/services/ui-auth/serverless.yml b/services/ui-auth/serverless.yml index 068112c66..b8b50f50b 100644 --- a/services/ui-auth/serverless.yml +++ b/services/ui-auth/serverless.yml @@ -29,6 +29,7 @@ plugins: - serverless-bundle - serverless-iam-helper - serverless-s3-bucket-helper + - "@enterprise-cmcs/serverless-waf-plugin" s3BucketHelper: loggingConfiguration: @@ -39,10 +40,14 @@ custom: project: "carts" stage: ${opt:stage, self:provider.stage} region: ${opt:region, self:provider.region} + wafPlugin: + name: ${self:service}-${self:custom.stage}-webacl-waf + wafExcludeRules: + awsCommon: + - "SizeRestrictions_BODY" serverlessTerminationProtection: stages: - main - - master - val - production sesSourceEmailAddress: ${ssm:/configuration/${self:custom.stage}/sesSourceEmailAddress, ssm:/configuration/default/sesSourceEmailAddress, ""} @@ -116,6 +121,18 @@ resources: StringAttributeConstraints: MinLength: 0 MaxLength: 256 + UserPoolAddOns: + AdvancedSecurityMode: ENFORCED + UserPoolTags: + Name: ${self:custom.stage}-user-pool + + # Associate the WAF Web ACL with the Cognito User Pool + CognitoUserPoolWAFAssociation: + Type: 'AWS::WAFv2::WebACLAssociation' + Properties: + ResourceArn: !GetAtt CognitoUserPool.Arn + WebACLArn: !GetAtt WafPluginAcl.Arn + CognitoUserPoolClient: Type: AWS::Cognito::UserPoolClient Properties: diff --git a/services/ui-auth/yarn.lock b/services/ui-auth/yarn.lock index 4c68382e1..ac8172516 100644 --- a/services/ui-auth/yarn.lock +++ b/services/ui-auth/yarn.lock @@ -2,411 +2,404 @@ # yarn lockfile v1 -"@aws-crypto/ie11-detection@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" - integrity sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== - dependencies: - tslib "^1.11.1" - -"@aws-crypto/sha256-browser@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" - integrity sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== - dependencies: - "@aws-crypto/ie11-detection" "^3.0.0" - "@aws-crypto/sha256-js" "^3.0.0" - "@aws-crypto/supports-web-crypto" "^3.0.0" - "@aws-crypto/util" "^3.0.0" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" "@aws-sdk/util-locate-window" "^3.0.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" -"@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" - integrity sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== dependencies: - "@aws-crypto/util" "^3.0.0" + "@aws-crypto/util" "^5.2.0" "@aws-sdk/types" "^3.222.0" - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/supports-web-crypto@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" - integrity sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== dependencies: - tslib "^1.11.1" + tslib "^2.6.2" -"@aws-crypto/util@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" - integrity sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== dependencies: "@aws-sdk/types" "^3.222.0" - "@aws-sdk/util-utf8-browser" "^3.0.0" - tslib "^1.11.1" - -"@aws-sdk/client-cognito-identity-provider@^3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.596.0.tgz#ffa1e49bb58e216ed09b43b7fbc8b51dbac243cf" - integrity sha512-4rznKmxVm2HdgSNbHd59G1ahMkyclzQGiEsYxDnG1RZH1oM6Awoxt2laAL0rYEKSUn/+NyDABMpog73xGSvvpQ== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-cognito-identity-provider@^3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.621.0.tgz#7e5d85943fff1cfb0379866c2c3b3c91fd3f4ffa" + integrity sha512-Tu2m18zW87gJwme6J74p/ZrfC5eJ3kv4yXpCAkfOz1JBO0vfxdoZIkkZ94G5tuCpiS5kljwS6GXpsKOojpVXcg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/client-sts" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.596.0.tgz#9d75619043e5f0e3d985d800c3df06d9a8a3bfeb" - integrity sha512-KnTWtKzO0N+rMdIrVwbewFp4FAvVWBV/ekCAh5w7EN+uAvBHxMoFElE2RwlcRF/gH1/F715OspPMvOxPom6bMA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sts" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso-oidc@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" + integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.592.0.tgz#90462e744998990079c28a083553090af9ac2902" - integrity sha512-w+SuW47jQqvOC7fonyjFjsOh3yjqJ+VpWdVrmrl0E/KryBE7ho/Wn991Buf/EiHHeJikoWgHsAIPkBH29+ntdA== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" + integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.596.0.tgz#236ed4b898265c737f860060adab422ea8ec6383" - integrity sha512-37+WQDjgmqS/YXj3vPzIVIrbXaFcZ1WXk715AMGIPBZn9Y2/wr2bmSTpX7bsMyn0G8+LxmoIxFcG7n1Gu0nvLg== - dependencies: - "@aws-crypto/sha256-browser" "3.0.0" - "@aws-crypto/sha256-js" "3.0.0" - "@aws-sdk/client-sso-oidc" "3.596.0" - "@aws-sdk/core" "3.592.0" - "@aws-sdk/credential-provider-node" "3.596.0" - "@aws-sdk/middleware-host-header" "3.577.0" - "@aws-sdk/middleware-logger" "3.577.0" - "@aws-sdk/middleware-recursion-detection" "3.577.0" - "@aws-sdk/middleware-user-agent" "3.587.0" - "@aws-sdk/region-config-resolver" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@aws-sdk/util-user-agent-browser" "3.577.0" - "@aws-sdk/util-user-agent-node" "3.587.0" - "@smithy/config-resolver" "^3.0.1" - "@smithy/core" "^2.2.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/hash-node" "^3.0.0" - "@smithy/invalid-dependency" "^3.0.0" - "@smithy/middleware-content-length" "^3.0.0" - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-retry" "^3.0.3" - "@smithy/middleware-serde" "^3.0.0" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" +"@aws-sdk/client-sts@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" + integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.621.0" + "@aws-sdk/core" "3.621.0" + "@aws-sdk/credential-provider-node" "3.621.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.1" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.3" - "@smithy/util-defaults-mode-node" "^3.0.3" - "@smithy/util-endpoints" "^2.0.1" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.13" + "@smithy/util-defaults-mode-node" "^3.0.13" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.592.0.tgz#d903a3993f8ba6836480314c2a8af8b7857bb943" - integrity sha512-gLPMXR/HXDP+9gXAt58t7gaMTvRts9i6Q7NMISpkGF54wehskl5WGrbdtHJFylrlJ5BQo3XVY6i661o+EuR1wg== - dependencies: - "@smithy/core" "^2.2.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/signature-v4" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - fast-xml-parser "4.2.5" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.587.0.tgz#40435be331773e4b1b665a1f4963518d4647505c" - integrity sha512-Hyg/5KFECIk2k5o8wnVEiniV86yVkhn5kzITUydmNGCkXdBFHMHRx6hleQ1bqwJHbBskyu8nbYamzcwymmGwmw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.596.0.tgz#ad81565e37f84c860a7a5f82ff256a962397816c" - integrity sha512-nnmvEsz1KJgRmfSZJPWuzbxPRXu8Y+/78Ifa1jY3fQKSKdEJfXMDsjPljJvMDBl4dZ8pf5Hwx+S/ONnMEDwYEA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" +"@aws-sdk/core@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" + integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== + dependencies: + "@smithy/core" "^2.3.1" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" + integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.596.0.tgz#2e5155b52590dbc768a2775e0b5266287a00d8ca" - integrity sha512-c7PLtd7GbnOVAc5sk3sVlHxLvEsM8RF96rsBGlRo4AVpil/lXLKyNv9VarS4w/ZZZoRbJRyZ+m92PjNcLvpTDQ== +"@aws-sdk/credential-provider-ini@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" + integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.596.0": - version "3.596.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.596.0.tgz#d70bce8de4f1849558215117d73f7433bfdcdc24" - integrity sha512-F4MLyXpQyie1AnJS9n7TIRL0aF7YH8tKMIJXDsM5OXpSZi2en+yR6SzsxvHf5dwS2Ga8LUdEJyiyS2NoebaJGA== +"@aws-sdk/credential-provider-node@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" + integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== dependencies: - "@aws-sdk/credential-provider-env" "3.587.0" - "@aws-sdk/credential-provider-http" "3.596.0" - "@aws-sdk/credential-provider-ini" "3.596.0" - "@aws-sdk/credential-provider-process" "3.587.0" - "@aws-sdk/credential-provider-sso" "3.592.0" - "@aws-sdk/credential-provider-web-identity" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.621.0" + "@aws-sdk/credential-provider-ini" "3.621.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.621.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.587.0.tgz#1e5cc562a68438a77f464adc0493b02e04dd3ea1" - integrity sha512-V4xT3iCqkF8uL6QC4gqBJg/2asd/damswP1h9HCfqTllmPWzImS+8WD3VjgTLw5b0KbTy+ZdUhKc0wDnyzkzxg== +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.592.0": - version "3.592.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.592.0.tgz#340649b4f5b4fbcb816f248089979d7d38ce96d3" - integrity sha512-fYFzAdDHKHvhtufPPtrLdSv8lO6GuW3em6n3erM5uFdpGytNpjXvr3XGokIsuXcNkETAY/Xihg+G9ksNE8WJxQ== +"@aws-sdk/credential-provider-sso@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" + integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== dependencies: - "@aws-sdk/client-sso" "3.592.0" - "@aws-sdk/token-providers" "3.587.0" - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/client-sso" "3.621.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.587.0.tgz#daa41e3cc9309594327056e431b8065145c5297a" - integrity sha512-XqIx/I2PG7kyuw3WjAP9wKlxy8IvFJwB8asOFT1xPFoVfZYKIogjG9oLP5YiRtfvDkWIztHmg5MlVv3HdJDGRw== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-host-header@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.577.0.tgz#a3fc626d409ec850296740478c64ef5806d8b878" - integrity sha512-9ca5MJz455CODIVXs0/sWmJm7t3QO4EUa1zf8pE8grLpzf0J94bz/skDWm37Pli13T3WaAQBHCTiH2gUVfCsWg== +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.577.0.tgz#6da3b13ae284fb3930961f0fc8e20b1f6cf8be30" - integrity sha512-aPFGpGjTZcJYk+24bg7jT4XdIp42mFXSuPt49lw5KygefLyJM/sB0bKKqPYYivW0rcuZ9brQ58eZUNthrzYAvg== +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-recursion-detection@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.577.0.tgz#fff76abc6d4521636f9e654ce5bf2c4c79249417" - integrity sha512-pn3ZVEd2iobKJlR3H+bDilHjgRnNrQ6HMmK9ZzZw89Ckn3Dcbv48xOv4RJvu0aU8SDLl/SNCxppKjeLDTPGBNA== - dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.587.0.tgz#2a68900cfb29afbae2952d901de4fcb91850bd3d" - integrity sha512-SyDomN+IOrygLucziG7/nOHkjUXES5oH5T7p8AboO8oakMQJdnudNXiYWTicQWO52R51U6CR27rcMPTGeMedYA== +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== dependencies: - "@aws-sdk/types" "3.577.0" - "@aws-sdk/util-endpoints" "3.587.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.587.0.tgz#ad1c15494f44dfc4c7a7bce389f8b128dace923f" - integrity sha512-93I7IPZtulZQoRK+O20IJ4a1syWwYPzoO2gc3v+/GNZflZPV3QJXuVbIm0pxBsu0n/mzKGUKqSOLPIaN098HcQ== +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@aws-sdk/token-providers@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.587.0.tgz#f9fd2ddfc554c1370f8d0f467c76a4c8cb904ae6" - integrity sha512-ULqhbnLy1hmJNRcukANBWJmum3BbjXnurLPSFXoGdV0llXYlG55SzIla2VYqdveQEEjmsBuTZdFvXAtNpmS5Zg== +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/types@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.577.0.tgz#7700784d368ce386745f8c340d9d68cea4716f90" - integrity sha512-FT2JZES3wBKN/alfmhlo+3ZOq/XJ0C7QOZcDNrpKjB0kqYoKjhVKZ/Hx6ArR0czkKfHzBBEs6y40ebIHx2nSmA== +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -417,14 +410,14 @@ "@smithy/types" "^2.5.0" tslib "^2.5.0" -"@aws-sdk/util-endpoints@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.587.0.tgz#781e0822a95dba15f7ac8f22a6f6d7f0c8819818" - integrity sha512-8I1HG6Em8wQWqKcRW6m358mqebRVNpL8XrrEoT4In7xqkKkmYtHRNVYP6lcmiQh5pZ/c/FXu8dSchuFIWyEtqQ== +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" - "@smithy/util-endpoints" "^2.0.1" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -434,402 +427,259 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.577.0": - version "3.577.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.577.0.tgz#d4d2cdb3a2b3d1c8b35f239ee9f7b2c87bee66ea" - integrity sha512-zEAzHgR6HWpZOH7xFgeJLc6/CzMcx4nxeQolZxVZoB5pPaJd3CjyRhZN0xXeZB0XIRCWmb4yJBgyiugXLNMkLA== +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.587.0": - version "3.587.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.587.0.tgz#a6bf422f307a68e16a6c19ee5d731fcc32696fb9" - integrity sha512-Pnl+DUe/bvnbEEDHP3iVJrOtE3HbFJBPgsD6vJ+ml/+IYk1Eq49jEG+EHZdNTPz3SDG0kbp2+7u41MKYJHR/iQ== +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== dependencies: - "@aws-sdk/types" "3.577.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@aws-sdk/util-utf8-browser@^3.0.0": - version "3.259.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" - integrity sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== - dependencies: - tslib "^2.3.1" - -"@smithy/abort-controller@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.0.tgz#5815f5d4618e14bf8d031bb98a99adabbb831168" - integrity sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/abort-controller@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.0.1.tgz#bb8debe1c23ca62a61b33a9ee2918f5a79d81928" - integrity sha512-Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA== +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.1.tgz#4e0917e5a02139ef978a1ed470543ab41dd3626b" - integrity sha512-hbkYJc20SBDz2qqLzttjI/EqXemtmWk0ooRznLsiXp3066KQRTvuKHa7U4jCZCJq6Dozqvy0R1/vNESC9inPJg== +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - tslib "^2.6.2" - -"@smithy/core@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.2.1.tgz#92ed71eb96ef16d5ac8b23dbdf913bcb225ab875" - integrity sha512-R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA== - dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-retry" "^3.0.4" - "@smithy/middleware-serde" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.0.tgz#7e58b78aa8de13dd04e94829241cd1cbde59b6d3" - integrity sha512-q4A4d38v8pYYmseu/jTS3Z5I3zXlEOe5Obi+EJreVKgSVyWUHOd7/yaVCinC60QG4MRyCs98tcxBH1IMC0bu7Q== +"@smithy/core@^2.3.1": + version "2.3.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" + integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.13" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.1.tgz#dacfdf6e70d639fac4a0f57c42ce13f0ed14ff22" - integrity sha512-uaH74i5BDj+rBwoQaXioKpI0SHBJFtOVwzrCpxZxphOW0ki5jhj7dXvDMYM2IJem8TpdFvS2iC08sjOblfFGFg== +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-base64" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz#eff4056e819b3591d1c5d472ee58c2981886920a" - integrity sha512-0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ== +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== dependencies: - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.0.tgz#f44b5fff193e241c1cdcc957b296b60f186f0e59" - integrity sha512-84qXstNemP3XS5jcof0el6+bDfjzuvhJPQTEfro3lgtbCtKgzPm3MgiS6ehXVPjeQ5+JS0HqmTz8f/RYfzHVxw== +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.0.tgz#21cb6b5203ee15321bfcc751f21f7a19536d4ae8" - integrity sha512-F6wBBaEFgJzj0s4KUlliIGPmqXemwP6EavgvDqYwCH40O5Xr2iMHvS8todmGVZtuJCorBkXsYLyTu4PuizVq5g== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/is-array-buffer@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" - integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== - dependencies: - tslib "^2.6.2" - -"@smithy/middleware-content-length@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.0.tgz#084b3d22248967885d496eb0b105d9090e8ababd" - integrity sha512-3C4s4d/iGobgCtk2tnWW6+zSTOBg1PRAm2vtWZLdriwTroFbbWNSr3lcyzHdrQHnEXYCC5K52EbpfodaIUY8sg== - dependencies: - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.1.tgz#49e8defb8e892e70417bd05f1faaf207070f32c7" - integrity sha512-lQ/UOdGD4KM5kLZiAl0q8Qy3dPbynvAXKAdXnYlrA1OpaUwr+neSsVokDZpY6ZVb5Yx8jnus29uv6XWpM9P4SQ== - dependencies: - "@smithy/middleware-serde" "^3.0.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - "@smithy/url-parser" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz#93bb575a25bb0bd5d1d18cd77157ccb2ba15112a" - integrity sha512-gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w== - dependencies: - "@smithy/middleware-serde" "^3.0.1" - "@smithy/node-config-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" - "@smithy/url-parser" "^3.0.1" - "@smithy/util-middleware" "^3.0.1" - tslib "^2.6.2" - -"@smithy/middleware-retry@^3.0.3": +"@smithy/invalid-dependency@^3.0.3": version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.3.tgz#8e9af1c9db4bc8904d73126225211b42b562f961" - integrity sha512-Wve1qzJb83VEU/6q+/I0cQdAkDnuzELC6IvIBwDzUEiGpKqXgX1v10FUuZGbRS6Ov/P+HHthcAoHOJZQvZNAkA== + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/service-error-classification" "^3.0.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" - "@smithy/util-retry" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz#4f1a23c218fe279659c3d88ec1c18bf19938eba6" - integrity sha512-Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg== +"@smithy/is-array-buffer@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" + integrity sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== dependencies: - "@smithy/node-config-provider" "^3.1.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/service-error-classification" "^3.0.1" - "@smithy/smithy-client" "^3.1.2" - "@smithy/types" "^3.1.0" - "@smithy/util-middleware" "^3.0.1" - "@smithy/util-retry" "^3.0.1" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.0.tgz#786da6a6bc0e5e51d669dac834c19965245dd302" - integrity sha512-I1vKG1foI+oPgG9r7IMY1S+xBnmAn1ISqployvqkwHoSb8VPsngHDTOgYGYBonuOKndaWRUGJZrKYYLB+Ane6w== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/middleware-serde@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz#566ec46ee84873108c1cea26b3f3bd2899a73249" - integrity sha512-ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw== - dependencies: - "@smithy/types" "^3.1.0" - tslib "^2.6.2" - -"@smithy/middleware-stack@^3.0.0": +"@smithy/is-array-buffer@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.0.tgz#00f112bae7af5fc3bd37d4fab95ebce0f17a7774" - integrity sha512-+H0jmyfAyHRFXm6wunskuNAqtj7yfmwFB6Fp37enytp2q047/Od9xetEaUbluyImOlGnGpaVGaVfjwawSr+i6Q== + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz#9a95c2d46b8768946a9eec7f935feaddcffa5e7a" + integrity sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ== dependencies: - "@smithy/types" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz#9418f1295efda318c181bf3bca65173a75d133e5" - integrity sha512-fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA== +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.0": +"@smithy/middleware-endpoint@^3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.0.tgz#e962987c4e2e2b8b50397de5f4745eb21ee7bdbb" - integrity sha512-ngfB8QItUfTFTfHMvKuc2g1W60V1urIgZHqD1JNFZC2tTWXahqf2XvKXqcBS7yZqR7GqkQQZy11y/lNOUWzq7Q== - dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/shared-ini-file-loader" "^3.1.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/node-config-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz#a361ab228d2229b03cc2fbdfd304055c38127614" - integrity sha512-z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA== - dependencies: - "@smithy/property-provider" "^3.1.1" - "@smithy/shared-ini-file-loader" "^3.1.1" - "@smithy/types" "^3.1.0" - tslib "^2.6.2" - -"@smithy/node-http-handler@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.0.tgz#e771ea95d03e259f04b7b37e8aece8a4fffc8cdc" - integrity sha512-3trD4r7NOMygwLbUJo4eodyQuypAWr7uvPnebNJ9a70dQhVn+US8j/lCnvoJS6BXfZeF7PkkkI0DemVJw+n+eQ== - dependencies: - "@smithy/abort-controller" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/querystring-builder" "^3.0.0" - "@smithy/types" "^3.0.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + +"@smithy/middleware-retry@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" + integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" tslib "^2.6.2" + uuid "^9.0.1" -"@smithy/node-http-handler@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz#40e1ebe00aeb628a46a3a12b14ad6cabb69b576e" - integrity sha512-hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA== +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== dependencies: - "@smithy/abort-controller" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/querystring-builder" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.0.tgz#b78d4964a1016b90331cc0c770b472160361fde7" - integrity sha512-Tj3+oVhqdZgemjCiWjFlADfhvLF4C/uKDuKo7/tlEsRQ9+3emCreR2xndj970QSRSsiCEU8hZW3/8JQu+n5w4Q== +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.1.tgz#4849b69b83ac97e68e80d2dc0c2b98ce5950dffe" - integrity sha512-YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw== +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.0.tgz#04df3b5674b540323f678e7c4113e8abd8b26432" - integrity sha512-qOQZOEI2XLWRWBO9AgIYuHuqjZ2csyr8/IlgFDHDNuIgLAMRx2Bl8ck5U5D6Vh9DPdoaVpuzwWMa0xcdL4O/AQ== +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== dependencies: - "@smithy/types" "^3.0.0" + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.0.1.tgz#7b57080565816f229d2391726f537e13371c7e38" - integrity sha512-eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg== +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.0.tgz#48a9aa7b700e8409368c21bc0adf7564e001daea" - integrity sha512-bW8Fi0NzyfkE0TmQphDXr1AmBDbK01cA4C1Z7ggwMAU5RDz5AAv/KmoRwzQAS0kxXNf/D2ALTEgwK0U2c4LtRg== +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== dependencies: - "@smithy/types" "^3.0.0" - "@smithy/util-uri-escape" "^3.0.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz#8fb20e1d13154661612954c5ba448e0875be6118" - integrity sha512-vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q== +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.0.tgz#fa1ed0cee408cd4d622070fa874bc50ac1a379b7" - integrity sha512-UzHwthk0UEccV4dHzPySnBy34AWw3V9lIqUTxmozQ+wPDAO9csCWMfOLe7V9A2agNYy7xE+Pb0S6K/J23JSzfQ== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/querystring-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz#68589196fedf280aad2c0a69a2a016f78b2137cf" - integrity sha512-Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q== +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.0.tgz#06a45cb91b15b8b0d5f3b1df2b3743d2ca42f5c4" - integrity sha512-3BsBtOUt2Gsnc3X23ew+r2M71WwtpHfEDGhHYHSDg6q1t8FrWh15jT25DLajFV1H+PpxAJ6gqe9yYeRUsmSdFA== - dependencies: - "@smithy/types" "^3.0.0" - -"@smithy/service-error-classification@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz#23db475d3cef726e8bf3435229e6e04e4de92430" - integrity sha512-ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA== - dependencies: - "@smithy/types" "^3.1.0" - -"@smithy/shared-ini-file-loader@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.0.tgz#a4cb9304c3be1c232ec661132ca88d177ac7a5b1" - integrity sha512-dAM7wSX0NR3qTNyGVN/nwwpEDzfV9T/3AN2eABExWmda5VqZKSsjlINqomO5hjQWGv+IIkoXfs3u2vGSNz8+Rg== +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" + "@smithy/types" "^3.3.0" -"@smithy/shared-ini-file-loader@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz#752ecd8962a660ded75d25341a48feb94f145a6f" - integrity sha512-nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g== +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== dependencies: - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-3.0.0.tgz#f536d0abebfeeca8e9aab846a4042658ca07d3b7" - integrity sha512-kXFOkNX+BQHe2qnLxpMEaCRGap9J6tUGLzc3A9jdn+nD4JdMwCKTJ+zFwQ20GkY+mAXGatyTw3HcoUlR39HwmA== +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/types" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.1.tgz#9aa770edd9b6277dc4124c924c617a436cdb670e" - integrity sha512-tj4Ku7MpzZR8cmVuPcSbrLFVxmptWktmJMwST/uIEq4sarabEdF8CbmQdYB7uJ/X51Qq2EYwnRsoS7hdR4B7rA== - dependencies: - "@smithy/middleware-endpoint" "^3.0.1" - "@smithy/middleware-stack" "^3.0.0" - "@smithy/protocol-http" "^4.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-stream" "^3.0.1" - tslib "^2.6.2" - -"@smithy/smithy-client@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.2.tgz#1c27ab4910bbfd6c0bc04ddd8412494e7a7daba7" - integrity sha512-f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ== +"@smithy/smithy-client@^3.1.11": + version "3.1.11" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" + integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== dependencies: - "@smithy/middleware-endpoint" "^3.0.2" - "@smithy/middleware-stack" "^3.0.1" - "@smithy/protocol-http" "^4.0.1" - "@smithy/types" "^3.1.0" - "@smithy/util-stream" "^3.0.2" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -839,36 +689,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.0.0.tgz#00231052945159c64ffd8b91e8909d8d3006cb7e" - integrity sha512-VvWuQk2RKFuOr98gFhjca7fkBS+xLLURT8bUjk5XQoV0ZLm7WPwWPPY3/AwzTLuUBDeoKDCthfe1AsTUWaSEhw== +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== dependencies: tslib "^2.6.2" -"@smithy/types@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.1.0.tgz#e2eb2e2130026a8a0631b2605c17df1975aa99d6" - integrity sha512-qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw== - dependencies: - tslib "^2.6.2" - -"@smithy/url-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.0.tgz#5fdc77cd22051c1aac6531be0315bfcba0fa705d" - integrity sha512-2XLazFgUu+YOGHtWihB3FSLAfCUajVfNBXGGYjOaVKjLAuAxx3pSBY3hBgLzIgB17haf59gOG3imKqTy8mcrjw== - dependencies: - "@smithy/querystring-parser" "^3.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/url-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.1.tgz#5451fc7034e9eda112696d1a9508746a7f8b0521" - integrity sha512-G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg== +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== dependencies: - "@smithy/querystring-parser" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -894,6 +728,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-buffer-from@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz#6fc88585165ec73f8681d426d96de5d402021e4b" + integrity sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + dependencies: + "@smithy/is-array-buffer" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-buffer-from@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz#559fc1c86138a89b2edaefc1e6677780c24594e3" @@ -909,37 +751,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.3.tgz#6fff11a6c407ca1d5a1dc009768bd09271b199c2" - integrity sha512-3DFON2bvXJAukJe+qFgPV/rorG7ZD3m4gjCXHD1V5z/tgKQp5MCTCLntrd686tX6tj8Uli3lefWXJudNg5WmCA== +"@smithy/util-defaults-mode-browser@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" + integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== dependencies: - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.3.tgz#0b52ba9cb1138ee9076feba9a733462b2e2e6093" - integrity sha512-D0b8GJXecT00baoSQ3Iieu3k3mZ7GY8w1zmg8pdogYrGvWJeLcIclqk2gbkG4K0DaBGWrO6v6r20iwIFfDYrmA== +"@smithy/util-defaults-mode-node@^3.0.13": + version "3.0.13" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" + integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== dependencies: - "@smithy/config-resolver" "^3.0.1" - "@smithy/credential-provider-imds" "^3.1.0" - "@smithy/node-config-provider" "^3.1.0" - "@smithy/property-provider" "^3.1.0" - "@smithy/smithy-client" "^3.1.1" - "@smithy/types" "^3.0.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.11" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.1.tgz#4ea8069bfbf3ebbcbe106b5156ff59a7a627b7dd" - integrity sha512-ZRT0VCOnKlVohfoABMc8lWeQo/JEFuPWctfNRXgTHbyOVssMOLYFUNWukxxiHRGVAhV+n3c0kPW+zUqckjVPEA== +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== dependencies: - "@smithy/node-config-provider" "^3.1.0" - "@smithy/types" "^3.0.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -949,62 +791,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.0.tgz#64d775628b99a495ca83ce982f5c83aa45f1e894" - integrity sha512-q5ITdOnV2pXHSVDnKWrwgSNTDBAMHLptFE07ua/5Ty5WJ11bvr0vk2a7agu7qRhrCFRQlno5u3CneU5EELK+DQ== - dependencies: - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/util-middleware@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.1.tgz#3e0eabaf936e62651a0b9a7c7c3bbe43d3971c91" - integrity sha512-WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ== - dependencies: - "@smithy/types" "^3.1.0" - tslib "^2.6.2" - -"@smithy/util-retry@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.0.tgz#8a0c47496aab74e1dfde4905d462ad636a8824bb" - integrity sha512-nK99bvJiziGv/UOKJlDvFF45F00WgPLKVIGUfAK+mDhzVN2hb/S33uW2Tlhg5PVBoqY7tDVqL0zmu4OxAHgo9g== - dependencies: - "@smithy/service-error-classification" "^3.0.0" - "@smithy/types" "^3.0.0" - tslib "^2.6.2" - -"@smithy/util-retry@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.1.tgz#24037ff87a314a1ac99f80da43f579ae2352fe18" - integrity sha512-5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw== +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== dependencies: - "@smithy/service-error-classification" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.1.tgz#3cf527bcd3fec82c231c38d47dd75f3364747edb" - integrity sha512-7F7VNNhAsfMRA8I986YdOY5fE0/T1/ZjFF6OLsqkvQVNP3vZ/szYDfGCyphb7ioA09r32K/0qbSFfNFU68aSzA== +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== dependencies: - "@smithy/fetch-http-handler" "^3.0.1" - "@smithy/node-http-handler" "^3.0.0" - "@smithy/types" "^3.0.0" - "@smithy/util-base64" "^3.0.0" - "@smithy/util-buffer-from" "^3.0.0" - "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-utf8" "^3.0.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.0.2.tgz#ed1377bfe824d8acfc105ab2d17ec4f376382cb2" - integrity sha512-n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA== +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== dependencies: - "@smithy/fetch-http-handler" "^3.0.2" - "@smithy/node-http-handler" "^3.0.1" - "@smithy/types" "^3.1.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1018,6 +829,14 @@ dependencies: tslib "^2.6.2" +"@smithy/util-utf8@^2.0.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" + integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + dependencies: + "@smithy/util-buffer-from" "^2.2.0" + tslib "^2.6.2" + "@smithy/util-utf8@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-3.0.0.tgz#1a6a823d47cbec1fd6933e5fc87df975286d9d6a" @@ -1031,10 +850,10 @@ bowser@^2.11.0: resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.11.0.tgz#5ca3c35757a7aa5771500c70a73a9f91ef420a8f" integrity sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== -fast-xml-parser@4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz#a6747a09296a6cb34f2ae634019bf1738f3b421f" - integrity sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== dependencies: strnum "^1.0.5" @@ -1043,12 +862,7 @@ strnum@^1.0.5: resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== -tslib@^1.11.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2: +tslib@^2.5.0, tslib@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== diff --git a/services/ui-src/package.json b/services/ui-src/package.json index 40c10cc74..39edf88ae 100644 --- a/services/ui-src/package.json +++ b/services/ui-src/package.json @@ -17,11 +17,11 @@ "@testing-library/user-event": "^14.5.1", "@vitejs/plugin-react": "^4.2.1", "aws-amplify": "^5.3.4", + "date-fns": "^3.6.0", "font-awesome": "^4.7.0", "jsonpath": "^1.0.2", "launchdarkly-react-client-sdk": "^3.3.2", "mathjs": "^7.5.0", - "moment": "^2.29.4", "prop-types": "^15.7.2", "react": "^16.13.1", "react-data-table-component": "^6.11.6", @@ -36,7 +36,7 @@ "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0", "sass": "^1.77.1", - "vite": "^5.2.11", + "vite": "^5.4.6", "vite-tsconfig-paths": "^4.3.2" }, "scripts": { diff --git a/services/ui-src/serverless.yml b/services/ui-src/serverless.yml index 711d6d61f..eff1d6bdf 100644 --- a/services/ui-src/serverless.yml +++ b/services/ui-src/serverless.yml @@ -29,7 +29,6 @@ custom: serverlessTerminationProtection: stages: - main - - master - val - production api_region: ${param:ApiRegion} diff --git a/services/ui-src/src/AppRoutes.jsx b/services/ui-src/src/AppRoutes.jsx index d75a296c7..93c69821e 100644 --- a/services/ui-src/src/AppRoutes.jsx +++ b/services/ui-src/src/AppRoutes.jsx @@ -5,7 +5,7 @@ import Home from "./components/layout/Home"; import Footer from "./components/layout/Footer"; import Print from "./components/sections/Print"; import Spinner from "./components/utils/Spinner"; -import Userinfo from "./components/sections/Userinfo"; +import UserInfo from "./components/sections/UserInfo"; import UserProfile from "./components/sections/UserProfile"; import { LocalLogins } from "./components/sections/login/LocalLogins"; import { useUser } from "./hooks/authHooks"; @@ -45,7 +45,7 @@ const AppRoutes = () => { <Home role={user?.userRole || ""} /> <Timeout /> {/* These routes are available to everyone, so define them here */} - <Route exact path="/userinfo" component={Userinfo} /> + <Route exact path="/userinfo" component={UserInfo} /> <Route path="/user/profile" component={UserProfile} /> <Route path="/print" component={Print} /> <Route path="/get-help" component={GetHelp} /> diff --git a/services/ui-src/src/actions/uncertify.js b/services/ui-src/src/actions/uncertify.js index b908de0d5..d9bfefc74 100644 --- a/services/ui-src/src/actions/uncertify.js +++ b/services/ui-src/src/actions/uncertify.js @@ -6,7 +6,7 @@ export const UNCERTIFY = "UNCERTIFY"; export const UNCERTIFY_SUCCESS = "UNCERTIFY_SUCCESS"; export const UNCERTIFY_FAILURE = "UNCERTIFY_FAILURE"; -export const theUncertify = +export const uncertifyReport = (stateCode, reportYear) => async (dispatch, getState) => { const stateObject = getState(); const user = stateObject.stateUser.currentUser; diff --git a/services/ui-src/src/components/fields/DataGrid.jsx b/services/ui-src/src/components/fields/DataGrid.jsx index 4b913d5b1..99a40a1ab 100644 --- a/services/ui-src/src/components/fields/DataGrid.jsx +++ b/services/ui-src/src/components/fields/DataGrid.jsx @@ -1,12 +1,13 @@ import React, { useEffect, useState } from "react"; +import { useDispatch, useSelector } from "react-redux"; import PropTypes from "prop-types"; import Question from "./Question"; -import { connect, useDispatch } from "react-redux"; import { ADD_TO_TOTAL, FINISH_CALCULATION } from "../../store/lastYearTotals"; -const DataGrid = ({ question, lastYearFormData }) => { +const DataGrid = ({ question, printView }) => { const [renderQuestions, setRenderQuestions] = useState([]); const [questionsToSet, setQuestionsToSet] = useState([]); + const lastYearFormData = useSelector((state) => state.lastYearFormData); const dispatch = useDispatch(); const rowStyle = @@ -138,6 +139,7 @@ const DataGrid = ({ question, lastYearFormData }) => { hideNumber={question.type !== "fieldset"} question={question.question} prevYear={question.prevYear} + printView={printView} /> </div> ); @@ -148,16 +150,7 @@ const DataGrid = ({ question, lastYearFormData }) => { DataGrid.propTypes = { question: PropTypes.object.isRequired, - year: PropTypes.number.isRequired, - state: PropTypes.string.isRequired, - lastYearFormData: PropTypes.object.isRequired, + printView: PropTypes.bool, }; -const mapStateToProps = (state) => ({ - year: state.formData[0].contents.section.year, - state: state.formData[0].contents.section.state, - lastYearFormData: state.lastYearFormData, - lastYearTotals: state.lastYearTotals, -}); - -export default connect(mapStateToProps)(DataGrid); +export default DataGrid; diff --git a/services/ui-src/src/components/fields/Fieldset.jsx b/services/ui-src/src/components/fields/Fieldset.jsx index f4982f4ae..d70c69073 100644 --- a/services/ui-src/src/components/fields/Fieldset.jsx +++ b/services/ui-src/src/components/fields/Fieldset.jsx @@ -3,9 +3,9 @@ import PropTypes from "prop-types"; import Question from "./Question"; import DataGrid from "./DataGrid"; -import { SynthesizedTable } from "./SynthesizedTable"; +import SynthesizedTable from "./SynthesizedTable"; import { NoninteractiveTable } from "./NoninteractiveTable"; -import { SynthesizedValue } from "./SynthesizedValue"; +import SynthesizedValue from "./SynthesizedValue"; /* * Not done: diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index fee83e44f..ecd344142 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -4,12 +4,54 @@ import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; import { generateQuestionNumber } from "../utils/helperFunctions"; -const Integer = ({ onChange, question, prevYear, ...props }) => { +const getPrevYearValue = (question, lastYearFormData) => { + let prevYearValue; + + // Split and create array from id + const splitID = question.id.split("-"); + + // the subquestion id (a, b, c, etc) + const questionId = splitID[5]; + + // Custom handling for -03-c-05 and -03-c-06 + if ( + splitID[1] === "03" && + splitID[2] === "c" && + (splitID[3] === "05" || splitID[3] === "06") && + questionId === "a" && + parseInt(splitID[4]) > 2 && + parseInt(splitID[4]) < 10 + ) { + // Set year to last year + splitID[0] = parseInt(splitID[0]) - 1; + splitID.pop(); + + const fieldsetId = splitID.join("-"); + const partIndex = parseInt(splitID[3]) - 1; + + // Get questions from last years JSON + const questions = + lastYearFormData?.[3]?.contents.section.subsections[2].parts[partIndex] + .questions; + + // Filter down to this question + const matchingQuestion = questions?.filter( + (question) => fieldsetId === question?.fieldset_info?.id + ); + + // The first will always be correct + if (matchingQuestion?.[0]) { + prevYearValue = matchingQuestion[0].questions[0].answer?.entry; + } + } + return prevYearValue; +}; + +const Integer = ({ onChange, question, prevYear, printView, ...props }) => { const [error, setError] = useState(false); const [answer, setAnswer] = useState(question.answer.entry); - const lastYearTotals = useSelector((state) => state.lastYearTotals); - const prevYearNumber = - lastYearTotals[question.id.substring(0, question.id.length - 2)]; + const lastYearFormData = useSelector((state) => state.lastYearFormData); + const change = ({ target: { name, value } }) => { const stripped = value.replace(/[^0-9]+/g, ""); const parsed = parseFloat(stripped); @@ -25,22 +67,26 @@ const Integer = ({ onChange, question, prevYear, ...props }) => { } }; - if (prevYearNumber && question.id.indexOf("-a") > -1) { + const isLessThanElevenMask = (value) => { return ( - <TextField - className="ds-c-input" - errorMessage={error} - label={`${generateQuestionNumber(question.id)} ${question.label}`} - hint={question.hint} - name={question.id} - numeric - onChange={change} - value={prevYearNumber} - {...props} - /> + printView && + question.mask === "lessThanEleven" && + value <= 10 && + value > 0 ); - } - const renderAnswer = (val) => (val || Number.isInteger(val) ? val : ""); // may attempt to rerender string on page load, so both val || isInteger + }; + + const renderAnswer = () => { + if (answer === null) { + const value = + getPrevYearValue(question, lastYearFormData) ?? prevYear?.value; + if (isLessThanElevenMask(value)) return "<11"; + return value; + } else { + if (isLessThanElevenMask(answer)) return "<11"; + return answer || Number.isInteger(answer) ? answer : ""; + } + }; return ( <TextField className="ds-c-input" @@ -50,7 +96,7 @@ const Integer = ({ onChange, question, prevYear, ...props }) => { name={question.id} numeric onChange={change} - value={answer != null ? renderAnswer(answer) : prevYear && prevYear.value} + value={renderAnswer()} {...props} /> ); @@ -59,7 +105,7 @@ Integer.propTypes = { onChange: PropTypes.func.isRequired, question: PropTypes.object.isRequired, prevYear: PropTypes.object, + printView: PropTypes.bool, }; -export { Integer }; export default Integer; diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index e9bb8095e..54f8672ab 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -6,7 +6,40 @@ import Integer from "./Integer"; import { screen, render, fireEvent } from "@testing-library/react"; const mockStore = configureMockStore(); -const store = mockStore({ lastYearTotals: { 2022: [] } }); +const lastYearFormData = [ + {}, + {}, + {}, + { + contents: { + section: { + subsections: [ + {}, + {}, + { + parts: [ + {}, + {}, + {}, + {}, + { + questions: [ + { + fieldset_info: { + id: "2022-03-c-05-03", + }, + questions: [{ answer: { entry: 3000 } }], + }, + ], + }, + ], + }, + ], + }, + }, + }, +]; +const store = mockStore({ lastYearTotals: { 2022: [] }, lastYearFormData }); const buildInteger = (intProps) => { return ( <Provider store={store}> @@ -14,6 +47,7 @@ const buildInteger = (intProps) => { </Provider> ); }; + describe("<Integer />", () => { it("should render correctly", () => { const props = { question: { id: "2023-00-a-01-01", answer: 1 } }; @@ -29,7 +63,7 @@ describe("<Integer />", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -45,7 +79,7 @@ describe("<Integer />", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: 123 }, }, }; @@ -61,7 +95,7 @@ describe("<Integer />", () => { const props = { question: { id: "2023-00-a-01-01", - label: "How many lightbulbs does it take to change a man?", + label: "Example Question", answer: { entry: "hope" }, }, }; @@ -73,4 +107,67 @@ describe("<Integer />", () => { expect(screen.queryByDisplayValue("raw text")).not.toBeInTheDocument(); expect(screen.getByRole("alert")).toBeInTheDocument(); }); + + it("should show <11 if passed >0 and <=10 with printView and lessThanEleven", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "5" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("<11")).toBeInTheDocument(); + expect(screen.queryByDisplayValue("5")).not.toBeInTheDocument(); + }); + + it("should show original answer if passed >=11 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "12" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("12")).toBeInTheDocument(); + }); + + it("should show original answer if passed 0 with printView and lessThanEleven mask", () => { + const props = { + question: { + id: "2023-00-a-01-01", + label: "Example Question", + answer: { entry: "0" }, + mask: "lessThanEleven", + }, + printView: true, + }; + + render(buildInteger(props)); + expect(screen.getByDisplayValue("0")).toBeInTheDocument(); + }); + + it("should render previous year value for appropriate 3c part 5 or 6 questions", () => { + const props = { + question: { + id: "2023-03-c-05-03-a", + label: "How much?", + answer: { entry: null }, + }, + }; + + render(buildInteger(props)); + + expect(screen.getByDisplayValue("3000")).toBeInTheDocument(); + const input = screen.getByRole("textbox"); + fireEvent.change(input, { target: { value: 234 } }); + expect(screen.getByDisplayValue("234")).toBeInTheDocument(); + }); }); diff --git a/services/ui-src/src/components/fields/Money.jsx b/services/ui-src/src/components/fields/Money.jsx index d7fcce141..dba1ac251 100644 --- a/services/ui-src/src/components/fields/Money.jsx +++ b/services/ui-src/src/components/fields/Money.jsx @@ -1,6 +1,6 @@ import React from "react"; import PropTypes from "prop-types"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; const Money = ({ ...props }) => { return <Integer {...props} inputMode="currency" mask="currency" />; diff --git a/services/ui-src/src/components/fields/Objective.jsx b/services/ui-src/src/components/fields/Objective.jsx index a7470e65e..abf0796e7 100644 --- a/services/ui-src/src/components/fields/Objective.jsx +++ b/services/ui-src/src/components/fields/Objective.jsx @@ -4,14 +4,13 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Objective = ({ headerRef, objective, objectiveNumber }) => { +const Objective = ({ headerRef, objective, objectiveNumber, printView }) => { const first = objective.questions[0].answer.readonly === true; const name = first ? objective.questions[0].answer.default_entry : objective.questions[0].answer.entry; const children = first ? objective.questions.slice(1) : objective.questions; - return ( <> <div className="accordion-header" ref={headerRef}> @@ -27,7 +26,7 @@ const Objective = ({ headerRef, objective, objectiveNumber }) => { <AccordionPanel> {children.map((q) => ( <div className="ds-c-choice__checkedChild"> - <Question key={q.id} question={q} /> + <Question key={q.id} question={q} printView={printView} /> </div> ))} </AccordionPanel> @@ -38,6 +37,7 @@ Objective.propTypes = { headerRef: PropTypes.func.isRequired, objective: PropTypes.object.isRequired, objectiveNumber: PropTypes.number.isRequired, + printView: PropTypes.bool, }; export { Objective }; diff --git a/services/ui-src/src/components/fields/Objectives.jsx b/services/ui-src/src/components/fields/Objectives.jsx index 4953ed21f..f80167133 100644 --- a/services/ui-src/src/components/fields/Objectives.jsx +++ b/services/ui-src/src/components/fields/Objectives.jsx @@ -16,9 +16,9 @@ const Objectives = ({ disabled, question, removeObjectiveFrom, + printView, }) => { const ref = useRef(); - const add = () => { addObjectiveTo(question.id); @@ -47,7 +47,12 @@ const Objectives = ({ > {question.questions.map((q, i) => ( <AccordionItem key={q.id}> - <Objective headerRef={ref} objective={q} objectiveNumber={i + 1} /> + <Objective + headerRef={ref} + objective={q} + objectiveNumber={i + 1} + printView={printView} + /> </AccordionItem> ))} @@ -92,6 +97,7 @@ Objectives.propTypes = { disabled: PropTypes.bool.isRequired, question: PropTypes.object.isRequired, removeObjectiveFrom: PropTypes.func.isRequired, + printView: PropTypes.bool, }; const mapDispatchToProps = { diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 0d1b20674..88716bebc 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -1,16 +1,15 @@ import React from "react"; import PropTypes from "prop-types"; -import { connect } from "react-redux"; - +import { useSelector, shallowEqual, useDispatch } from "react-redux"; +// components import { Checkbox } from "./Checkbox"; import { CheckboxFlag } from "./CheckboxFlag"; import { CMSLegend } from "./CMSLegend"; import { DateRange } from "./DateRange"; import { Email } from "./Email"; import { Fieldset } from "./Fieldset"; -//import { FileUpload } from "./FileUpload"; import UploadComponent from "../layout/UploadComponent"; -import { Integer } from "./Integer"; +import Integer from "./Integer"; import { MailingAddress } from "./MailingAddress"; import { Money } from "./Money"; import { Objectives } from "./Objectives"; @@ -22,7 +21,7 @@ import { Repeatables } from "./Repeatables"; import { SkipText } from "./SkipText"; import Text from "./Text"; import { TextMedium, TextMultiline, TextSmall } from "./TextOther"; - +// utils import { setAnswerEntry } from "../../actions/initial"; import { selectIsFormEditable } from "../../store/selectors"; import { showQuestionByPath } from "../utils/helperFunctions"; @@ -61,10 +60,9 @@ Container.propTypes = { const Question = ({ hideNumber, question, - readonly, - setAnswer, prevYear, tableTitle, + printView, ...props }) => { let Component = Text; @@ -72,17 +70,35 @@ const Question = ({ Component = questionTypes.get(question.type); } + const [stateUser, formData, formYear, reportStatus] = useSelector( + (state) => [ + state.stateUser, + state.formData, + state.global.formYear, + state.reportStatus, + ], + shallowEqual + ); + const dispatch = useDispatch(); + + const readonly = !selectIsFormEditable( + reportStatus, + formData, + stateUser, + formYear + ); + const prevYearDisabled = prevYear ? prevYear.disabled : false; const onChange = ({ target: { name: id, value } }) => { - setAnswer(id, value); + dispatch(setAnswerEntry(id, value)); }; const onClick = (e) => { if (e.target.checked) { - setAnswer(e.target.name, ""); + dispatch(setAnswerEntry(e.target.name, "")); } else if (e.target.checked !== undefined) { - setAnswer(e.target.name, e.target.value); + dispatch(setAnswerEntry(e.target.name, e.target.value)); } }; @@ -117,7 +133,6 @@ const Question = ({ questionType={question.type} /> )} - <Component {...props} id={props?.id || question?.id} @@ -136,6 +151,7 @@ const Question = ({ false } prevYear={prevYear} + printView={printView} /> {/* If there are subquestions, wrap them so they are indented with the @@ -145,7 +161,12 @@ const Question = ({ {shouldRenderChildren && ( <div className="ds-c-choice__checkedChild"> {question.questions.map((q) => ( - <Question key={q.id} question={q} setAnswer={setAnswer} /> + <Question + key={q.id} + question={q} + setAnswer={setAnswerEntry} + printView={printView} + /> ))} </div> )} @@ -153,24 +174,16 @@ const Question = ({ </div> ); }; + Question.propTypes = { hideNumber: PropTypes.bool, question: PropTypes.object.isRequired, - readonly: PropTypes.bool.isRequired, - setAnswer: PropTypes.func.isRequired, prevYear: PropTypes.object, tableTitle: PropTypes.string, + printView: PropTypes.bool, }; Question.defaultProps = { hideNumber: false, }; -const mapState = (state) => ({ - readonly: !selectIsFormEditable(state), -}); - -const mapDispatchToProps = { - setAnswer: setAnswerEntry, -}; - -export default connect(mapState, mapDispatchToProps)(Question); +export default Question; diff --git a/services/ui-src/src/components/fields/Repeatable.jsx b/services/ui-src/src/components/fields/Repeatable.jsx index f32413bf4..644f34a36 100644 --- a/services/ui-src/src/components/fields/Repeatable.jsx +++ b/services/ui-src/src/components/fields/Repeatable.jsx @@ -4,7 +4,7 @@ import { AccordionButton, AccordionPanel } from "@reach/accordion"; import Question from "./Question"; -const Repeatable = ({ headerRef, number, question, type }) => { +const Repeatable = ({ headerRef, number, question, type, printView }) => { const children = question.questions ? question.questions : []; const title = type ? `${type} ${number}` : `${number}`; @@ -20,7 +20,7 @@ const Repeatable = ({ headerRef, number, question, type }) => { </div> <AccordionPanel> {children.map((q) => ( - <Question key={q.id} question={q} /> + <Question key={q.id} question={q} printView={printView} /> ))} </AccordionPanel> </> @@ -31,6 +31,7 @@ Repeatable.propTypes = { number: PropTypes.number.isRequired, question: PropTypes.object.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatable.defaultProps = { diff --git a/services/ui-src/src/components/fields/Repeatables.jsx b/services/ui-src/src/components/fields/Repeatables.jsx index 14a13a72e..dc66bf27b 100644 --- a/services/ui-src/src/components/fields/Repeatables.jsx +++ b/services/ui-src/src/components/fields/Repeatables.jsx @@ -17,6 +17,7 @@ const Repeatables = ({ question, removeRepeatableFrom, type, + printView, }) => { const ref = useRef(); @@ -62,6 +63,7 @@ const Repeatables = ({ number={i + 1} question={q} type={question.typeLabel ? question.typeLabel : type} + printView={printView} /> </AccordionItem> ))} @@ -107,6 +109,7 @@ Repeatables.propTypes = { question: PropTypes.object.isRequired, removeRepeatableFrom: PropTypes.func.isRequired, type: PropTypes.oneOf([PropTypes.string, null]), + printView: PropTypes.bool, }; Repeatables.defaultProps = { type: null, diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index 87407c0ab..4f408b5bd 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -1,9 +1,40 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useSelector, shallowEqual } from "react-redux"; +//utils import synthesizeValue from "../../util/synthesize"; +//types +import PropTypes from "prop-types"; + +const SynthesizedTable = ({ question, tableTitle }) => { + const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = + useSelector( + (state) => [ + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData, + ], + shallowEqual + ); + + const rows = question.fieldset_info.rows.map((row) => + row.map((cell) => { + const value = synthesizeValue( + cell, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ); + + return typeof value.contents === "number" && Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }) + ); -const SynthesizedTable = ({ rows, question, tableTitle }) => { return ( <div className="synthesized-table ds-u-margin-top--2"> <table @@ -60,24 +91,7 @@ const SynthesizedTable = ({ rows, question, tableTitle }) => { }; SynthesizedTable.propTypes = { question: PropTypes.object.isRequired, - rows: PropTypes.array.isRequired, + tableTitle: PropTypes.string.isOptional, }; -const mapStateToProps = (state, { question }) => { - const rows = question.fieldset_info.rows.map((row) => - row.map((cell) => { - const value = synthesizeValue(cell, state); - - return typeof value.contents === "number" && Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }) - ); - - return { rows }; -}; - -const ConnectedSynthesizedTable = connect(mapStateToProps)(SynthesizedTable); - -export { ConnectedSynthesizedTable as SynthesizedTable }; -export default ConnectedSynthesizedTable; +export default SynthesizedTable; diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index 7510afd23..dba9a6d73 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -1,11 +1,34 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; - +import { useSelector, shallowEqual } from "react-redux"; +//components import Question from "./Question"; +//utils import synthesizeValue from "../../util/synthesize"; +//types +import PropTypes from "prop-types"; + +const SynthesizedValue = ({ question, ...props }) => { + const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = + useSelector( + (state) => [ + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData, + ], + shallowEqual + ); + + const value = synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents; -const SynthesizedValue = ({ question, value, ...props }) => { return ( <div> <strong>Computed:</strong> {value} @@ -18,17 +41,6 @@ const SynthesizedValue = ({ question, value, ...props }) => { }; SynthesizedValue.propTypes = { question: PropTypes.object.isRequired, - value: PropTypes.oneOf([PropTypes.number, PropTypes.string]).isRequired, }; -const mapStateToProps = (state, { question: { fieldset_info: fsInfo } }) => { - return { - value: synthesizeValue(fsInfo, state).contents, - }; -}; - -const ConnectedSynthesizedValue = connect(mapStateToProps)(SynthesizedValue); - -export { ConnectedSynthesizedValue as SynthesizedValue }; - -export default ConnectedSynthesizedValue; +export default SynthesizedValue; diff --git a/services/ui-src/src/components/fields/Text.jsx b/services/ui-src/src/components/fields/Text.jsx index d7850f885..e80b28fb7 100644 --- a/services/ui-src/src/components/fields/Text.jsx +++ b/services/ui-src/src/components/fields/Text.jsx @@ -1,11 +1,21 @@ import React, { useEffect, useState } from "react"; -import PropTypes from "prop-types"; +import { useSelector, shallowEqual } from "react-redux"; +//components import { TextField } from "@cmsgov/design-system"; -import { connect } from "react-redux"; +//utils import { generateQuestionNumber } from "../utils/helperFunctions"; +// types +import PropTypes from "prop-types"; -const Text = ({ question, state, lastYearFormData, ...props }) => { +const Text = ({ question, ...props }) => { const [prevYearValue, setPrevYearValue] = useState(); + const [state, lastYearFormData] = useSelector( + (state) => [ + state.formData[0].contents?.section?.state, + state.lastYearFormData, + ], + shallowEqual + ); const getPrevYearValue = async () => { // Create array from id @@ -14,7 +24,7 @@ const Text = ({ question, state, lastYearFormData, ...props }) => { // Even years get inputs, odd years get previous year data const shouldGetPriorYear = splitID[0] % 2; - // If question is Part 6, section 3c, question 9 + // If question is on an odd year form, section 3c, part 5 or 6, and question 9 if ( shouldGetPriorYear && splitID[1] === "03" && @@ -88,16 +98,7 @@ const Text = ({ question, state, lastYearFormData, ...props }) => { }; Text.propTypes = { question: PropTypes.object.isRequired, - state: PropTypes.string.isRequired, disabled: PropTypes.bool, - year: PropTypes.number.isRequired, - lastYearFormData: PropTypes.array.isRequired, }; -const mapState = (state) => ({ - state: state.formData[0].contents?.section?.state, - year: state.formData[0].contents.section.year, - lastYearFormData: state.lastYearFormData, -}); - -export default connect(mapState)(Text); +export default Text; diff --git a/services/ui-src/src/components/layout/CertifyAndSubmit.jsx b/services/ui-src/src/components/layout/CertifyAndSubmit.jsx index e99b8b9d6..c0fb90e9c 100644 --- a/services/ui-src/src/components/layout/CertifyAndSubmit.jsx +++ b/services/ui-src/src/components/layout/CertifyAndSubmit.jsx @@ -1,19 +1,22 @@ import React, { useEffect } from "react"; -import { connect, useDispatch } from "react-redux"; -import moment from "moment"; -import PropTypes from "prop-types"; +import { shallowEqual, useDispatch, useSelector } from "react-redux"; import { Button, Dialog } from "@cmsgov/design-system"; import { useHistory } from "react-router-dom"; +import { format } from "date-fns"; +// components +import PageInfo from "./PageInfo"; +import FormActions from "./FormActions"; +// utils import { loadForm } from "../../actions/initial"; import { certifyAndSubmit } from "../../actions/certify"; -import PageInfo from "./PageInfo"; import { getCurrentReportStatus, selectIsFormEditable, } from "../../store/selectors"; -import FormActions from "./FormActions"; -import { AppRoles } from "../../types"; import useModal from "../../hooks/useModal"; +// types +import { AppRoles } from "../../types"; +import PropTypes from "prop-types"; const Submit = ({ openCertifyConfirmation }) => ( <> @@ -40,15 +43,25 @@ const Submit = ({ openCertifyConfirmation }) => ( Submit.propTypes = { openCertifyConfirmation: PropTypes.func.isRequired }; -const Thanks = ({ done: doneDispatch, lastSave, user }) => { +const Thanks = ({ done: doneDispatch, submitterUsername }) => { + const lastSave = useSelector( + (state) => + getCurrentReportStatus( + state.reportStatus, + state.formData, + state.stateUser, + state.global.formYear + ).lastChanged + ); + const formattedDate = lastSave ? format(lastSave, "PPP") : ""; + const formattedTime = lastSave ? format(lastSave, "p") : ""; return ( <> <h3 data-testid={"certifyThankYou"}> Thank you for submitting your CARTS report! </h3> <p> - Submitted on {lastSave.format("MMMM Do, YYYY")} at{" "} - {lastSave.format("h:mm A")} by {user}. + Submitted on {formattedDate} at {formattedTime} by {submitterUsername}. </p> <h3>What to expect next</h3> <p>You‘ll hear from CMS if they have any questions about your report.</p> @@ -61,28 +74,39 @@ const Thanks = ({ done: doneDispatch, lastSave, user }) => { Thanks.propTypes = { done: PropTypes.func.isRequired, - lastSave: PropTypes.object.isRequired, - user: PropTypes.string.isRequired, + submitterUsername: PropTypes.string.isRequired, }; -const CertifyAndSubmit = ({ - certifyAndSubmit: certifyAction, - isCertified, - lastSave, - user, - currentUserRole, - state, -}) => { +const CertifyAndSubmit = () => { const dispatch = useDispatch(); const history = useHistory(); const { isShowing, toggleModal } = useModal(); + const [isCertified, submitterUsername, currentUserRole, state] = useSelector( + (state) => [ + !selectIsFormEditable( + state.reportStatus, + state.formData, + state.stateUser, + state.global.formYear + ), + getCurrentReportStatus( + state.reportStatus, + state.formData, + state.stateUser, + state.global.formYear + ).username, + state.stateUser.currentUser.role, + state.stateUser.abbr, + ], + shallowEqual + ); useEffect(() => { dispatch(loadForm(state)); - }, [user]); + }, [submitterUsername]); const confirmCertifyAction = () => { - certifyAction(); + dispatch(certifyAndSubmit()); toggleModal(); }; @@ -125,7 +149,7 @@ const CertifyAndSubmit = ({ <PageInfo /> {currentUserRole === AppRoles.STATE_USER && <h2>Certify and Submit</h2>} {isCertified ? ( - <Thanks done={doneClick} lastSave={lastSave} user={user} /> + <Thanks done={doneClick} submitterUsername={submitterUsername} /> ) : ( <Submit openCertifyConfirmation={toggleModal} /> )} @@ -135,38 +159,4 @@ const CertifyAndSubmit = ({ ); }; -CertifyAndSubmit.propTypes = { - certifyAndSubmit: PropTypes.func.isRequired, - isCertified: PropTypes.bool.isRequired, - lastSave: PropTypes.object.isRequired, - user: PropTypes.oneOf([PropTypes.string, null]), - currentUserRole: PropTypes.string.isRequired, -}; - -CertifyAndSubmit.defaultProps = { - user: null, -}; - -const mapState = (state) => ({ - isCertified: !selectIsFormEditable(state), - lastSave: moment( - getCurrentReportStatus( - state.reportStatus, - state.formData, - state.stateUser, - state.global - ).lastChanged - ), - user: getCurrentReportStatus( - state.reportStatus, - state.formData, - state.stateUser, - state.global - ).username, - currentUserRole: state.stateUser.currentUser.role, - state: state.stateUser.abbr, -}); - -const mapDispatch = { certifyAndSubmit }; - -export default connect(mapState, mapDispatch)(CertifyAndSubmit); +export default CertifyAndSubmit; diff --git a/services/ui-src/src/components/layout/DateRange.jsx b/services/ui-src/src/components/layout/DateRange.jsx index 304fd369c..1a152679c 100644 --- a/services/ui-src/src/components/layout/DateRange.jsx +++ b/services/ui-src/src/components/layout/DateRange.jsx @@ -1,114 +1,69 @@ -import React, { Component } from "react"; -import { connect } from "react-redux"; +import React, { useEffect, useState } from "react"; +//components import { TextField } from "@cmsgov/design-system"; +//types import PropTypes from "prop-types"; -/* - * This method checks that month input is appropriate: - * (not empty, max of 2 digits, no letters, between 1 & 12) - */ -const validateMonth = (input) => { - let returnString; - - // Handles an empty input field - if (input === "") { - returnString = "Month field cannot be empty"; - } - - // Prevents users from putting in more than 2 characters - if (input.length > 2) { - returnString = "Month length must not exceed 2"; - } - - // Checks for non-numeric characters - if (Number.isNaN(parseInt(input, 10)) || /^\d+$/.test(input) === false) { - returnString = "Please enter a number"; - } - - if (parseInt(input, 10) < 1 || parseInt(input, 10) > 12) { - // Checks that the month value is within a normal range - returnString = "Please enter a valid month number"; - } - return returnString; -}; +const DateRange = ({ onChange, question, year, ...props }) => { + const [endRangeErr, setEndRangeErr] = useState(false); + const [monthStart, setMonthStart] = useState(""); + const [monthEnd, setMonthEnd] = useState(""); + const [yearStart, setYearStart] = useState(""); + const [yearEnd, setYearEnd] = useState(""); + const [startErrorMessage, setStartErrorMessage] = useState([]); + const [endErrorMessage, setEndErrorMessage] = useState([]); -class DateRange extends Component { - constructor(props) { - super(props); - this.state = { - endRangeErr: false, - monthStart: "", - yearStart: "", - monthEnd: "", - yearEnd: "", - startErrorMessage: [], - endErrorMessage: [], - }; - this.handleInput = this.handleInput.bind(this); - - this.checkChronology = this.checkChronology.bind(this); - - this.validateStartInput = this.validateStartInput.bind(this); - this.validateEndInput = this.validateEndInput.bind(this); - - this.validateYear = this.validateYear.bind(this); - } - - componentDidMount() { + useEffect(() => { // Stored value example: ['2019-11-01', '2020-09-01'] - const { question } = this.props; const storedValue = question.answer.entry; - if (storedValue) { // Split each date string into an array and extract month and year variables with destructuring const [yearStartValue, monthStartValue] = storedValue[0].split("-"); // ie: '2019' and '11' const [yearEndValue, monthEndValue] = storedValue[1].split("-"); // ie: '2020' and '09' - this.setState({ - monthStart: monthStartValue ?? "", - monthEnd: monthEndValue ?? "", - yearStart: yearStartValue ?? "", - yearEnd: yearEndValue ?? "", - }); + setMonthStart(monthStartValue ?? ""); + setMonthEnd(monthEndValue ?? ""); + setYearStart(yearStartValue ?? ""); + setYearEnd(yearEndValue ?? ""); } else { - this.setState({ - monthStart: "", - monthEnd: "", - yearStart: "", - yearEnd: "", - }); + setMonthStart(""); + setMonthEnd(""); + setYearStart(""); + setYearEnd(""); } - } + }, []); + + useEffect(() => { + checkChronology(); + }, [startErrorMessage, endErrorMessage]); // This method checks all 4 fields to confirm that the start range is before the end range - checkChronology() { - const { onChange, question } = this.props; - const { yearStart, yearEnd, startErrorMessage, endErrorMessage } = - this.state; + const checkChronology = () => { const errorCheck = [...startErrorMessage, ...endErrorMessage]; // Array of all input errors in state - let { monthStart, monthEnd } = this.state; + let monthS = monthStart; + let monthE = monthEnd; + let yearS = yearStart; + let yearE = yearEnd; + let chronologyError; // Ensure that all 4 fields are filled in - if (monthStart && monthEnd && yearStart && yearEnd) { - // Turn the input into date objects for easy comparison - const startDate = new Date(yearStart, monthStart - 1); - const endDate = new Date(yearEnd, monthEnd - 1); + if (monthS && monthE && yearS && yearE) { + // Turn the input into date objects for easy comparison + const startDate = new Date(yearS, monthS - 1); + const endDate = new Date(yearE, monthE - 1); - monthStart = monthStart.padStart(2, "0"); - monthEnd = monthEnd.padStart(2, "0"); + monthS = monthS.padStart(2, "0"); + monthE = monthE.padStart(2, "0"); /* * The entry value for daterange must be sent to the server as an array of two strings * The format must be an ISO 8601 Date format. * Because we are only asking for month/year, the last digit is a placeholder of '01' */ - const payload = [ - `${yearStart}-${monthStart}-01`, - `${yearEnd}-${monthEnd}-01`, - ]; + const payload = [`${yearS}-${monthS}-01`, `${yearE}-${monthE}-01`]; if (startDate > endDate) { chronologyError = true; @@ -119,20 +74,44 @@ class DateRange extends Component { onChange([question.id, payload]); // Chronology is correct, no errors present, send data to redux } } + setEndRangeErr(chronologyError); + } + }; + + /* + * This method checks that month input is appropriate: + * (not empty, max of 2 digits, no letters, between 1 & 12) + */ + const validateMonth = (input) => { + let returnString; + + // Handles an empty input field + if (input === "") { + returnString = "Month field cannot be empty"; + } + + // Prevents users from putting in more than 2 characters + if (input.length > 2) { + returnString = "Month length must not exceed 2"; + } + + // Checks for non-numeric characters + if (Number.isNaN(parseInt(input, 10)) || /^\d+$/.test(input) === false) { + returnString = "Please enter a number"; + } - this.setState({ - endRangeErr: chronologyError, - }); + if (parseInt(input, 10) < 1 || parseInt(input, 10) > 12) { + // Checks that the month value is within a normal range + returnString = "Please enter a valid month number"; } - } + return returnString; + }; /* * This method checks that year input is appropriate * (not empty, max of 4 digits, no letters, reasonable year) */ - validateYear(input) { - const { year } = this.props; - + const validateYear = (input) => { let returnString; // Handles an empty input field if (input === "") { @@ -160,163 +139,143 @@ class DateRange extends Component { returnString = "Please enter a valid Year"; } return returnString; - } + }; // This method checks the first month/year input range and sets any validation errors to state - validateStartInput() { + const validateStartInput = () => { const startErrorArray = []; - const { monthStart, yearStart } = this.state; - startErrorArray.push(validateMonth(monthStart)); - startErrorArray.push(this.validateYear(yearStart)); - - this.setState( - { - startErrorMessage: startErrorArray, - }, - () => { - this.checkChronology(); - } - ); - } + startErrorArray.push(validateYear(yearStart)); + + setStartErrorMessage(startErrorArray); + }; // This method checks the second month/year input range and sets any validation errors to state - validateEndInput() { + const validateEndInput = () => { const endErrorArray = []; - const { monthEnd, yearEnd } = this.state; - endErrorArray.push(validateMonth(monthEnd)); - endErrorArray.push(this.validateYear(yearEnd)); - - this.setState( - { - endErrorMessage: endErrorArray, - }, - () => { - this.checkChronology(); - } - ); - } + endErrorArray.push(validateYear(yearEnd)); + + setEndErrorMessage(endErrorArray); + }; // This method takes all user input and sets it to state - handleInput(evt) { - this.setState({ - [evt.target.name]: evt.target.value ? evt.target.value : "", - }); - } - - // Store input values temporarily via input refs - - render() { - const { question } = this.props; - const { - startErrorMessage, - endErrorMessage, - endRangeErr, - monthStart, - monthEnd, - yearStart, - yearEnd, - } = this.state; - - return ( - <div className="date-range" data-test="component-date-range"> - <div className="date-range-start"> - <span className="question-inner-header span-pdf-no-bookmark"> - {question.answer.labels[0] ? question.answer.labels[0] : "Start"} - </span> - <div className="ds-c-field__hint" aria-label="Date range hint"> - {" "} - mm/yyyy - </div> - <div className="errors"> - {startErrorMessage.map((e) => { - if (e !== undefined) { - return <div key={crypto.randomUUID()}> {e} </div>; - } - return false; - })} - </div> - <div className="date-range-start-wrapper"> - <TextField - className="ds-c-field--small" - data-test="component-daterange-monthstart" - name="monthStart" - numeric - label="range start month" - onChange={this.handleInput} - onBlur={this.validateStartInput} - value={monthStart} - disabled={this.props.disabled} - /> - <div className="ds-c-datefield__separator">/</div> - <TextField - className="ds-c-field--small" - name="yearStart" - label="range start year" - onChange={this.handleInput} - onBlur={this.validateStartInput} - numeric - value={yearStart} - disabled={this.props.disabled} - /> - </div> + const handleInput = (event) => { + const { name, value } = event.target; + switch (name) { + case "monthStart": + setMonthStart(value || ""); + break; + case "monthEnd": + setMonthEnd(value || ""); + break; + case "yearStart": + setYearStart(value || ""); + break; + case "yearEnd": + setYearEnd(value || ""); + break; + default: + throw new Error( + "Input name not supported. Unable to update date input!" + ); + } + }; + + return ( + <div className="date-range" data-test="component-date-range"> + <div className="date-range-start"> + <span className="question-inner-header span-pdf-no-bookmark"> + {question.answer.labels[0] ? question.answer.labels[0] : "Start"} + </span> + <div className="ds-c-field__hint" aria-label="Date range hint"> + mm/yyyy + </div> + <div className="errors"> + {startErrorMessage.map((e) => { + if (e !== undefined) { + return <div key={crypto.randomUUID()}> {e} </div>; + } + return false; + })} + </div> + <div className="date-range-start-wrapper"> + <TextField + className="ds-c-field--small" + data-test="component-daterange-monthstart" + name="monthStart" + numeric + label="range start month" + onChange={handleInput} + onBlur={validateStartInput} + value={monthStart} + disabled={props.disabled} + /> + <div className="ds-c-datefield__separator">/</div> + <TextField + className="ds-c-field--small" + name="yearStart" + label="range start year" + onChange={handleInput} + onBlur={validateStartInput} + numeric + value={yearStart} + disabled={props.disabled} + /> + </div> + </div> + + <div className="date-range-start"> + <h3 className="question-inner-header"> + {question.answer.labels[1] ? question.answer.labels[1] : "End"}{" "} + </h3> + <div className="ds-c-field__hint" aria-label="Date range hint"> + mm/yyyy + </div> + <div className="errors"> + {endErrorMessage.map((e) => { + if (e !== undefined) { + return <div key={crypto.randomUUID()}> {e} </div>; + } + return false; + })} </div> - <div className="date-range-start"> - <h3 className="question-inner-header"> - {" "} - {question.answer.labels[1] ? question.answer.labels[1] : "End"}{" "} - </h3> - <div className="ds-c-field__hint" aria-label="Date range hint"> - {" "} - mm/yyyy - </div> - <div className="errors"> - {endErrorMessage.map((e) => { - if (e !== undefined) { - return <div key={crypto.randomUUID()}> {e} </div>; - } - return false; - })} - </div> - - <div className="date-range-end-wrapper"> - <TextField - className="ds-c-field--small" - name="monthEnd" - numeric - label="range end month" - onChange={this.handleInput} - onBlur={this.validateEndInput} - value={monthEnd} - disabled={this.props.disabled} - /> - <div className="ds-c-datefield__separator">/</div> - - <TextField - className="ds-c-field--small" - name="yearEnd" - label="range end year" - onChange={this.handleInput} - onBlur={this.validateEndInput} - numeric - value={yearEnd} - disabled={this.props.disabled} - /> - </div> - <div className="errors"> - {endRangeErr === true ? ( - <div> End date must come after start date</div> - ) : null} - </div> + <div className="date-range-end-wrapper"> + <TextField + className="ds-c-field--small" + name="monthEnd" + numeric + label="range end month" + onChange={handleInput} + onBlur={validateEndInput} + value={monthEnd} + disabled={props.disabled} + /> + <div className="ds-c-datefield__separator">/</div> + + <TextField + className="ds-c-field--small" + name="yearEnd" + label="range end year" + onChange={handleInput} + onBlur={validateEndInput} + numeric + value={yearEnd} + disabled={props.disabled} + /> + </div> + <div className="errors"> + {endRangeErr === true ? ( + <div>End date must come after start date</div> + ) : null} </div> </div> - ); - } -} + </div> + ); +}; DateRange.propTypes = { question: PropTypes.object.isRequired, @@ -328,8 +287,4 @@ DateRange.defaultProps = { year: new Date().getFullYear().toString(), // Returns the current year as a default }; -const mapStateToProps = (state) => ({ - year: state.global.formYear, -}); - -export default connect(mapStateToProps)(DateRange); +export default DateRange; diff --git a/services/ui-src/src/components/layout/DateRange.test.jsx b/services/ui-src/src/components/layout/DateRange.test.jsx index 7863b66e6..a27b097dd 100644 --- a/services/ui-src/src/components/layout/DateRange.test.jsx +++ b/services/ui-src/src/components/layout/DateRange.test.jsx @@ -210,8 +210,14 @@ describe("DateRange Component", () => { endYearInput.dispatchEvent(new Event("blur")); + /* + * Have to wait because jest trips over itself. Would use waitFor, but thats in the next + * version of the testing-lib. When upgrading testing-lib, swap this to waitFor + */ + await new Promise((r) => setTimeout(r, 400)); + expect( - screen.queryByText("End date must come after start date") + await screen.queryByText("End date must come after start date") ).toBeInTheDocument(); }); @@ -232,6 +238,12 @@ describe("DateRange Component", () => { endYearInput.dispatchEvent(new Event("blur")); + /* + * Have to wait because jest trips over itself. Would use waitFor, but thats in the next + * version of the testing-lib. When upgrading testing-lib, swap this to waitFor + */ + await new Promise((r) => setTimeout(r, 400)); + expect(mockPropsExistingAnswer.onChange).toBeCalledWith([ "mock-question-1", ["2022-10-01", "2023-09-01"], diff --git a/services/ui-src/src/components/layout/FormActions.jsx b/services/ui-src/src/components/layout/FormActions.jsx index cd2f3114d..f63403fd0 100644 --- a/services/ui-src/src/components/layout/FormActions.jsx +++ b/services/ui-src/src/components/layout/FormActions.jsx @@ -1,9 +1,10 @@ import React, { useState, useEffect, useRef } from "react"; +import { useSelector, shallowEqual } from "react-redux"; +// components import { Button } from "@cmsgov/design-system"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faPrint, faWindowClose } from "@fortawesome/free-solid-svg-icons"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; +//types import { AppRoles } from "../../types"; /** @@ -12,20 +13,37 @@ import { AppRoles } from "../../types"; * @returns {JSX.Element} * @constructor */ -const FormActions = (props) => { +const FormActions = () => { + const [currentUser, formYear] = useSelector( + (state) => [state.stateUser.currentUser, state.global.formYear], + shallowEqual + ); + // Initialise printDialogeRef const printDialogeRef = useRef(null); - const { currentUser, formYear } = props; // Get section IDs and subsection IDs for printing single section - let searchParams = document.location.pathname - .toString() - .replace("/sections/", "") - .replace(formYear + "/", ""); + let searchParams = ""; + let sectionId = ""; - const sectionId = formYear + "-" + searchParams.substring(0, 2); - let subsectionId = sectionId + "-"; + if (currentUser.role === AppRoles.CMS_ADMIN) { + const stateId = window.location.href.split("/")[5]; + searchParams = document.location.pathname + .toString() + .replace(`views/sections/${stateId}/`, "") + .replace(formYear + "/", ""); + sectionId = formYear + "-" + searchParams.substring(1, 3); + } else { + searchParams = document.location.pathname + .toString() + .replace("/sections/", "") + .replace(formYear + "/", ""); + + sectionId = formYear + "-" + searchParams.substring(0, 2); + } + + let subsectionId = sectionId + "-"; if (sectionId.slice(-2) === "03") { subsectionId += searchParams.slice(-1); } else { @@ -163,15 +181,4 @@ const FormActions = (props) => { ); }; -FormActions.propTypes = { - currentUser: PropTypes.object.isRequired, - formYear: PropTypes.number.isRequired, -}; - -export const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, - formYear: state.global.formYear, - printType: state.global.printType, -}); - -export default connect(mapStateToProps)(FormActions); +export default FormActions; diff --git a/services/ui-src/src/components/layout/FormActions.test.jsx b/services/ui-src/src/components/layout/FormActions.test.jsx index 77967b362..fdf31f5db 100644 --- a/services/ui-src/src/components/layout/FormActions.test.jsx +++ b/services/ui-src/src/components/layout/FormActions.test.jsx @@ -9,12 +9,14 @@ import { stateUserWithReportInProgress, } from "../../store/fakeStoreExamples"; import { MemoryRouter } from "react-router"; +const firstLocation = "/sections/2021/00"; +const adminFirstLocation = "/views/sections/AL/2021/00"; const mockStore = configureMockStore(); const store = mockStore(stateUserWithReportInProgress); const formActions = ( <Provider store={store}> - <MemoryRouter initialEntries={["/"]}> + <MemoryRouter initialEntries={[firstLocation]}> <FormActions /> </MemoryRouter> </Provider> @@ -22,36 +24,76 @@ const formActions = ( const adminStore = mockStore(adminUserWithReportInProgress); const adminFormActions = ( <Provider store={adminStore}> - <MemoryRouter initialEntries={["/"]}> + <MemoryRouter initialEntries={[adminFirstLocation]}> <FormActions /> </MemoryRouter> </Provider> ); + describe("Fill Form Component", () => { - it("should render correctly", () => { + afterEach(() => { + jest.clearAllMocks(); + }); + + test("should render correctly", () => { expect(shallow(formActions).exists()).toBe(true); }); - it("should add hrefs given a section and subsection", () => { + test("should add hrefs given a section and subsection", () => { render(formActions); + window.history.pushState({}, "Title", "/sections/00"); + const printShowButton = screen.getByTestId("print-show"); + fireEvent.click(printShowButton); + const printFormButton = screen.getByTestId("print-form"); + const printPageButton = screen.getByTestId("print-page"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); + }); + + test("should add hrefs given a section and subsection for admin user", () => { + const setLocation = (path = "/") => { + delete window.location; + window.location = new URL("https://www.example.com" + path); + }; + + setLocation(adminFirstLocation); + render(adminFormActions); + window.history.pushState({}, "Title", "/00/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-00&subsectionId=2021-00-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should build the component when looking at section 3 subsections", () => { - window.history.pushState({}, "Title", "/sections/03"); + test("should build the component when looking at section 3 subsections", () => { render(adminFormActions); - window.history.pushState({}, "Title", "/sections/03"); + window.history.pushState({}, "Title", "/03/a"); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); const printFormButton = screen.getByTestId("print-form"); const printPageButton = screen.getByTestId("print-page"); - expect(printPageButton).toHaveAttribute("href"); - expect(printFormButton).toHaveAttribute("href"); + expect(printPageButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL§ionId=2021-03&subsectionId=2021-03-a" + ); + expect(printFormButton).toHaveAttribute( + "href", + "/print?year=2021&state=AL" + ); }); - it("should display print section or page on click", () => { + test("should display print section or page on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -60,7 +102,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toHaveTextContent("This Section"); expect(printFormButton).toHaveTextContent("Entire Form"); }); - it("should clear on click", () => { + test("should clear on click", () => { render(formActions); const printShowButton = screen.getByTestId("print-show"); fireEvent.click(printShowButton); @@ -72,7 +114,7 @@ describe("Fill Form Component", () => { expect(printPageButton).toBeNull(); expect(printFormButton).toBeNull(); }); - it("should not clear on internal click, then clear on outside click", () => { + test("should not clear on internal click, then clear on outside click", () => { const map = {}; document.addEventListener = jest.fn((event, cb) => { diff --git a/services/ui-src/src/components/layout/FormNavigation.jsx b/services/ui-src/src/components/layout/FormNavigation.jsx index 8f3d3222e..967c5c242 100644 --- a/services/ui-src/src/components/layout/FormNavigation.jsx +++ b/services/ui-src/src/components/layout/FormNavigation.jsx @@ -1,17 +1,28 @@ import React from "react"; -import PropTypes from "prop-types"; +import { useSelector, shallowEqual } from "react-redux"; +import { useHistory, useLocation } from "react-router-dom"; + +//components import { Button } from "@cmsgov/design-system"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft, faAngleRight } from "@fortawesome/free-solid-svg-icons"; -import { connect } from "react-redux"; -import { withRouter } from "react-router-dom"; +//selectors import { selectSectionsForNav } from "../../store/selectors"; +//types import { AppRoles } from "../../types"; const idToUrl = (id) => `/sections/${id.replace(/-/g, "/")}`; -const FormNavigation = (props) => { - const { history, location, sections, role } = props; +const FormNavigation = () => { + const history = useHistory(); + const location = useLocation(); + + const [formData, role] = useSelector( + (state) => [state.formData, state.stateUser?.currentUser?.role], + shallowEqual + ); + + const sections = selectSectionsForNav(formData); const items = []; sections.forEach((section) => { @@ -120,16 +131,4 @@ const FormNavigation = (props) => { ); }; -FormNavigation.propTypes = { - history: PropTypes.object.isRequired, - location: PropTypes.object.isRequired, - sections: PropTypes.array.isRequired, - role: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]).isRequired, -}; - -const mapStateToProps = (state) => ({ - sections: selectSectionsForNav(state), - role: state.stateUser?.currentUser?.role, -}); - -export default connect(mapStateToProps)(withRouter(FormNavigation)); +export default FormNavigation; diff --git a/services/ui-src/src/components/layout/Header.jsx b/services/ui-src/src/components/layout/Header.jsx index 86a310c2d..d7ff51cd6 100644 --- a/services/ui-src/src/components/layout/Header.jsx +++ b/services/ui-src/src/components/layout/Header.jsx @@ -17,11 +17,11 @@ import appLogo from "../../assets/images/MDCT_CARTS_2x.png"; export const Header = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); - const [stateUser, formData, global, reportStatus] = useSelector( + const [stateUser, formData, formYear, reportStatus] = useSelector( (state) => [ state.stateUser, state.formData, - state.global, + state.global.formYear, state.reportStatus, ], shallowEqual @@ -31,7 +31,7 @@ export const Header = () => { reportStatus, formData, stateUser, - global + formYear ); const location = useLocation(); diff --git a/services/ui-src/src/components/layout/HomeAdmin.jsx b/services/ui-src/src/components/layout/HomeAdmin.jsx index 97b147bcf..dbbc59456 100644 --- a/services/ui-src/src/components/layout/HomeAdmin.jsx +++ b/services/ui-src/src/components/layout/HomeAdmin.jsx @@ -1,13 +1,13 @@ import React from "react"; -import PropTypes from "prop-types"; import { Link, Route } from "react-router-dom"; +import { Switch } from "react-router"; +// components import FormTemplates from "./FormTemplates"; import CMSHomepage from "../sections/homepage/CMSHomepage"; -import InvokeSection from "../utils/InvokeSection"; import Sidebar from "./Sidebar"; -import { Switch } from "react-router"; +// utils +import InvokeSection from "../utils/InvokeSection"; import ScrollToTop from "../utils/ScrollToTop"; -import { connect } from "react-redux"; const AdminHome = () => { return ( @@ -52,13 +52,5 @@ const AdminHome = () => { </> ); }; -AdminHome.propTypes = { - formYear: PropTypes.object.isRequired, -}; - -export const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, - formYear: state.global.formYear, -}); -export default connect(mapStateToProps)(AdminHome); +export default AdminHome; diff --git a/services/ui-src/src/components/layout/PageInfo.jsx b/services/ui-src/src/components/layout/PageInfo.jsx index a291a0616..41dae237e 100644 --- a/services/ui-src/src/components/layout/PageInfo.jsx +++ b/services/ui-src/src/components/layout/PageInfo.jsx @@ -1,28 +1,23 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; -import moment from "moment"; +import { shallowEqual, useSelector } from "react-redux"; import Autosave from "../fields/Autosave"; import Title from "./Title"; -const PageInfo = ({ lastSaved, status }) => ( - <div className="page-info"> - <div className="edit-info no-print" data-testid="edit-info-display"> - {status ?? "draft"} - {lastSaved.isValid() && ` | Last Edit: ${lastSaved.format("M/D/YYYY")}`} +const PageInfo = () => { + const [lastSaved, status] = useSelector( + (state) => [state.save.lastSave, state.reportStatus.status], + shallowEqual + ); + return ( + <div className="page-info"> + <div className="edit-info no-print" data-testid="edit-info-display"> + {status ?? "draft"} + {lastSaved && ` | Last Edit: ${lastSaved.toLocaleDateString()}`} + </div> + <Title /> + <Autosave /> </div> - <Title /> - <Autosave /> - </div> -); -PageInfo.propTypes = { - lastSaved: PropTypes.object.isRequired, - status: PropTypes.string, + ); }; -const mapStateToProps = (state) => ({ - lastSaved: moment(state.save.lastSave), - status: state.reportStatus.status, -}); - -export default connect(mapStateToProps)(PageInfo); +export default PageInfo; diff --git a/services/ui-src/src/components/layout/PageInfo.test.jsx b/services/ui-src/src/components/layout/PageInfo.test.jsx index 203e4cf87..22300eef4 100644 --- a/services/ui-src/src/components/layout/PageInfo.test.jsx +++ b/services/ui-src/src/components/layout/PageInfo.test.jsx @@ -11,7 +11,9 @@ const store = mockStore({ status: null, }, save: { - lastSave: "01/01/2002", + lastSave: new Date( + "Mon Jan 1 2024 12:00:00 GMT-0400 (Eastern Daylight Time)" + ), }, }); jest.mock("./Title", () => () => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index 0351a8b1e..d2d5e8022 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -1,54 +1,89 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { shallowEqual, useSelector } from "react-redux"; import { Alert } from "@cmsgov/design-system"; - -import { selectFragment } from "../../store/formData"; +// components import Question from "../fields/Question"; +import Text from "./Text"; +// utils +import { selectFragment } from "../../store/formData"; import { selectQuestionsForPart } from "../../store/selectors"; import { shouldDisplay } from "../../util/shouldDisplay"; -import Text from "./Text"; - -const Part = ({ - context_data: contextData, - partId, - partNumber, - questions, - show, - text, - title, - nestedSubsectionTitle, -}) => { - let innards = null; +const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { const [, section] = partId.split("-"); - if (show) { - innards = ( - <> - {text ? <Text data-testid="part-text">{text}</Text> : null} + const [ + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + ] = useSelector( + (state) => [ + state.formData, + state.stateUser.currentUser.role, + state.reportStatus, + state.allStatesData, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + ], + shallowEqual + ); - {questions.map((question) => ( - <Question - key={question.id} - question={question} - tableTitle={title} - data-testid="part-question" - /> - ))} - </> - ); - } else { - if (contextData) { - innards = ( - <Alert> - <div className="ds-c-alert__text" data-testid="part-alert"> - {contextData.skip_text ? <p>{contextData.skip_text}</p> : null} - </div> - </Alert> + const part = selectFragment(formData, partId); + const partContextData = part.context_data; + + const contextData = partContextData; + const questions = selectQuestionsForPart( + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partId + ); + const show = shouldDisplay( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partContextData + ); + const text = part ? part.text : null; + const title = part ? part.title : null; + + const getPartContent = () => { + if (show) { + return ( + <> + {text && <Text data-testid="part-text">{text}</Text>} + {questions.map((question) => ( + <Question + key={question.id} + question={question} + tableTitle={title} + data-testid="part-question" + printView={printView} + /> + ))} + </> ); + } else { + if (contextData) { + return ( + <Alert> + <div className="ds-c-alert__text" data-testid="part-alert"> + {contextData.skip_text && <p>{contextData.skip_text}</p>} + </div> + </Alert> + ); + } } - } + }; return ( <div id={partId} data-testid="part"> @@ -64,38 +99,8 @@ const Part = ({ {title} </h3> ))} - {innards} + {getPartContent()} </div> ); }; -Part.propTypes = { - context_data: PropTypes.object, - partId: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired, - partNumber: PropTypes.number, - questions: PropTypes.array.isRequired, - show: PropTypes.bool.isRequired, - text: PropTypes.string, - title: PropTypes.string, -}; -Part.defaultProps = { - context_data: null, - text: "", - title: "", -}; - -const mapStateToProps = (state, { partId }) => { - const part = selectFragment(state, partId); - const questions = selectQuestionsForPart(state, partId); - const contextData = part.context_data; - - return { - context_data: part.context_data, - questions, - show: shouldDisplay(state, contextData), - text: part ? part.text : null, - title: part ? part.title : null, - isFetching: state.global.isFetching, - }; -}; - -export default connect(mapStateToProps)(Part); +export default Part; diff --git a/services/ui-src/src/components/layout/Part.test.jsx b/services/ui-src/src/components/layout/Part.test.jsx index 8053313a9..44cdeb951 100644 --- a/services/ui-src/src/components/layout/Part.test.jsx +++ b/services/ui-src/src/components/layout/Part.test.jsx @@ -87,6 +87,9 @@ const store = mockStore({ stateId: "AL", }, ], + enrollmentCounts: { + chipEnrollments: {}, + }, global: { isFetching: false, }, diff --git a/services/ui-src/src/components/layout/SaveError.jsx b/services/ui-src/src/components/layout/SaveError.jsx index 38d60ca63..4f2040fc2 100644 --- a/services/ui-src/src/components/layout/SaveError.jsx +++ b/services/ui-src/src/components/layout/SaveError.jsx @@ -1,10 +1,11 @@ import { Alert } from "@cmsgov/design-system"; -import PropTypes from "prop-types"; import React, { useEffect, useState } from "react"; -import { connect } from "react-redux"; +import { useSelector } from "react-redux"; +// utils import { selectHasError } from "../../store/save.selectors"; -const SaveError = ({ saveError }) => { +const SaveError = () => { + const saveError = useSelector((state) => selectHasError(state)); const [showSaveErrorAlert, setShowErrorAlert] = useState(saveError); useEffect(() => { @@ -46,12 +47,4 @@ const SaveError = ({ saveError }) => { ); }; -SaveError.propTypes = { - hasError: PropTypes.bool.isRequired, -}; - -const mapStateToProps = (state) => ({ - saveError: selectHasError(state), -}); - -export default connect(mapStateToProps)(SaveError); +export default SaveError; diff --git a/services/ui-src/src/components/layout/SaveMessage.js b/services/ui-src/src/components/layout/SaveMessage.js deleted file mode 100644 index a3c83e8d8..000000000 --- a/services/ui-src/src/components/layout/SaveMessage.js +++ /dev/null @@ -1,65 +0,0 @@ -import moment from "moment"; -import { useEffect, useState } from "react"; -import PropTypes from "prop-types"; - -/* - * Configure moment to display '1 time-unit ago' instead of 'a time-unit ago' - * https://github.com/moment/moment/issues/3764 - */ -moment.updateLocale("en", { - relativeTime: { - s: "seconds", - m: "1 minute", - mm: "%d minutes", - h: "1 hour", - hh: "%d hours", - d: "1 day", - dd: "%d days", - M: "1 month", - MM: "%d months", - y: "1 year", - yy: "%d years", - }, -}); - -const SaveMessage = ({ lastSaved }) => { - const [currentMoment, setCurrentMoment] = useState(() => moment()); - - useEffect(() => { - const timerID = setInterval(() => setCurrentMoment(moment()), 1000); - return () => clearInterval(timerID); - }); - - const lastSavedMoment = moment(lastSaved); - - if (!lastSavedMoment.isValid()) { - return "Not yet saved"; - } - - const difference = currentMoment.diff(lastSavedMoment); - const duration = moment.duration(difference); - let result = "Last saved "; - - if (duration.asMinutes() < 1) return "Saved"; - - if (duration.asDays() < 1) { - result += lastSavedMoment.format("h:mm a"); - } else if (duration.asYears() < 1) { - result += lastSavedMoment.format("MMMM D"); - } else { - result += lastSavedMoment.format("MMMM D, YYYY"); - } - - result += ` (${lastSavedMoment.fromNow()})`; - return result; -}; - -SaveMessage.propTypes = { - lastSaved: PropTypes.oneOfType([ - PropTypes.instanceOf(Date), - PropTypes.instanceOf(moment), - PropTypes.string, - ]), -}; - -export default SaveMessage; diff --git a/services/ui-src/src/components/layout/SaveMessage.jsx b/services/ui-src/src/components/layout/SaveMessage.jsx new file mode 100644 index 000000000..8d790b3d9 --- /dev/null +++ b/services/ui-src/src/components/layout/SaveMessage.jsx @@ -0,0 +1,32 @@ +import { useEffect, useState } from "react"; +import { + differenceInMinutes, + format, + formatDistanceToNowStrict, +} from "date-fns"; +import PropTypes from "prop-types"; + +const SaveMessage = ({ lastSaved }) => { + const [currentMoment, setCurrentMoment] = useState(() => Date.now()); + + useEffect(() => { + const timerID = setInterval(() => setCurrentMoment(Date.now()), 1000); + return () => clearInterval(timerID); + }); + + if (!lastSaved) return "Not yet saved"; + if (differenceInMinutes(currentMoment, lastSaved) < 1) return "Saved"; + + return `Last saved ${format(lastSaved, "p")} (${formatDistanceToNowStrict( + lastSaved + )} ago)`; +}; + +SaveMessage.propTypes = { + lastSaved: PropTypes.oneOfType([ + PropTypes.instanceOf(Date), + PropTypes.string, + ]), +}; + +export default SaveMessage; diff --git a/services/ui-src/src/components/layout/SaveMessage.test.jsx b/services/ui-src/src/components/layout/SaveMessage.test.jsx index 8c811153e..e03de1d0c 100644 --- a/services/ui-src/src/components/layout/SaveMessage.test.jsx +++ b/services/ui-src/src/components/layout/SaveMessage.test.jsx @@ -1,5 +1,4 @@ import { mount, shallow } from "enzyme"; -import moment from "moment"; import React from "react"; import SaveMessage from "./SaveMessage"; @@ -10,9 +9,6 @@ describe("SaveMessage Component", () => { const dateProp = { lastSaved: new Date() }; const saveMessageDateProp = <SaveMessage {...dateProp} />; - const momentProp = { lastSaved: moment() }; - const saveMessageMomentProp = <SaveMessage {...momentProp} />; - const nullProp = { lastSaved: null }; const saveMessageNullProp = <SaveMessage {...nullProp} />; @@ -24,10 +20,6 @@ describe("SaveMessage Component", () => { expect(shallow(saveMessageDateProp).exists()).toBe(true); }); - it("should accept moment as prop", () => { - expect(shallow(saveMessageMomentProp).exists()).toBe(true); - }); - it("should accept null as prop and return not saved", () => { const wrapper = mount(saveMessageNullProp); expect(wrapper.text().includes("Not yet saved")).toBe(true); diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index f12824305..b204e1b25 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -1,6 +1,6 @@ import React from "react"; +import { useSelector } from "react-redux"; import PropTypes from "prop-types"; -import { connect } from "react-redux"; import PageInfo from "./PageInfo"; import { selectSectionTitle } from "../../store/selectors"; import Subsection from "./Subsection"; @@ -8,18 +8,20 @@ import FormNavigation from "./FormNavigation"; import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; -// Get section number only from sectionId -const selectSectionNumber = (sectionId) => { - return Number(sectionId.split("-")[1]); -}; +const Section = ({ subsectionId, sectionId, printView }) => { + const formData = useSelector((state) => state.formData); + const title = selectSectionTitle(formData, sectionId); -const Section = ({ subsectionId, title }) => { return ( <div className="section-basic-info ds-l-col--9 content"> <main id="main-content" className="main"> <PageInfo /> <h2 data-testid="section-title">{title}</h2> - <Subsection key={subsectionId} subsectionId={subsectionId} /> + <Subsection + key={subsectionId} + subsectionId={subsectionId} + printView={printView} + /> </main> <div className="form-footer"> <Autosave /> @@ -31,16 +33,8 @@ const Section = ({ subsectionId, title }) => { }; Section.propTypes = { subsectionId: PropTypes.string.isRequired, - title: PropTypes.string, sectionId: PropTypes.number.isRequired, + printView: PropTypes.bool, }; -const mapStateToProps = (state, { sectionId, subsectionId }) => { - return { - subsectionId, - title: selectSectionTitle(state, sectionId), - sectionId: selectSectionNumber(sectionId), - }; -}; - -export default connect(mapStateToProps)(Section); +export default Section; diff --git a/services/ui-src/src/components/layout/StateHeader.jsx b/services/ui-src/src/components/layout/StateHeader.jsx index b37c25366..e9c3eafc1 100644 --- a/services/ui-src/src/components/layout/StateHeader.jsx +++ b/services/ui-src/src/components/layout/StateHeader.jsx @@ -1,27 +1,29 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useSelector } from "react-redux"; +import { AppRoles } from "../../types"; -const StateHeader = ({ imageURI, name }) => ( - <div - className="state-header" - data-testid="state-header" - aria-label="State Header" - > - <div className="state-image"> - <img src={imageURI} alt={name} /> - </div> - <div className="state-name">{name}</div> - </div> -); -StateHeader.propTypes = { - imageURI: PropTypes.string.isRequired, - name: PropTypes.string.isRequired, +const StateHeader = () => { + const { currentUser, name, imageURI } = useSelector( + (state) => state.stateUser + ); + return ( + <> + {currentUser?.role === AppRoles.STATE_USER && ( + <div + className="state-header" + data-testid="state-header" + aria-label="State Header" + > + <div className="state-image"> + <img src={imageURI} alt={name} /> + </div> + <div className="state-name" aria-label={name}> + {name} + </div> + </div> + )} + </> + ); }; -const mapStateToProps = (state) => ({ - name: state.stateUser.name, - imageURI: state.stateUser.imageURI, -}); - -export default connect(mapStateToProps)(StateHeader); +export default StateHeader; diff --git a/services/ui-src/src/components/layout/StateHeader.test.jsx b/services/ui-src/src/components/layout/StateHeader.test.jsx index 5d8f1fbe3..6a91f01cd 100644 --- a/services/ui-src/src/components/layout/StateHeader.test.jsx +++ b/services/ui-src/src/components/layout/StateHeader.test.jsx @@ -4,30 +4,45 @@ import configureMockStore from "redux-mock-store"; import { Provider } from "react-redux"; import { render } from "@testing-library/react"; import StateHeader from "./StateHeader"; +import { + adminUserWithReportInProgress, + stateUserWithReportInProgress, +} from "../../store/fakeStoreExamples"; const mockStore = configureMockStore(); -const store = mockStore({ - stateUser: { - name: "Kentucky", - imageURI: "kentucky.png", - }, -}); -const header = ( - <Provider store={store}> - <StateHeader /> - </Provider> -); +const stateUserStore = mockStore(stateUserWithReportInProgress); +const adminUserStore = mockStore(adminUserWithReportInProgress); describe("State Header Component", () => { - it("should render correctly", () => { + test("should render correctly", () => { + const header = ( + <Provider store={stateUserStore}> + <StateHeader /> + </Provider> + ); expect(shallow(header).exists()).toBe(true); }); - it("Displays name, image, and alt-text for a state", () => { + test("Displays state header content for state user", () => { + const header = ( + <Provider store={stateUserStore}> + <StateHeader /> + </Provider> + ); const { getByTestId, getByAltText } = render(header); const headerComponent = getByTestId("state-header"); - expect(headerComponent).toHaveTextContent("Kentucky"); - const img = getByAltText("Kentucky"); - expect(img.src).toContain("kentucky.png"); + expect(headerComponent).toHaveTextContent("Alabama"); + const img = getByAltText("Alabama"); + expect(img.src).toContain("al.svg"); + }); + + test("Does not display state header content for admin user", () => { + const header = ( + <Provider store={adminUserStore}> + <StateHeader /> + </Provider> + ); + const { queryByTestId } = render(header); + expect(queryByTestId("state-header")).not.toBeInTheDocument(); }); }); diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 60799cede..6417beca6 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -1,11 +1,22 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; -import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; +import { useSelector } from "react-redux"; +//components import Part from "./Part"; import Text from "./Text"; +//selectors +import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; +//types +import PropTypes from "prop-types"; + +const Subsection = ({ subsectionId, printView }) => { + const formData = useSelector((state) => state.formData); + + const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); + + const partIds = subsection ? subsection.parts : []; + const title = subsection ? subsection.title : null; + const text = subsection ? subsection.text : null; -const Subsection = ({ partIds, subsectionId, title, text }) => { return ( <div id={subsectionId}> {title && <h3 className="h3-pdf-bookmark">{title}</h3>} @@ -20,31 +31,18 @@ const Subsection = ({ partIds, subsectionId, title, text }) => { partId={partId} partNumber={partIds.length > 1 ? index + 1 : null} nestedSubsectionTitle={!!title} + printView={printView} /> ))} </div> ); }; Subsection.propTypes = { - partIds: PropTypes.array.isRequired, subsectionId: PropTypes.string.isRequired, - text: PropTypes.oneOf([PropTypes.string, null]), - title: PropTypes.string, + printView: PropTypes.bool, }; Subsection.defaultProps = { text: null, }; -const mapStateToProps = (state, ownProps) => { - const subsection = selectSubsectionTitleAndPartIDs( - state, - ownProps.subsectionId - ); - return { - partIds: subsection ? subsection.parts : [], - title: subsection ? subsection.title : null, - text: subsection ? subsection.text : null, - }; -}; - -export default connect(mapStateToProps)(Subsection); +export default Subsection; diff --git a/services/ui-src/src/components/layout/Timeout.jsx b/services/ui-src/src/components/layout/Timeout.jsx index 38f60b036..9f927f9b7 100644 --- a/services/ui-src/src/components/layout/Timeout.jsx +++ b/services/ui-src/src/components/layout/Timeout.jsx @@ -1,24 +1,27 @@ import React, { useEffect, useState } from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; -import { Dialog } from "@cmsgov/design-system"; +import { useSelector } from "react-redux"; import { useHistory } from "react-router-dom"; +//components +import { Dialog } from "@cmsgov/design-system"; +//auth import { refreshCredentials, updateTimeout, useUser, } from "../../hooks/authHooks"; -import moment from "moment"; const calculateTimeLeft = (expiresAt) => { if (!expiresAt) return 0; - return expiresAt.diff(moment()) / 1000; + return (new Date(expiresAt).valueOf() - Date.now()) / 1000; }; -const Timeout = ({ showTimeout, expiresAt }) => { +const Timeout = () => { + const { showTimeout, expiresAt } = useSelector((state) => state.stateUser); const { logout } = useUser(); - const [timeLeft, setTimeLeft] = useState(calculateTimeLeft(expiresAt)); const history = useHistory(); + + const [timeLeft, setTimeLeft] = useState(calculateTimeLeft(expiresAt)); + useEffect(() => { const unlisten = history.listen(() => { updateTimeout(); @@ -44,7 +47,7 @@ const Timeout = ({ showTimeout, expiresAt }) => { if (!showTimeout) return <></>; - const expired = expiresAt.isBefore(); + const expired = new Date(expiresAt).valueOf() < Date.now(); const body = expired ? "You have been logged out due to inactivity. Please log in again." : `Due to inactivity, you will be logged out in ${Math.floor( @@ -88,14 +91,4 @@ const Timeout = ({ showTimeout, expiresAt }) => { ); }; -Timeout.propTypes = { - showTimeout: PropTypes.bool.isRequired, - expiresAt: PropTypes.any.isRequired, -}; - -const mapState = (state) => ({ - showTimeout: state.stateUser.showTimeout, - expiresAt: state.stateUser.expiresAt, -}); - -export default connect(mapState)(Timeout); +export default Timeout; diff --git a/services/ui-src/src/components/layout/Timeout.test.jsx b/services/ui-src/src/components/layout/Timeout.test.jsx index 697b3a1c1..c2f2204f3 100644 --- a/services/ui-src/src/components/layout/Timeout.test.jsx +++ b/services/ui-src/src/components/layout/Timeout.test.jsx @@ -4,7 +4,7 @@ import configureMockStore from "redux-mock-store"; import { Provider } from "react-redux"; import { screen, render, fireEvent } from "@testing-library/react"; import Timeout from "./Timeout"; -import moment from "moment"; +import { add, sub } from "date-fns"; jest.mock("react-router-dom", () => ({ ...jest.requireActual("react-router-dom"), @@ -17,19 +17,19 @@ const mockStore = configureMockStore(); const store = mockStore({ stateUser: { showTimeout: true, - expiresAt: moment().add(5, "minutes"), + expiresAt: add(Date.now(), { minutes: 5 }), }, }); const expiredStore = mockStore({ stateUser: { showTimeout: true, - expiresAt: moment().subtract(5, "minutes"), + expiresAt: sub(Date.now(), { minutes: 5 }), }, }); const hiddenStore = mockStore({ stateUser: { showTimeout: false, - expiresAt: moment().add(5, "minutes"), + expiresAt: add(Date.now(), { minutes: 5 }), }, }); const timeout = ( diff --git a/services/ui-src/src/components/layout/Title.jsx b/services/ui-src/src/components/layout/Title.jsx index e315f2247..5812673a5 100644 --- a/services/ui-src/src/components/layout/Title.jsx +++ b/services/ui-src/src/components/layout/Title.jsx @@ -1,8 +1,17 @@ import React from "react"; +import { useSelector, shallowEqual } from "react-redux"; +//types import PropTypes from "prop-types"; -import { connect } from "react-redux"; -const Title = ({ name, stateName, formYear, urlStateName }) => { +const Title = ({ urlStateName }) => { + const [name, stateName, formYear] = useSelector( + (state) => [ + state.stateUser.name, + state.global.stateName, + state.global.formYear, + ], + shallowEqual + ); const displayStateName = name || urlStateName || stateName || ""; return ( @@ -14,16 +23,7 @@ const Title = ({ name, stateName, formYear, urlStateName }) => { ); }; Title.propTypes = { - name: PropTypes.string, - stateName: PropTypes.string, urlStateName: PropTypes.string, - formYear: PropTypes.number.isRequired, }; -const mapStateToProps = (state) => ({ - name: state.stateUser.name, - stateName: state.global.stateName, - formYear: state.global.formYear, -}); - -export default connect(mapStateToProps)(Title); +export default Title; diff --git a/services/ui-src/src/components/layout/UploadComponent.jsx b/services/ui-src/src/components/layout/UploadComponent.jsx index 7df22445a..ceb0aaa9d 100644 --- a/services/ui-src/src/components/layout/UploadComponent.jsx +++ b/services/ui-src/src/components/layout/UploadComponent.jsx @@ -1,9 +1,8 @@ -import React, { Component } from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import React, { useEffect, useState } from "react"; +import { useDispatch, useSelector, shallowEqual } from "react-redux"; +//components import { Button, TextField } from "@cmsgov/design-system"; -import { setAnswerEntry } from "../../actions/initial"; -import { REPORT_STATUS, AppRoles } from "../../types"; +//utils import { recordFileInDatabaseAndGetUploadUrl, uploadFileToS3, @@ -11,32 +10,37 @@ import { getUploadedFiles, deleteUploadedFile, } from "../../util/fileApi"; +import { setAnswerEntry } from "../../actions/initial"; +//types +import PropTypes from "prop-types"; +import { REPORT_STATUS, AppRoles } from "../../types"; -class UploadComponent extends Component { - constructor(props) { - super(props); - - this.state = { - blockFileSubmission: true, - loadedFiles: [], - uploadedFiles: [], - displayUploadedFiles: false, - uploadedFilesRetrieved: false, - }; - } - - componentDidMount = async () => { - this.validateFileByExtension = this.validateFileByExtension.bind(this); - this.removeFile = this.removeFile.bind(this); - this.submitUpload = this.submitUpload.bind(this); - this.viewUploaded = this.viewUploaded.bind(this); - this.isFileTypeAllowed = this.isFileTypeAllowed.bind(this); - this.isFileNameValid = this.isFileNameValid.bind(this); - this.deleteFile = this.deleteFile.bind(this); - await this.viewUploaded(); - }; - - isFileTypeAllowed = (extension) => { +const UploadComponent = ({ question }) => { + // eslint-disable-next-line no-unused-vars + const [blockFileSubmission, setBlockFileSubmission] = useState(true); + const [loadedFiles, setLoadedFiles] = useState([]); + const [uploadedFiles, setUploadedFiles] = useState([]); + const [displayUploadedFiles, setDisplayUploadedFiles] = useState(false); + const [uploadedFilesRetrieved, setUploadedFilesRetrieved] = useState(false); + const [inputErrors, setInputErrors] = useState(); + + const [user, year, stateCode, reportStatus] = useSelector( + (state) => [ + state.stateUser.currentUser, + state.formData[0].contents.section.year, + state.formData[0].contents.section.state, + state.reportStatus, + ], + shallowEqual + ); + + const dispatch = useDispatch(); + + useEffect(() => { + viewUploaded(); + }, []); + + const isFileTypeAllowed = (extension) => { const allowedFileTypes = [ "jpg", "jpeg", @@ -53,15 +57,13 @@ class UploadComponent extends Component { return allowedFileTypes.indexOf(extension) > -1; }; - isFileNameValid = (fileName) => { + const isFileNameValid = (fileName) => { let fileNameRegex = new RegExp("^[0-9a-zA-z-_.]*$"); return fileNameRegex.test(fileName); }; - submitUpload = async () => { - const { loadedFiles } = this.state; - const { year, stateCode } = this.props; - const questionId = this.props.question.id; + const submitUpload = async () => { + const questionId = question.id; for (const uploadedFile of loadedFiles) { const presignedPostData = await recordFileInDatabaseAndGetUploadUrl( @@ -77,79 +79,60 @@ class UploadComponent extends Component { (e) => e.name !== uploadedFile.name ); - this.setState({ - loadedFiles: filteredStateFiles, - blockFileSubmission: true, - }); + setLoadedFiles(filteredStateFiles); + setBlockFileSubmission(true); - if (this.state.displayUploadedFiles === false) { - await this.viewUploaded(); + if (displayUploadedFiles === false) { + await viewUploaded(); } else { - await this.retrieveUploadedFiles(); + await retrieveUploadedFiles(); } } }; - viewUploaded = async () => { - if (this.state.displayUploadedFiles === false) { - this.setState({ - displayUploadedFiles: true, - }); - await this.retrieveUploadedFiles(); + const viewUploaded = async () => { + if (displayUploadedFiles === false) { + setDisplayUploadedFiles(true); + await retrieveUploadedFiles(); } else { // *** make sure container for files is NOT displayed - this.setState({ - displayUploadedFiles: false, - }); + setDisplayUploadedFiles(false); } }; - removeFile = (evt) => { - const { loadedFiles } = this.state; - + const removeFile = (evt) => { const filteredStateFiles = loadedFiles.filter( (e) => e.name !== evt.target.name ); - - this.setState({ - loadedFiles: filteredStateFiles, - }); + setLoadedFiles(filteredStateFiles); }; - downloadFile = async (fileId) => { - const { year, stateCode } = this.props; + const downloadFile = async (fileId) => { window.location.href = await getFileDownloadUrl(year, stateCode, fileId); }; - retrieveUploadedFiles = async () => { - const questionId = this.props.question.id; - const { year, stateCode } = this.props; + const retrieveUploadedFiles = async () => { + const questionId = question.id; - this.setState({ - uploadedFilesRetrieved: false, - }); + setUploadedFilesRetrieved(false); const uploadedFiles = await getUploadedFiles(year, stateCode, questionId); // *** hide the loading preloader - this.setState({ - uploadedFilesRetrieved: true, - uploadedFiles: uploadedFiles, - }); + setUploadedFilesRetrieved(true); + setUploadedFiles(uploadedFiles); }; - deleteFile = async (fileId) => { - const { year, stateCode } = this.props; - + const deleteFile = async (fileId) => { await deleteUploadedFile(year, stateCode, fileId); - await this.retrieveUploadedFiles(); + await retrieveUploadedFiles(); }; /* * TODO: when one file errors, the others are loaded but the error stays * to duplicate: try loading all 9 */ - validateFileByExtension = (event) => { + const validateFileByExtension = (event) => { if (event.target.files.length > 0) { const filesArray = event.target.files; // All files selected by a user const filePayload = []; @@ -161,8 +144,8 @@ class UploadComponent extends Component { const uploadName = file.name; const mediaSize = file.size / 1024 / 1024; const mediaExtension = uploadName.split(".").pop(); - const fileTypeAllowed = this.isFileTypeAllowed(mediaExtension); - const fileNameInvalid = !this.isFileNameValid(uploadName); + const fileTypeAllowed = isFileTypeAllowed(mediaExtension); + const fileNameInvalid = !isFileNameValid(uploadName); if (fileTypeAllowed === true) { if (fileNameInvalid === true) { @@ -182,168 +165,129 @@ class UploadComponent extends Component { ); } } - - const { loadedFiles } = this.state; - - this.setState({ - inputErrors: errorString || null, - loadedFiles: loadedFiles - ? [...loadedFiles, ...filePayload] - : [...filePayload], - blockFileSubmission: false, - }); + setInputErrors(errorString || null); + setLoadedFiles( + loadedFiles ? [...loadedFiles, ...filePayload] : [...filePayload] + ); + setBlockFileSubmission(false); if (errorString === "") { - const { setAnswer } = this.props; - setAnswer(event.target.name, filePayload); + dispatch(setAnswerEntry(event.target.name, filePayload)); } } }; - render() { - let submissionsAllowed = false; - const { year, stateCode, user, reportStatus } = this.props; - if (year && stateCode) { - const stateReportStatus = reportStatus[`${stateCode}${year}`]; - submissionsAllowed = - stateReportStatus.status !== REPORT_STATUS.certified && - user.role === AppRoles.STATE_USER; - } + let submissionsAllowed = false; + if (year && stateCode) { + const stateReportStatus = reportStatus[`${stateCode}${year}`]; + submissionsAllowed = + stateReportStatus.status !== REPORT_STATUS.certified && + user.role === AppRoles.STATE_USER; + } - return ( + return ( + <div> <div> - <div> - <TextField - accept=".jpg, .png, .docx, .doc, .pdf, .xlsx, .xls, .xlsm" - className="file_upload" - disabled={!submissionsAllowed} - errorMessage={this.state.inputErrors} - hint="Files must be in one of these formats: PDF, Word, Excel, or a valid image (jpg or png)." - label="Click Choose Files and make your selection(s) then click Upload to attach your files. Click View Uploaded to see a list of all files attached here." - multiple - name={this.props.question.id} - onChange={this.validateFileByExtension} - type="file" - /> - </div> - - {this.state.loadedFiles?.map((file, i) => ( - <div key={file.name}> - <a href={encodeURIComponent(file.name)} download> - {" "} - {file.name}{" "} - </a> - <Button - data-testid={`unstage-${i}`} - name={file.name} - onClick={this.removeFile} - size="small" - > - x - </Button> - </div> - ))} - - <Button - onClick={this.submitUpload} - size="small" + <TextField + accept=".jpg, .png, .docx, .doc, .pdf, .xlsx, .xls, .xlsm" + className="file_upload" disabled={!submissionsAllowed} - className="" - > - Upload - </Button> + errorMessage={inputErrors} + hint="Files must be in one of these formats: PDF, Word, Excel, or a valid image (jpg or png)." + label="Click Choose Files and make your selection(s) then click Upload to attach your files. Click View Uploaded to see a list of all files attached here." + multiple + name={question.id} + onChange={validateFileByExtension} + type="file" + /> + </div> - <Button - onClick={this.viewUploaded} - size="small" - className="margin-left-1em" - > - {this.state.displayUploadedFiles ? `Hide Uploaded` : `View Uploaded`} - </Button> - - {this.state.displayUploadedFiles && - this.state.uploadedFiles?.length > 0 ? ( - <table - data-testid="uploadedFilesContainer" - key={"uploadedFilesContainer"} - summary={ - this.props.question.label || - "This is a table for the CARTS Application" - } + {loadedFiles?.map((file, i) => ( + <div key={file.name}> + <a href={encodeURIComponent(file.name)} download> + {file.name} + </a> + <Button + data-testid={`unstage-${i}`} + name={file.name} + onClick={removeFile} + size="small" > - <tbody> - {!this.state.uploadedFilesRetrieved ? ( - <tr> - <td> - <img - // eslint-disable-next-line - src={`/img/bouncing_ball.gif`} - alt="Retrieving uploaded files... Please wait..." - />{" "} - <br /> - <br /> - Loading... Please wait... - </td> - </tr> - ) : ( - this.state.uploadedFiles.map((file) => { - return ( - <tr key={file.aws_filename}> - <td>{file.filename}</td> - <td> - <Button - size="small" - onClick={() => this.downloadFile(file.fileId)} - > - Download - </Button> - </td> - <td> - <Button - size="small" - onClick={() => this.deleteFile(file.fileId)} - disabled={!submissionsAllowed} - > - Delete - </Button> - </td> - </tr> - ); - }) - )} - </tbody> - </table> - ) : null} - </div> - ); - } -} + x + </Button> + </div> + ))} + + <Button + onClick={submitUpload} + size="small" + disabled={!submissionsAllowed} + className="" + > + Upload + </Button> + + <Button onClick={viewUploaded} size="small" className="margin-left-1em"> + {displayUploadedFiles ? `Hide Uploaded` : `View Uploaded`} + </Button> + + {displayUploadedFiles && uploadedFiles?.length > 0 ? ( + <table + data-testid="uploadedFilesContainer" + key={"uploadedFilesContainer"} + summary={ + question.label || "This is a table for the CARTS Application" + } + > + <tbody> + {!uploadedFilesRetrieved ? ( + <tr> + <td> + <img + // eslint-disable-next-line + src={`/img/bouncing_ball.gif`} + alt="Retrieving uploaded files... Please wait..." + /> + <br /> + <br /> + Loading... Please wait... + </td> + </tr> + ) : ( + uploadedFiles.map((file) => { + return ( + <tr key={file.aws_filename}> + <td>{file.filename}</td> + <td> + <Button + size="small" + onClick={() => downloadFile(file.fileId)} + > + Download + </Button> + </td> + <td> + <Button + size="small" + onClick={() => deleteFile(file.fileId)} + disabled={!submissionsAllowed} + > + Delete + </Button> + </td> + </tr> + ); + }) + )} + </tbody> + </table> + ) : null} + </div> + ); +}; UploadComponent.propTypes = { question: PropTypes.any, - id: PropTypes.any, -}; - -const mapStateToProps = (state) => ({ - USState: state.stateUser.abbr, // Currently this is meaningless dummy data - user: state.stateUser.currentUser, - year: state.formData[0].contents.section.year, - stateCode: state.formData[0].contents.section.state, - reportStatus: state.reportStatus, -}); - -const mapDispatchToProps = { - setAnswer: setAnswerEntry, }; -export default connect(mapStateToProps, mapDispatchToProps)(UploadComponent); - -/* - * associate with US State - * meets file validation requirements ( #517 ) - * for audit purposes, save name of user who is saving the file. - * save to server - * provide user with status updates - at a minimum "uploading..." and "upload complete". - * display spinner until file upload is complete (see below for design) - * provide user with notice if there is an error. - */ +export default UploadComponent; diff --git a/services/ui-src/src/components/sections/Print.jsx b/services/ui-src/src/components/sections/Print.jsx index a0cc8a27a..f7bc26f35 100644 --- a/services/ui-src/src/components/sections/Print.jsx +++ b/services/ui-src/src/components/sections/Print.jsx @@ -1,28 +1,35 @@ import React, { useEffect } from "react"; -import { connect, useDispatch } from "react-redux"; +import { shallowEqual, useDispatch, useSelector } from "react-redux"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faPrint } from "@fortawesome/free-solid-svg-icons"; import { Button } from "@cmsgov/design-system"; -import PropTypes from "prop-types"; +import { useLocation } from "react-router-dom"; +import { Helmet } from "react-helmet"; +// components import Title from "../layout/Title"; import Section from "../layout/Section"; +// utils import statesArray from "../utils/statesArray"; import { loadEnrollmentCounts, loadSections } from "../../actions/initial"; -import { useLocation } from "react-router-dom"; -import { Helmet } from "react-helmet"; import requestOptions from "../../hooks/authHooks/requestOptions"; import { apiLib } from "../../util/apiLib"; /** * Generate data and load entire form based on user information * - * @param currentUser - * @param state * @returns {JSX.Element} * @constructor */ -const Print = ({ currentUser, state, name }) => { +const Print = () => { const dispatch = useDispatch(); + const [formData, currentUser, name] = useSelector( + (state) => [ + state.formData, + state.stateUser.currentUser, + state.stateUser.name, + ], + shallowEqual + ); const search = useLocation().search; const searchParams = new URLSearchParams(search); const stateInitials = searchParams.get("state"); @@ -33,22 +40,22 @@ const Print = ({ currentUser, state, name }) => { const subsectionId = searchParams.get("subsectionId"); const openPdf = (basePdf) => { - let byteCharacters = atob(basePdf); + const byteCharacters = atob(basePdf); let byteNumbers = new Array(byteCharacters.length); for (let i = 0; i < byteCharacters.length; i++) { byteNumbers[i] = byteCharacters.charCodeAt(i); } - let byteArray = new Uint8Array(byteNumbers); - let file = new Blob([byteArray], { type: "application/pdf;base64" }); - let fileURL = URL.createObjectURL(file); + const byteArray = new Uint8Array(byteNumbers); + const file = new Blob([byteArray], { type: "application/pdf;base64" }); + const fileURL = URL.createObjectURL(file); window.open(fileURL); }; const getPdfFriendlyDocument = async () => { - const noscriptTag = document.querySelector("noscript"); - if (noscriptTag) { - noscriptTag.remove(); - } + // get html element and remove noscript tag + const html = document.querySelector("html"); + html.querySelector("noscript")?.remove(); + document.querySelectorAll("input").forEach((element) => { if (element.type === "text") { element.style.height = "50px"; @@ -59,18 +66,22 @@ const Print = ({ currentUser, state, name }) => { element.remove(); } }); + + if (!document.querySelector("base")) { + const base = document.createElement("base"); + base.href = `https://${window.location.host}`; + document.querySelector("head").prepend(base); + } + const htmlString = document .querySelector("html") - .outerHTML.replaceAll( - '<link href="', - `<link href="https://${window.location.host}` - ) - .replaceAll(`’`, `'`) + .outerHTML.replaceAll(`’`, `'`) .replaceAll(`‘`, `'`) .replaceAll(`”`, `"`) .replaceAll(`“`, `"`) .replaceAll("\u2013", "-") .replaceAll("\u2014", "-"); + const base64String = btoa(unescape(encodeURIComponent(htmlString))); const opts = await requestOptions(); opts.body = { @@ -85,13 +96,12 @@ const Print = ({ currentUser, state, name }) => { // Create function to call data to prevent return data from useEffect const retrieveUserData = async () => { // Get user details - const { stateUser } = state; const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); const selectedYear = urlParams.get("year"); let stateCode; - if (stateUser.currentUser.state.id) { - stateCode = stateUser.currentUser.state.id; + if (currentUser.state.id) { + stateCode = currentUser.state.id; } else { stateCode = urlParams.get("state"); } @@ -119,7 +129,6 @@ const Print = ({ currentUser, state, name }) => { const sections = []; // Check if formData has values - const { formData } = state; if (formData !== undefined && formData.length !== 0) { sections.push(<Title urlStateName={stateName} />); @@ -131,6 +140,7 @@ const Print = ({ currentUser, state, name }) => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } else { @@ -155,6 +165,7 @@ const Print = ({ currentUser, state, name }) => { sectionId={sectionId} subsectionId={subsectionId} readonly="false" + printView="true" /> ); } @@ -175,7 +186,6 @@ const Print = ({ currentUser, state, name }) => { <FontAwesomeIcon icon={faPrint} /> Print </Button> </div> - <Helmet> <title> {stateName} CARTS FY{formYear} Report @@ -195,16 +205,4 @@ const Print = ({ currentUser, state, name }) => { ); }; -Print.propTypes = { - state: PropTypes.object.isRequired, - currentUser: PropTypes.object.isRequired, - name: PropTypes.string, -}; - -const mapStateToProps = (state) => ({ - state, - currentUser: state.stateUser, - name: state.stateUser.name, -}); - -export default connect(mapStateToProps)(Print); +export default Print; diff --git a/services/ui-src/src/components/sections/Userinfo.jsx b/services/ui-src/src/components/sections/UserInfo.jsx similarity index 57% rename from services/ui-src/src/components/sections/Userinfo.jsx rename to services/ui-src/src/components/sections/UserInfo.jsx index 7000a58c8..ca62d58fa 100644 --- a/services/ui-src/src/components/sections/Userinfo.jsx +++ b/services/ui-src/src/components/sections/UserInfo.jsx @@ -1,8 +1,8 @@ import React from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useSelector } from "react-redux"; -const Userinfo = ({ currentUser }) => { +const UserInfo = () => { + const currentUser = useSelector((state) => state.stateUser.currentUser); const info = Object.entries(currentUser).map(([key, value]) => { if (key === "state") { return ( @@ -26,12 +26,4 @@ const Userinfo = ({ currentUser }) => { ); }; -Userinfo.propTypes = { - currentUser: PropTypes.object.isRequired, -}; - -const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, -}); - -export default connect(mapStateToProps)(Userinfo); +export default UserInfo; diff --git a/services/ui-src/src/components/sections/UserInfo.test.jsx b/services/ui-src/src/components/sections/UserInfo.test.jsx new file mode 100644 index 000000000..0d2270db5 --- /dev/null +++ b/services/ui-src/src/components/sections/UserInfo.test.jsx @@ -0,0 +1,27 @@ +import React from "react"; +import { mount } from "enzyme"; +import configureMockStore from "redux-mock-store"; +import { Provider } from "react-redux"; +import thunk from "redux-thunk"; +// components +import UserInfo from "./UserInfo"; +// mocks +import { stateUserWithReportInProgress } from "../../store/fakeStoreExamples"; + +const mockStore = configureMockStore([thunk]); +const stateUser = mockStore(stateUserWithReportInProgress); + +const UserInfoComponent = ( + <Provider store={stateUser}> + <UserInfo /> + </Provider> +); + +describe("UserInfo", () => { + const { email, state } = stateUserWithReportInProgress.stateUser.currentUser; + it("should render the UserInfo Component correctly", () => { + const wrapper = mount(UserInfoComponent); + expect(wrapper.find("li").first().text()).toBe(`username: ${email}`); + expect(wrapper.find("li").at(1).text().trim()).toBe(`state: ${state.id}`); + }); +}); diff --git a/services/ui-src/src/components/sections/UserProfile.jsx b/services/ui-src/src/components/sections/UserProfile.jsx index 64dc214fd..434eb6b46 100644 --- a/services/ui-src/src/components/sections/UserProfile.jsx +++ b/services/ui-src/src/components/sections/UserProfile.jsx @@ -1,8 +1,8 @@ import React from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; +import { useSelector } from "react-redux"; -const UserProfile = ({ currentUser }) => { +const UserProfile = () => { + const currentUser = useSelector((state) => state.stateUser.currentUser); return ( <div className="page-info ds-l-container"> <div className="ds-l-col--12"> @@ -38,12 +38,4 @@ const UserProfile = ({ currentUser }) => { ); }; -UserProfile.propTypes = { - currentUser: PropTypes.object.isRequired, -}; - -const mapStateToProps = (state) => ({ - currentUser: state.stateUser.currentUser, -}); - -export default connect(mapStateToProps)(UserProfile); +export default UserProfile; diff --git a/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx b/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx index e28785329..3ee3edbd5 100644 --- a/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx +++ b/services/ui-src/src/components/sections/homepage/CMSHomepage.jsx @@ -1,21 +1,17 @@ import React, { useEffect, useState } from "react"; -import PropTypes from "prop-types"; -import { connect } from "react-redux"; -import { getAllStateStatuses } from "../../../actions/initial"; -import ReportItem from "./ReportItem"; -import { selectFormStatuses, selectYears } from "../../../store/selectors"; +import { shallowEqual, useDispatch, useSelector } from "react-redux"; import { Button } from "@cmsgov/design-system"; import { MultiSelect } from "react-multi-select-component"; +// components +import ReportItem from "./ReportItem"; import { DropdownOption } from "../../fields/DropdownOption"; +// utils +import { getAllStateStatuses } from "../../../actions/initial"; +import { selectFormStatuses, selectYears } from "../../../store/selectors"; +// types import { STATUS_MAPPING, AppRoles } from "../../../types"; -const CMSHomepage = ({ - getStatuses, - allStateStatuses, - currentUserRole, - stateList, - yearList, -}) => { +const CMSHomepage = () => { const statusList = [ { label: "Certified", value: "certified" }, { label: "In Progress", value: "in_progress" }, @@ -32,8 +28,21 @@ const CMSHomepage = ({ const [statusIds, setStatusIds] = useState([]); const [filteredStatuses, setFilteredStatuses] = useState([]); + const dispatch = useDispatch(); + const [allStateStatuses, stateList, currentUserRole, yearList] = useSelector( + (state) => [ + selectFormStatuses(state), + state.allStatesData.map((element) => { + return { label: element.name, value: element.code }; + }), + state.stateUser.currentUser.role, + selectYears(state.global.currentYear), + ], + shallowEqual + ); + useEffect(() => { - getStatuses(); + dispatch(getAllStateStatuses()); setFilteredStatuses(allStateStatuses); }, []); @@ -238,29 +247,4 @@ const CMSHomepage = ({ ); }; -CMSHomepage.propTypes = { - getStatuses: PropTypes.func.isRequired, - allStateStatuses: PropTypes.object.isRequired, - currentYear: PropTypes.number.isRequired, - currentUserRole: PropTypes.string.isRequired, - stateList: PropTypes.array.isRequired, - yearList: PropTypes.array.isRequired, - reportState: PropTypes.object.isRequired, -}; - -const mapState = (state) => ({ - allStateStatuses: selectFormStatuses(state), - currentYear: state.global.formYear, - stateList: state.allStatesData.map((element) => { - return { label: element.name, value: element.code }; - }), - currentUserRole: state.stateUser.currentUser.role, - reportstate: state.reportStatus, - yearList: selectYears(state), -}); - -const mapDispatch = { - getStatuses: getAllStateStatuses ?? {}, -}; - -export default connect(mapState, mapDispatch)(CMSHomepage); +export default CMSHomepage; diff --git a/services/ui-src/src/components/sections/homepage/ReportItem.jsx b/services/ui-src/src/components/sections/homepage/ReportItem.jsx index fea0da316..836a40a1b 100644 --- a/services/ui-src/src/components/sections/homepage/ReportItem.jsx +++ b/services/ui-src/src/components/sections/homepage/ReportItem.jsx @@ -1,30 +1,32 @@ import React from "react"; import PropTypes from "prop-types"; -import { connect } from "react-redux"; +import { useDispatch } from "react-redux"; import { Link } from "react-router-dom"; -import { theUncertify } from "../../../actions/uncertify"; -import { AppRoles } from "../../../types"; import { Dialog } from "@cmsgov/design-system"; +// utils +import { uncertifyReport } from "../../../actions/uncertify"; import useModal from "../../../hooks/useModal"; +// types +import { AppRoles } from "../../../types"; const ReportItem = ({ - link1Text, - link1URL, + link1Text = "View", + link1URL = "#", name, - statusText, - theUncertify: uncertifyAction, + statusText = "Missing Status", userRole, year, username, lastChanged, timeZone, }) => { + const dispatch = useDispatch(); const anchorTarget = "_self"; const stateCode = link1URL.toString().split("/")[3]; const stateYear = link1URL.toString().split("/")[4]; const { isShowing, toggleModal } = useModal(); let lastEditedNote = ""; - let stateUser = userRole === AppRoles.STATE_USER; + const isStateUser = userRole === AppRoles.STATE_USER; if (lastChanged) { const date = new Date(lastChanged); @@ -47,7 +49,7 @@ const ReportItem = ({ } const uncertify = async () => { - await uncertifyAction(stateCode, stateYear); + await dispatch(uncertifyReport(stateCode, stateYear)); toggleModal(); window.location.reload(false); }; @@ -60,7 +62,7 @@ const ReportItem = ({ return ( <> - {!stateUser && ( + {!isStateUser && ( <div className="report-item ds-l-row"> <div className="name ds-l-col--1">{year}</div> <div className="name ds-l-col--2">{name}</div> @@ -112,7 +114,7 @@ const ReportItem = ({ )} </div> )} - {stateUser && ( + {isStateUser && ( <div className="report-item ds-l-row"> <div className="name ds-l-col--2">{name}</div> <div className="status ds-l-col--2">{statusText}</div> @@ -133,7 +135,6 @@ const ReportItem = ({ }; ReportItem.propTypes = { - theUncertify: PropTypes.func.isRequired, link1Text: PropTypes.string, link1URL: PropTypes.string.isRequired, name: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, @@ -144,16 +145,5 @@ ReportItem.propTypes = { lastChanged: PropTypes.string.isRequired, timeZone: PropTypes.string, }; -ReportItem.defaultProps = { - link1Text: "View", - link1URL: "#", - statusText: "Missing Status", -}; - -const mapState = (state) => ({ - user: state.reportStatus.username, -}); - -const mapDispatch = { theUncertify }; -export default connect(mapState, mapDispatch)(ReportItem); +export default ReportItem; diff --git a/services/ui-src/src/components/utils/InvokeSection.jsx b/services/ui-src/src/components/utils/InvokeSection.jsx index 985050d10..fa3e27909 100644 --- a/services/ui-src/src/components/utils/InvokeSection.jsx +++ b/services/ui-src/src/components/utils/InvokeSection.jsx @@ -1,15 +1,18 @@ import React, { useEffect } from "react"; -import { connect, useDispatch } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import { useParams } from "react-router-dom"; +// components +import Section from "../layout/Section"; +// utils import { loadForm } from "../../actions/initial"; import { constructIdFromYearSectionAndSubsection } from "../../store/formData"; -import Section from "../layout/Section"; import { updateFormYear, updateStateName } from "../../store/globalVariables"; -const InvokeSection = (username) => { +const InvokeSection = () => { const { state, year, sectionOrdinal, subsectionMarker } = useParams(); const dispatch = useDispatch(); const currentPath = window.location.href; + const username = useSelector((state) => state.stateUser.currentUser.username); useEffect(() => { if (username) { @@ -38,8 +41,4 @@ const InvokeSection = (username) => { return <Section sectionId={sectionId} subsectionId={subsectionId} />; }; -const mapState = (state) => ({ - username: state.stateUser.currentUser.username, -}); - -export default connect(mapState)(InvokeSection); +export default InvokeSection; diff --git a/services/ui-src/src/components/utils/ScrollToTop.js b/services/ui-src/src/components/utils/ScrollToTop.js index 3e841787e..522275565 100644 --- a/services/ui-src/src/components/utils/ScrollToTop.js +++ b/services/ui-src/src/components/utils/ScrollToTop.js @@ -1,11 +1,11 @@ import { useEffect } from "react"; -import { withRouter } from "react-router-dom"; +import { useHistory } from "react-router-dom"; -function ScrollToTop({ history }) { +function ScrollToTop() { + const history = useHistory(); useEffect(() => { const unlisten = history.listen(() => { window.scrollTo(0, 0); - // Remove focus from clicked button document.activeElement.blur(); }); @@ -17,4 +17,4 @@ function ScrollToTop({ history }) { return null; } -export default withRouter(ScrollToTop); +export default ScrollToTop; diff --git a/services/ui-src/src/components/utils/Spinner.jsx b/services/ui-src/src/components/utils/Spinner.jsx index b823aa77e..67c5b9a0f 100644 --- a/services/ui-src/src/components/utils/Spinner.jsx +++ b/services/ui-src/src/components/utils/Spinner.jsx @@ -1,30 +1,22 @@ import React from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; +import { useSelector } from "react-redux"; -const Spinner = (props) => { - const { isFetching } = props; +const Spinner = () => { + const isFetching = useSelector((state) => state.global.isFetching); - return isFetching ? ( - <div className="preloader"> - <div className="preloader-image"> - <img - data-testid="spinner-img" - src={`/img/spinner.gif`} - alt="Loading. Please wait." - /> + return ( + isFetching && ( + <div className="preloader"> + <div className="preloader-image"> + <img + data-testid="spinner-img" + src={`/img/spinner.gif`} + alt="Loading. Please wait." + /> + </div> </div> - </div> - ) : null; + ) + ); }; -Spinner.propTypes = { - isFetching: PropTypes.bool.isRequired, -}; -const mapStateToProps = (state) => { - return { - isFetching: state.global.isFetching, - }; -}; - -export default connect(mapStateToProps)(Spinner); +export default Spinner; diff --git a/services/ui-src/src/hooks/authHooks/authLifecycle.js b/services/ui-src/src/hooks/authHooks/authLifecycle.js index ebce8f5c4..c0ee3b689 100644 --- a/services/ui-src/src/hooks/authHooks/authLifecycle.js +++ b/services/ui-src/src/hooks/authHooks/authLifecycle.js @@ -1,10 +1,10 @@ import { Auth, Hub } from "aws-amplify"; -import moment from "moment"; +import { add } from "date-fns"; import { setAuthTimeout } from "../../store/stateUser"; /* * After the token expires, refresh tokens will be used in the allotted idle window. - * If not retireved, they will bre prompted at the specified time to refresh or logout. + * If not retrieved, they will be prompted at the specified time to refresh or logout. */ const IDLE_WINDOW = 30 * 60 * 1000; // ms const PROMPT_AT = 29 * 60 * 1000; //ms @@ -22,9 +22,10 @@ class AuthManager { updateTimeout = debounce(() => this.setTimer()); constructor(store) { - // Force users with stale tokens > then the timeout to log in for a fresh session - const exp = localStorage.getItem("mdctcarts_session_exp"); - if (exp && moment(exp).isBefore()) { + // Force users with stale tokens greater than the timeout to log in for a fresh session + const expiration = localStorage.getItem("mdctcarts_session_exp"); + const isExpired = expiration && new Date(expiration).valueOf() < Date.now(); + if (isExpired) { localStorage.removeItem("mdctcarts_session_exp"); Auth.signOut().then(() => { window.location.href = "/"; @@ -63,7 +64,7 @@ class AuthManager { * Timer function for idle timeout, keeps track of an idle timer that triggers a forced logout timer if not reset. */ setTimer() { - const expiration = moment().add(IDLE_WINDOW, "milliseconds"); + const expiration = add(Date.now(), { seconds: IDLE_WINDOW / 1000 }); if (this.timeoutPromptId) { clearTimeout(this.timeoutPromptId); clearTimeout(this.timeoutForceId); diff --git a/services/ui-src/src/store/formData.js b/services/ui-src/src/store/formData.js index ff00206cc..b6d86bf5b 100644 --- a/services/ui-src/src/store/formData.js +++ b/services/ui-src/src/store/formData.js @@ -107,8 +107,8 @@ export default (state = initialState, action) => { }; /* Helper functions for getting values from the JSON returned by the API */ -export const selectSectionByOrdinal = (state, ordinal) => { - const section = state.formData.filter( +export const selectSectionByOrdinal = (formData, ordinal) => { + const section = formData.filter( (c) => c.contents.section.ordinal === ordinal ); if (section.length > 0) { @@ -158,22 +158,22 @@ export const extractJsonPathExpressionFromQuestionLike = ( }; export const selectFragmentByJsonPath = ( - state, + formData, expr, sectionOrdinal = false ) => { const sectionNumber = sectionOrdinal || extractSectionOrdinalFromJPExpr(expr); - const section = selectSectionByOrdinal(state, sectionNumber); + const section = selectSectionByOrdinal(formData, sectionNumber); // Note that the following assumes that there's only one matching result. const fragment = jsonpath.query(section, expr)[0]; return fragment; }; -export const selectFragmentById = (state, id) => { +export const selectFragmentById = (formData, id) => { const sectionOrdinal = extractSectionOrdinalFromId(id); const jpexpr = `$..*[?(@ && @.id=='${id}')]`; - return selectFragmentByJsonPath(state, jpexpr, sectionOrdinal); + return selectFragmentByJsonPath(formData, jpexpr, sectionOrdinal); }; /** @@ -199,8 +199,8 @@ export const selectFragmentFromTarget = (target, expr) => { * @param {string} id - The id of what we're looking for, e.g. 2020-01-a-01-01-a-01. * @param {string} jp - JSONPath expression, although if id is not supplied it must be a JSONPath expression with an id lookup in it. */ -export const selectFragment = (state, id = null, jp = null) => { - if (!state.formData || state.formData.length === 0) { +export const selectFragment = (formData, id = null, jp = null) => { + if (!formData || formData.length === 0) { return null; } if (!id && !jp) { @@ -208,7 +208,7 @@ export const selectFragment = (state, id = null, jp = null) => { } const idValue = id ?? jp.split("id=='")[1].split("'")[0]; const sectionOrdinal = extractSectionOrdinalFromId(idValue); - const section = selectSectionByOrdinal(state, sectionOrdinal); + const section = selectSectionByOrdinal(formData, sectionOrdinal); let targetObject = section; const chunks = idValue.split("-").slice(2); // Year is irrelevant so we skip it; same for section since we just got it above. if (chunks.length >= 2) { diff --git a/services/ui-src/src/store/selectors.js b/services/ui-src/src/store/selectors.js index 35bd9396c..a64834d0c 100644 --- a/services/ui-src/src/store/selectors.js +++ b/services/ui-src/src/store/selectors.js @@ -24,8 +24,8 @@ export const selectSectionTitle = (state, sectionId) => { return null; }; -export const selectSubsectionTitleAndPartIDs = (state, subsectionId) => { - const subsection = selectFragment(state, subsectionId); +export const selectSubsectionTitleAndPartIDs = (formData, subsectionId) => { + const subsection = selectFragment(formData, subsectionId); if (subsection) { return { @@ -37,18 +37,6 @@ export const selectSubsectionTitleAndPartIDs = (state, subsectionId) => { return null; }; -export const selectPartTitle = (state, partId) => { - const part = selectFragment(state, partId); - - if (part) { - return { - text: part.text, - title: part.title, - }; - } - return null; -}; - export const selectQuestion = (state, id) => { const jp = `$..[*].contents.section.subsections[*].parts[*]..questions[?(@ && @.id=='${id}')]`; const questions = jsonpath.query(state, jp); @@ -63,11 +51,29 @@ export const selectQuestion = (state, id) => { * This function is a callback for the filter method in selectQuestionsForPart * @function filterDisplay * @param {object} question - single question from the unfilteredData array in selectQuestionsForPart. - * @param {object} state - the application state + * @param {object} currentUserRole - The role of the current user. Accessed at state.currentUser.role * @returns {boolean} - to be evaluated by the filter method */ -const filterDisplay = (question, state) => { - if (!shouldDisplay(state, question.context_data)) { +const filterDisplay = ( + question, + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments +) => { + if ( + !shouldDisplay( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + question.context_data + ) + ) { // If context data and a variation of skip text exists if ( question.context_data && @@ -100,7 +106,15 @@ const filterDisplay = (question, state) => { question.questions = question.questions .map((singleQuestion) => { // reassign question.questions to be a filtered version of itself - return filterDisplay(singleQuestion, state); + return filterDisplay( + singleQuestion, + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments + ); }) .filter((q) => q !== false); } @@ -108,24 +122,41 @@ const filterDisplay = (question, state) => { }; // Returns an array of questions for the QuestionComponent to map through -export const selectQuestionsForPart = (state, partId) => { +export const selectQuestionsForPart = ( + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partId +) => { const jp = `$..[*].contents.section.subsections[*].parts[?(@ && @.id=='${partId}')].questions[*]`; - const unfilteredData = JSON.parse(JSON.stringify(jsonpath.query(state, jp))); + const unfilteredData = JSON.parse( + JSON.stringify(jsonpath.query(formData, jp)) + ); // Filter the array of questions based on conditional logic const filteredQuestions = unfilteredData .map((question) => { - return filterDisplay(question, state); + return filterDisplay( + question, + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments + ); }) .filter((q) => q !== false); return filteredQuestions; }; -export const selectSectionsForNav = (state) => { - if (state.formData) { - const sections = state.formData; - return sections.map( +export const selectSectionsForNav = (formData) => { + if (formData) { + return formData.map( ({ contents: { section: { id, ordinal, subsections, title }, @@ -146,18 +177,18 @@ export const selectSectionsForNav = (state) => { * @param {object} reportStatus - the current report status object stored in state * @param {object} formData - The current form object stored in state * @param {object} stateUser - The current user object stored in state - * @param {object} global - Global variables that will be the same regardless of users + * @param {object} formYear - The form year currently stored in global state. * @returns {object} The reportStatus object associated with the current report */ export const getCurrentReportStatus = ( reportStatus, formData, stateUser, - global + formYear ) => { let currentReport = ""; if (stateUser.currentUser.role === AppRoles.STATE_USER) { - currentReport = `${stateUser.abbr}${global.formYear}`; + currentReport = `${stateUser.abbr}${formYear}`; } else { if (formData?.[0] === undefined) return {}; currentReport = `${formData[0].stateId}${formData[0].year}`; @@ -168,18 +199,25 @@ export const getCurrentReportStatus = ( }; /** - * Determines if the report form should be editable. - * @param {object} state - The current state object - * @returns {boolean} + * Get the Status for the current report. + * @param {object} reportStatus - the current report status object stored in state + * @param {object} formData - The current form object stored in state + * @param {object} stateUser - The current user object stored in state + * @param {object} formYear - Global variables that will be the same regardless of users + * @returns {object} The reportStatus object associated with the current report */ -export const selectIsFormEditable = (state) => { - const { reportStatus, formData, stateUser, global } = state; +export const selectIsFormEditable = ( + reportStatus, + formData, + stateUser, + formYear +) => { const { role } = stateUser.currentUser; const { status } = getCurrentReportStatus( reportStatus, formData, stateUser, - global + formYear ); switch (status) { @@ -239,13 +277,11 @@ export const { selectFormStatus, selectFormStatuses } = (() => { }; })(); -export const selectYears = (state) => { - const { global } = state; - - let yearArray = []; +export const selectYears = (currentYear) => { + const yearArray = []; for ( let x = 2020; - x <= global.currentYear; + x <= currentYear; x++ // 2020 is the first year the new CARTS was used so there won't be an < 2020 forms ) { yearArray.push({ label: x, value: x }); diff --git a/services/ui-src/src/styles/_alerts.scss b/services/ui-src/src/styles/_alerts.scss index 96d644b16..d4c9fc57f 100644 --- a/services/ui-src/src/styles/_alerts.scss +++ b/services/ui-src/src/styles/_alerts.scss @@ -14,8 +14,8 @@ z-index: 9; &.alert--unexpected-error__active { - top: 60px; - margin-top: 0; + position: sticky; + margin-top: 20px; } .flex { diff --git a/services/ui-src/src/styles/_main.scss b/services/ui-src/src/styles/_main.scss index a1f9545e6..4b275d447 100644 --- a/services/ui-src/src/styles/_main.scss +++ b/services/ui-src/src/styles/_main.scss @@ -309,6 +309,9 @@ img { padding: ($padding * 2) ($padding * 5); text-align: center; width: auto; + @media only screen and (min-width: 768px) { + padding-right: 2rem; + } } } diff --git a/services/ui-src/src/styles/_sidebar.scss b/services/ui-src/src/styles/_sidebar.scss index 29d288bb0..b30be3c43 100644 --- a/services/ui-src/src/styles/_sidebar.scss +++ b/services/ui-src/src/styles/_sidebar.scss @@ -5,26 +5,25 @@ .sidebar { margin: ($margin * 3) 0; + .skip-content { margin-bottom: ($margin * 3); } .state-header { margin-bottom: ($margin * 3); position: relative; + display: flex; + flex-flow: row wrap; + align-items: center; } .state-image { - position: absolute; - text-align: center; - top: 50%; - transform: translateY(-50%); width: 70px; } .state-name { font-size: 1.6rem; font-weight: $font-weight-semi-bold; - line-height: 70px; - padding-left: 70px; + overflow-wrap: anywhere; } } diff --git a/services/ui-src/src/util/shouldDisplay.js b/services/ui-src/src/util/shouldDisplay.js index fe80e3ab7..14c39e493 100644 --- a/services/ui-src/src/util/shouldDisplay.js +++ b/services/ui-src/src/util/shouldDisplay.js @@ -14,8 +14,8 @@ import { * @param {object} hideIfInfo - the hide_if object from a question's context_data * @returns {boolean} - determines if an element should be filtered out, returning true hides a question */ -const hideIf = (state, hideIfInfo) => { - const targetAnswer = jsonpath.query(state, hideIfInfo.target)[0]; // User's selection from associated question +const hideIf = (formData, hideIfInfo) => { + const targetAnswer = jsonpath.query(formData, hideIfInfo.target)[0]; // User's selection from associated question const interactiveValues = hideIfInfo.values.interactive; // Array of values which if selected, should hide a question if (interactiveValues.includes(targetAnswer)) { @@ -27,10 +27,10 @@ const hideIf = (state, hideIfInfo) => { return false; }; -const hideIfAll = (state, hideIfAllInfo) => { +const hideIfAll = (formData, hideIfAllInfo) => { const answers = hideIfAllInfo.values.interactive; return hideIfAllInfo.targets - .map((target) => jsonpath.query(state, target)[0]) + .map((target) => jsonpath.query(formData, target)[0]) .every((answer) => answers.includes(answer)); }; @@ -41,8 +41,8 @@ const hideIfAll = (state, hideIfAllInfo) => { * @param {object} hideIfNotInfo - the hide_if_not object from a question's context_data * @returns {boolean} - determines if an element should be filtered out, returning true hides a question */ -const hideIfNot = (state, hideIfNotInfo) => { - const targetAnswer = jsonpath.query(state, hideIfNotInfo.target)[0]; // Array of user selections from associated question +const hideIfNot = (formData, hideIfNotInfo) => { + const targetAnswer = jsonpath.query(formData, hideIfNotInfo.target)[0]; // Array of user selections from associated question const interactiveValues = hideIfNotInfo.values.interactive; // Array of values which if present in a user's selections, should hide a question const includedBoolean = @@ -53,9 +53,15 @@ const hideIfNot = (state, hideIfNotInfo) => { return includedBoolean; }; -const hideIfTableValue = (state, hideIfTableValueInfo) => { +const hideIfTableValue = ( + formData, + allStatesData, + stateUserAbbr, + chipEnrollments, + hideIfTableValueInfo +) => { // Get table values - const targetValues = jsonpath.query(state, hideIfTableValueInfo.target)[0]; + const targetValues = jsonpath.query(formData, hideIfTableValueInfo.target)[0]; let computedValues = []; // If target needs to be calculated @@ -66,14 +72,19 @@ const hideIfTableValue = (state, hideIfTableValueInfo) => { for (const item of targetRow) { // get computed value via lookup function and push into a multidimensional array if (item.compareACS) { - computedRow.push(compareACS(state, item.compareACS)); + computedRow.push( + compareACS(allStatesData, stateUserAbbr, item.compareACS) + ); } else if (item.lookupChipEnrollments) { computedRow.push( - lookupChipEnrollments(state, item.lookupChipEnrollments) + lookupChipEnrollments(chipEnrollments, item.lookupChipEnrollments) ); } else if (item.compareChipEnrollements) { computedRow.push( - compareChipEnrollements(state, item.compareChipEnrollements) + compareChipEnrollements( + chipEnrollments, + item.compareChipEnrollements + ) ); } else { // Let non-computed entries pass through with the other data transparently @@ -169,11 +180,11 @@ const hideIfTableValue = (state, hideIfTableValueInfo) => { const PROGRAM_TYPE_QUESTION_ID = "-00-a-01-02"; -const getProgramTypeFromForm = (state) => { +const getProgramTypeFromForm = (formData, reportStatus) => { // attempt to find programType from same year as form - const formYear = state.formData[0].year; + const formYear = formData[0].year; const currentYearProgramType = selectFragmentById( - state, + formData, `${formYear}${PROGRAM_TYPE_QUESTION_ID}` )?.answer?.entry; if (currentYearProgramType) { @@ -183,11 +194,11 @@ const getProgramTypeFromForm = (state) => { // attempt to find programType from the previous year's form, otherwise retrieve from status const previousYear = parseInt(formYear) - 1; const previousYearProgramType = selectFragmentById( - state, + formData, `${previousYear}${PROGRAM_TYPE_QUESTION_ID}` )?.answer?.entry; - const reportStatusCode = state.formData[0].stateId + state.formData[0].year; - const programFromStatus = state.reportStatus[reportStatusCode].programType; + const reportStatusCode = formData[0].stateId + formData[0].year; + const programFromStatus = reportStatus[reportStatusCode].programType; return previousYearProgramType || programFromStatus; }; @@ -198,8 +209,16 @@ const getProgramTypeFromForm = (state) => { * @param {object} context - the context_data from a question * @returns {boolean} - determines if an element should be filtered out, returning true means a question will display */ -const shouldDisplay = (state, context) => { - if (state.stateUser.currentUser.role === AppRoles.CMS_ADMIN) return true; +const shouldDisplay = ( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + context +) => { + if (currentUserRole === AppRoles.CMS_ADMIN) return true; if ( !context || @@ -213,7 +232,7 @@ const shouldDisplay = (state, context) => { * displaying relies on that answer being included in the show_if_state_program_type_in array */ if (context.show_if_state_program_type_in) { - const program = getProgramTypeFromForm(state); + const program = getProgramTypeFromForm(formData, reportStatus); return context.show_if_state_program_type_in.includes(program); } @@ -222,12 +241,12 @@ const shouldDisplay = (state, context) => { * displaying relies on that answer being incldued in the hide_if.values.interactive array */ if (context.conditional_display.hide_if) { - return !hideIf(state, context.conditional_display.hide_if); + return !hideIf(formData, context.conditional_display.hide_if); } // hide_if_all, there is an array of targets (questions) that another question's display relies on if (context.conditional_display.hide_if_all) { - return !hideIfAll(state, context.conditional_display.hide_if_all); + return !hideIfAll(formData, context.conditional_display.hide_if_all); } /* @@ -235,7 +254,7 @@ const shouldDisplay = (state, context) => { * displaying relies on that array of answers including any of the values from the hide_if_not.values.interactive array */ if (context.conditional_display.hide_if_not) { - return !hideIfNot(state, context.conditional_display.hide_if_not); + return !hideIfNot(formData, context.conditional_display.hide_if_not); } /* @@ -244,7 +263,10 @@ const shouldDisplay = (state, context) => { */ if (context.conditional_display.hide_if_table_value) { return hideIfTableValue( - state, + formData, + allStatesData, + stateUserAbbr, + chipEnrollments, context.conditional_display.hide_if_table_value ); } diff --git a/services/ui-src/src/util/shouldDisplay.test.js b/services/ui-src/src/util/shouldDisplay.test.js index b3ccfd317..de48fe230 100644 --- a/services/ui-src/src/util/shouldDisplay.test.js +++ b/services/ui-src/src/util/shouldDisplay.test.js @@ -88,7 +88,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["a different program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -115,7 +123,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -143,7 +159,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(1); }); @@ -172,7 +196,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(1); }); @@ -202,7 +234,15 @@ describe("shouldDisplay", () => { conditional_display: null, show_if_state_program_type_in: ["test program"], }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); expect(selectFragmentById).toHaveBeenCalledTimes(2); }); @@ -214,8 +254,10 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - bar: "baz", + formData: { + foo: { + bar: "baz", + }, }, }; const context = { @@ -228,7 +270,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + null, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -239,8 +289,10 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - bar: "quux", + formData: { + foo: { + bar: "quux", + }, }, }; const context = { @@ -253,7 +305,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -264,11 +324,13 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // All of these are in values.interactive - bar: "baz", - bbr: "bbz", - bcr: "baz", + formData: { + foo: { + // All of these are in values.interactive + bar: "baz", + bbr: "bbz", + bcr: "baz", + }, }, }; const context = { @@ -281,7 +343,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -292,11 +362,13 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // One of these is not in values.interactive - bar: "baz", - bbr: "bbz", - bcr: "quux", + formData: { + foo: { + // One of these is not in values.interactive + bar: "baz", + bbr: "bbz", + bcr: "quux", + }, }, }; const context = { @@ -309,7 +381,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -320,9 +400,11 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // At least one of these is in values.interactive - bar: ["baz", "quux"], + formData: { + foo: { + // At least one of these is in values.interactive + bar: ["baz", "quux"], + }, }, }; const context = { @@ -335,7 +417,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(true); }); @@ -346,9 +436,11 @@ describe("shouldDisplay", () => { role: "test role", }, }, - foo: { - // None of these are in values.interactive - bar: ["corge", "quux"], + formData: { + foo: { + // None of these are in values.interactive + bar: ["corge", "quux"], + }, }, }; const context = { @@ -361,7 +453,15 @@ describe("shouldDisplay", () => { }, }, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + state.formData, + state.reportStatus, + null, + null, + null, + context + ); expect(result).toBe(false); }); @@ -376,7 +476,15 @@ describe("shouldDisplay", () => { const context = { conditional_display: {}, }; - const result = shouldDisplay(state, context); + const result = shouldDisplay( + state.stateUser.currentUser.role, + null, + null, + null, + null, + null, + context + ); expect(result).toBe(true); }); }); diff --git a/services/ui-src/src/util/synthesize.js b/services/ui-src/src/util/synthesize.js index 904d85777..497eabff0 100644 --- a/services/ui-src/src/util/synthesize.js +++ b/services/ui-src/src/util/synthesize.js @@ -183,28 +183,21 @@ const sum = (values) => { return returnValue; }; -const lookupFMAP = (state, fy) => { +const lookupFMAP = (allStatesData, stateName, stateUserAbbr, fy) => { // if admin and in a print view get state param const urlSearchParams = new URLSearchParams(window.location.search); const stateFromParams = urlSearchParams.get("state"); - if ( - state.allStatesData && - (state.global.stateName || state.stateUser.abbr || stateFromParams) - ) { + if (allStatesData && (stateName || stateUserAbbr || stateFromParams)) { let stateData = ""; - if (state.stateUser.abbr) { - stateData = state.allStatesData.filter( - (st) => st.code === state.stateUser.abbr - )[0]; + if (stateUserAbbr) { + stateData = allStatesData.filter((st) => st.code === stateUserAbbr)[0]; } else if (stateFromParams) { - stateData = state.allStatesData.filter( + stateData = allStatesData.filter( (st) => st.code.toLowerCase() === stateFromParams.toLowerCase() )[0]; } else { - stateData = state.allStatesData.filter( - (st) => st.name === state.global.stateName - )[0]; + stateData = allStatesData.filter((st) => st.name === stateName)[0]; } const fmap = stateData?.fmapSet.filter((year) => year.fiscalYear === +fy)[0] @@ -222,6 +215,20 @@ const snakeToCamel = (str) => group.toUpperCase().replace("-", "").replace("_", "") ); +// returns the state abbreviation for the associated report +const getStateAbbr = (stateUserAbbr) => { + if (stateUserAbbr) return stateUserAbbr; + const windowPathName = window.location.pathname; + // if admin, grab the state from the URL + const stateFromURL = windowPathName.split("/")[3]; + + // if admin and in a print view get state param + const urlSearchParams = new URLSearchParams(window.location.search); + const stateFromParams = urlSearchParams.get("state"); + + return windowPathName.includes("print") ? stateFromParams : stateFromURL; +}; + /** * Retrieve acsSet from state and return for individual state. * @@ -230,35 +237,20 @@ const snakeToCamel = (str) => * @param {string} acsProperty * @returns {string} */ -const lookupAcs = (state, { ffy, acsProperty }) => { +const lookupAcs = (allStatesData, stateUserAbbr, { ffy, acsProperty }) => { let returnValue = "Not Available"; // Support prior lookup syntax in form lookups const acsPropQuery = acsProperty.includes("_") ? snakeToCamel(acsProperty) : acsProperty; - // if allStatesData and stateUser are available - if (state.allStatesData && state.stateUser) { - const windowPathName = window.location.pathname; - // if admin, grab the state from the URL - const stateFromURL = windowPathName.split("/")[3]; - - // if admin and in a print view get state param - const urlSearchParams = new URLSearchParams(window.location.search); - const stateFromParams = urlSearchParams.get("state"); + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); - // Get stateUser state or fallback to the URL, if an admin - const stateAbbr = - state.stateUser.abbr || - (windowPathName.includes("print") ? stateFromParams : stateFromURL); - - // Filter for only matching state - const stateData = state.allStatesData.filter( - (st) => st.code === stateAbbr - )[0]; - - // Filter for matching state from JSON - const acs = stateData?.acsSet.filter((year) => year.year === +ffy)[0]; + // Find data for matching state + const stateData = allStatesData.find((st) => st.code === stateAbbr); + const acs = stateData?.acsSet.find((year) => year.year === +ffy); // If acs exists, return the value from the object if (acs) { @@ -274,32 +266,32 @@ const lookupAcs = (state, { ffy, acsProperty }) => { /** * Retrieve acsSet from state and return percentage change for 2 given years. * - * @param {string} state + * @param {object} allStatesData + * @param {string} stateUserAbbr * @param {string} ffy1 * @param {string} ffy2 * @param {string} acsProperty * @returns {(string|float)} */ -export const compareACS = (state, { ffy1, ffy2, acsProperty }) => { +export const compareACS = ( + allStatesData, + stateUserAbbr, + { ffy1, ffy2, acsProperty } +) => { const percentagePrecision = 2; let returnValue = "Not Available"; - // if allStatesData and stateUser are available - if (state.allStatesData && state.stateUser) { - // Get stateUser state - const stateAbbr = state.stateUser.abbr; - - // Filter for only matching state - const stateData = state.allStatesData.filter( - (st) => st.code === stateAbbr - )[0]; - - // Filter for the correct year of state data - const startACS = stateData?.acsSet.filter( + // if allStatesData is a populated array + if (allStatesData?.length > 0) { + const stateAbbr = getStateAbbr(stateUserAbbr); + const stateData = allStatesData.find((st) => st.code === stateAbbr); + + // Find the correct year of state data + const startACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy1, 10) - )[0]; - const endACS = stateData?.acsSet.filter( + ); + const endACS = stateData?.acsSet.find( (year) => year.year === parseInt(ffy2, 10) - )[0]; + ); // If start year and end year of ACS exist, return the calculated value (percent change) from the objects if (startACS && endACS) { @@ -319,15 +311,12 @@ export const compareACS = (state, { ffy1, ffy2, acsProperty }) => { }; export const lookupChipEnrollments = ( - state, + chipEnrollments, { ffy, enrollmentType, index } ) => { let returnValue = "Not Available"; - if ( - state.enrollmentCounts && - state.enrollmentCounts.chipEnrollments.length > 0 - ) { - let targetValue = state.enrollmentCounts.chipEnrollments.find( + if (chipEnrollments && chipEnrollments.length > 0) { + let targetValue = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === index && @@ -335,7 +324,7 @@ export const lookupChipEnrollments = ( ); // Lookup the primary stat for the past year if missing if (!targetValue && index == 1) { - targetValue = state.enrollmentCounts.chipEnrollments.find( + targetValue = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy - 1 && enrollment.indexToUpdate === index + 1 && @@ -349,20 +338,20 @@ export const lookupChipEnrollments = ( return returnValue; }; -export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { +export const compareChipEnrollements = ( + chipEnrollments, + { ffy, enrollmentType } +) => { let returnValue = "Not Available"; - if ( - state.enrollmentCounts && - state.enrollmentCounts.chipEnrollments.length > 0 - ) { + if (chipEnrollments && chipEnrollments.length > 0) { // Retrieve Values - let oldCount = state.enrollmentCounts.chipEnrollments.find( + let oldCount = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === 1 && enrollment.typeOfEnrollment === enrollmentType ); - const newCount = state.enrollmentCounts.chipEnrollments.find( + const newCount = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy && enrollment.indexToUpdate === 2 && @@ -373,7 +362,7 @@ export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { * In case this year's data has been sent, but last year's wasn't included * we still can look it up as the last year's current value */ - oldCount = state.enrollmentCounts.chipEnrollments.find( + oldCount = chipEnrollments.find( (enrollment) => enrollment.yearToModify == ffy - 1 && enrollment.indexToUpdate === 2 && @@ -395,41 +384,68 @@ export const compareChipEnrollements = (state, { ffy, enrollmentType }) => { return returnValue; }; -const synthesizeValue = (value, state) => { +const synthesizeValue = ( + value, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData +) => { if (value.contents) { return value; } if (value.lookupFmapFy) { - return { contents: lookupFMAP(state, value.lookupFmapFy) }; + return { + contents: lookupFMAP( + allStatesData, + stateName, + stateUserAbbr, + value.lookupFmapFy + ), + }; } if (value.lookupAcs) { - return { contents: [lookupAcs(state, value.lookupAcs)] }; + return { + contents: [lookupAcs(allStatesData, stateUserAbbr, value.lookupAcs)], + }; } if (value.compareACS) { - return { contents: [compareACS(state, value.compareACS)] }; + return { + contents: [compareACS(allStatesData, stateUserAbbr, value.compareACS)], + }; } if (value.lookupChipEnrollments) { return { - contents: [lookupChipEnrollments(state, value.lookupChipEnrollments)], + contents: [ + lookupChipEnrollments(chipEnrollments, value.lookupChipEnrollments), + ], }; } if (value.compareChipEnrollements) { return { - contents: [compareChipEnrollements(state, value.compareChipEnrollements)], + contents: [ + compareChipEnrollements(chipEnrollments, value.compareChipEnrollements), + ], }; } if (value.targets) { const targets = value.targets.map((target) => { if (typeof target === "object" && target.lookupFmapFy) { - return lookupFMAP(state, target.lookupFmapFy); + return lookupFMAP( + allStatesData, + stateName, + stateUserAbbr, + target.lookupFmapFy + ); } - return jsonpath.query(state, target)[0]; + return jsonpath.query(formData, target)[0]; }); if (value.actions) { diff --git a/services/ui-src/src/util/synthesize.test.js b/services/ui-src/src/util/synthesize.test.js index dcd9f979d..43aed8a7b 100644 --- a/services/ui-src/src/util/synthesize.test.js +++ b/services/ui-src/src/util/synthesize.test.js @@ -3,6 +3,9 @@ import synthesize from "../util/synthesize"; const state = { + global: { + stateName: "Alabama", + }, allStatesData: [ { name: "Alabama", @@ -33,38 +36,43 @@ const state = { stateUser: { abbr: "AL", }, - items: [ - { - id: "item0", - answer: { entry: "0" }, - }, - { - id: "item1", - answer: { entry: "1" }, - }, - { - id: "item2", - answer: { entry: "2" }, - }, - { - id: "item3", - answer: { entry: "3" }, - }, + formData: [ { - id: "item4", - answer: { entry: "4" }, - }, - { - id: "item5", - answer: { entry: "5" }, - }, - { - id: "item6", - answer: { entry: null }, - }, - { - id: "item7", - answer: { entry: "abc" }, + id: "section1", + items: [ + { + id: "item0", + answer: { entry: "0" }, + }, + { + id: "item1", + answer: { entry: "1" }, + }, + { + id: "item2", + answer: { entry: "2" }, + }, + { + id: "item3", + answer: { entry: "3" }, + }, + { + id: "item4", + answer: { entry: "4" }, + }, + { + id: "item5", + answer: { entry: "5" }, + }, + { + id: "item6", + answer: { entry: null }, + }, + { + id: "item7", + answer: { entry: "abc" }, + }, + ], }, ], enrollmentCounts: { @@ -120,7 +128,7 @@ const fallbackChipState = { }, }; -describe("value synthesization utility", () => { +describe("value synthesis utility", () => { describe("handles identity", () => { test("with no values", () => { // Returns undefined, because there's not a value @@ -129,7 +137,11 @@ describe("value synthesization utility", () => { targets: [], actions: ["identity"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: undefined }); }); @@ -144,7 +156,11 @@ describe("value synthesization utility", () => { ], actions: ["identity"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "3" }); }); @@ -162,7 +178,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: NaN }); }); @@ -178,7 +198,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: NaN }); }); @@ -194,7 +218,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 4 }); }); @@ -210,7 +238,11 @@ describe("value synthesization utility", () => { ], actions: ["sum"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 9 }); }); @@ -224,7 +256,11 @@ describe("value synthesization utility", () => { targets: ["$..*[?(@ && @.id==='item4')].answer.entry"], actions: ["percentage"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "" }); }); @@ -239,7 +275,11 @@ describe("value synthesization utility", () => { ], actions: ["percentage"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "" }); }); @@ -254,7 +294,11 @@ describe("value synthesization utility", () => { ], actions: ["percentage"], }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33.33%" }); }); @@ -270,7 +314,11 @@ describe("value synthesization utility", () => { actions: ["percentage"], precision: 4, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33.3333%" }); }); @@ -286,7 +334,11 @@ describe("value synthesization utility", () => { actions: ["percentage"], precision: 0, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33%" }); }); @@ -302,7 +354,11 @@ describe("value synthesization utility", () => { actions: ["percentage"], precision: -3, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "33.33%" }); }); @@ -323,7 +379,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ + + -", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: "" }); @@ -342,7 +402,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ +", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 4 }); @@ -364,7 +428,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ @ @ @ - + * /", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: NaN }); @@ -384,7 +452,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ @ @ @ - + * /", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 1.6 }); @@ -402,7 +474,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "@ @ @ 2 + + *", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 12 }); @@ -427,7 +503,11 @@ describe("value synthesization utility", () => { actions: ["rpn"], rpn: "- + @ @ * / @ @ @", }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: 1.6 }); @@ -443,7 +523,11 @@ describe("value synthesization utility", () => { acsProperty: "numberUninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["27,000"] }); }); @@ -456,7 +540,11 @@ describe("value synthesization utility", () => { acsProperty: "number_uninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["27,000"] }); }); @@ -469,7 +557,11 @@ describe("value synthesization utility", () => { acsProperty: "cyborgsCreated", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["Not Available"] }); const outCompare = synthesize( @@ -480,7 +572,11 @@ describe("value synthesization utility", () => { acsProperty: "cyborgsCreated", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(outCompare).toEqual({ contents: ["Not Available"] }); }); @@ -493,7 +589,11 @@ describe("value synthesization utility", () => { acsProperty: "percentUninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["2.1%"] }); }); @@ -507,7 +607,34 @@ describe("value synthesization utility", () => { acsProperty: "numberUninsured", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData + ); + expect(out).toEqual({ contents: ["3.70%"] }); + }); + + it("compares two ffys as admin user", () => { + Object.defineProperty(window, "location", { + value: { + pathname: "/views/sections/AL/2023/02", + }, + }); + const out = synthesize( + { + compareACS: { + ffy1: 2021, + ffy2: 2020, + acsProperty: "numberUninsured", + }, + }, + state.allStatesData, + state.global.stateName, + undefined, // state user abbreviation + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["3.70%"] }); }); @@ -523,7 +650,11 @@ describe("value synthesization utility", () => { index: 2, }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["333"] }); }); @@ -536,7 +667,11 @@ describe("value synthesization utility", () => { index: 1, }, }, - fallbackChipState + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + fallbackChipState.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["301"] }); }); @@ -548,7 +683,11 @@ describe("value synthesization utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["10.631%"] }); }); @@ -561,7 +700,11 @@ describe("value synthesization utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - fallbackChipState + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + fallbackChipState.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["10.631%"] }); }); @@ -573,7 +716,11 @@ describe("value synthesization utility", () => { enrollmentType: "Medicaid Expansion CHIP", }, }, - state + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData ); expect(out).toEqual({ contents: ["Not Available"] }); }); diff --git a/services/ui-src/yarn.lock b/services/ui-src/yarn.lock index be4111350..232dd1a4b 100644 --- a/services/ui-src/yarn.lock +++ b/services/ui-src/yarn.lock @@ -3124,120 +3124,120 @@ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413" integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== -"@esbuild/aix-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" - integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== - -"@esbuild/android-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" - integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== - -"@esbuild/android-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" - integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== - -"@esbuild/android-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" - integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== - -"@esbuild/darwin-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" - integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== - -"@esbuild/darwin-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" - integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== - -"@esbuild/freebsd-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" - integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== - -"@esbuild/freebsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" - integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== - -"@esbuild/linux-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" - integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== - -"@esbuild/linux-arm@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" - integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== - -"@esbuild/linux-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" - integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== - -"@esbuild/linux-loong64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" - integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== - -"@esbuild/linux-mips64el@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" - integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== - -"@esbuild/linux-ppc64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" - integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== - -"@esbuild/linux-riscv64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" - integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== - -"@esbuild/linux-s390x@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" - integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== - -"@esbuild/linux-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" - integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== - -"@esbuild/netbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" - integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== - -"@esbuild/openbsd-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" - integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== - -"@esbuild/sunos-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" - integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== - -"@esbuild/win32-arm64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" - integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== - -"@esbuild/win32-ia32@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" - integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== - -"@esbuild/win32-x64@0.20.2": - version "0.20.2" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" - integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== +"@esbuild/aix-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" + integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== + +"@esbuild/android-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" + integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== + +"@esbuild/android-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" + integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== + +"@esbuild/android-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" + integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== + +"@esbuild/darwin-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== + +"@esbuild/darwin-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" + integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== + +"@esbuild/freebsd-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" + integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== + +"@esbuild/freebsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" + integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== + +"@esbuild/linux-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" + integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== + +"@esbuild/linux-arm@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" + integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== + +"@esbuild/linux-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" + integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== + +"@esbuild/linux-loong64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" + integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== + +"@esbuild/linux-mips64el@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" + integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== + +"@esbuild/linux-ppc64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" + integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== + +"@esbuild/linux-riscv64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" + integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== + +"@esbuild/linux-s390x@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" + integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== + +"@esbuild/linux-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" + integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== + +"@esbuild/netbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" + integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== + +"@esbuild/openbsd-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" + integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== + +"@esbuild/sunos-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" + integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== + +"@esbuild/win32-arm64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" + integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== + +"@esbuild/win32-ia32@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" + integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== + +"@esbuild/win32-x64@0.21.5": + version "0.21.5" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" + integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== "@fortawesome/fontawesome-common-types@^0.2.36": version "0.2.36" @@ -3748,85 +3748,85 @@ "@babel/runtime" "^7.23.2" immutable "^4.3.4" -"@rollup/rollup-android-arm-eabi@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.17.2.tgz#1a32112822660ee104c5dd3a7c595e26100d4c2d" - integrity sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ== - -"@rollup/rollup-android-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.17.2.tgz#5aeef206d65ff4db423f3a93f71af91b28662c5b" - integrity sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw== - -"@rollup/rollup-darwin-arm64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.17.2.tgz#6b66aaf003c70454c292cd5f0236ebdc6ffbdf1a" - integrity sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw== - -"@rollup/rollup-darwin-x64@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.17.2.tgz#f64fc51ed12b19f883131ccbcea59fc68cbd6c0b" - integrity sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ== - -"@rollup/rollup-linux-arm-gnueabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.17.2.tgz#1a7641111be67c10111f7122d1e375d1226cbf14" - integrity sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A== - -"@rollup/rollup-linux-arm-musleabihf@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.17.2.tgz#c93fd632923e0fee25aacd2ae414288d0b7455bb" - integrity sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg== - -"@rollup/rollup-linux-arm64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.17.2.tgz#fa531425dd21d058a630947527b4612d9d0b4a4a" - integrity sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A== - -"@rollup/rollup-linux-arm64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.17.2.tgz#8acc16f095ceea5854caf7b07e73f7d1802ac5af" - integrity sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA== - -"@rollup/rollup-linux-powerpc64le-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.17.2.tgz#94e69a8499b5cf368911b83a44bb230782aeb571" - integrity sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ== - -"@rollup/rollup-linux-riscv64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.17.2.tgz#7ef1c781c7e59e85a6ce261cc95d7f1e0b56db0f" - integrity sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg== - -"@rollup/rollup-linux-s390x-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.17.2.tgz#f15775841c3232fca9b78cd25a7a0512c694b354" - integrity sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g== - -"@rollup/rollup-linux-x64-gnu@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.17.2.tgz#b521d271798d037ad70c9f85dd97d25f8a52e811" - integrity sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ== - -"@rollup/rollup-linux-x64-musl@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.17.2.tgz#9254019cc4baac35800991315d133cc9fd1bf385" - integrity sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q== - -"@rollup/rollup-win32-arm64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.17.2.tgz#27f65a89f6f52ee9426ec11e3571038e4671790f" - integrity sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA== - -"@rollup/rollup-win32-ia32-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.17.2.tgz#a2fbf8246ed0bb014f078ca34ae6b377a90cb411" - integrity sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ== - -"@rollup/rollup-win32-x64-msvc@4.17.2": - version "4.17.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.17.2.tgz#5a2d08b81e8064b34242d5cc9973ef8dd1e60503" - integrity sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w== +"@rollup/rollup-android-arm-eabi@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.2.tgz#4e0c4c462692ecb7ae2b008f25af4cced05ac4f9" + integrity sha512-8Ao+EDmTPjZ1ZBABc1ohN7Ylx7UIYcjReZinigedTOnGFhIctyGPxY2II+hJ6gD2/vkDKZTyQ0e7++kwv6wDrw== + +"@rollup/rollup-android-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.2.tgz#d97ed02a950061adc2056d6d2d6df8f05d877ae9" + integrity sha512-I+B1v0a4iqdS9DvYt1RJZ3W+Oh9EVWjbY6gp79aAYipIbxSLEoQtFQlZEnUuwhDXCqMxJ3hluxKAdPD+GiluFQ== + +"@rollup/rollup-darwin-arm64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.2.tgz#06dec35316de9fe433d66c849ecc056e221ba422" + integrity sha512-BTHO7rR+LC67OP7I8N8GvdvnQqzFujJYWo7qCQ8fGdQcb8Gn6EQY+K1P+daQLnDCuWKbZ+gHAQZuKiQkXkqIYg== + +"@rollup/rollup-darwin-x64@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.2.tgz#22ee27a0ccfdc045c2a37f6980351329516ce119" + integrity sha512-1esGwDNFe2lov4I6GsEeYaAMHwkqk0IbuGH7gXGdBmd/EP9QddJJvTtTF/jv+7R8ZTYPqwcdLpMTxK8ytP6k6Q== + +"@rollup/rollup-linux-arm-gnueabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.2.tgz#d86df2d8c600ebdd7251110a3357c53e0a583ace" + integrity sha512-GBHuY07x96OTEM3OQLNaUSUwrOhdMea/LDmlFHi/HMonrgF6jcFrrFFwJhhe84XtA1oK/Qh4yFS+VMREf6dobg== + +"@rollup/rollup-linux-arm-musleabihf@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.2.tgz#a8b7b6a805356c8bd0409e4c5f56664d80a50aaa" + integrity sha512-Dbfa9Sc1G1lWxop0gNguXOfGhaXQWAGhZUcqA0Vs6CnJq8JW/YOw/KvyGtQFmz4yDr0H4v9X248SM7bizYj4yQ== + +"@rollup/rollup-linux-arm64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.2.tgz#766064021d2bfc42f13f4653f8870a9b8bbdc31d" + integrity sha512-Z1YpgBvFYhZIyBW5BoopwSg+t7yqEhs5HCei4JbsaXnhz/eZehT18DaXl957aaE9QK7TRGFryCAtStZywcQe1A== + +"@rollup/rollup-linux-arm64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.2.tgz#490f49236102b97738d9406eaf5cd8d9dad35c15" + integrity sha512-66Zszr7i/JaQ0u/lefcfaAw16wh3oT72vSqubIMQqWzOg85bGCPhoeykG/cC5uvMzH80DQa2L539IqKht6twVA== + +"@rollup/rollup-linux-powerpc64le-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.2.tgz#03a67f1476dd80f115ce35bc9b0d03c50c16679d" + integrity sha512-HpJCMnlMTfEhwo19bajvdraQMcAq3FX08QDx3OfQgb+414xZhKNf3jNvLFYKbbDSGBBrQh5yNwWZrdK0g0pokg== + +"@rollup/rollup-linux-riscv64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.2.tgz#d86e9b7b5b242652cd691c46d1939130c35cb68d" + integrity sha512-/egzQzbOSRef2vYCINKITGrlwkzP7uXRnL+xU2j75kDVp3iPdcF0TIlfwTRF8woBZllhk3QaxNOEj2Ogh3t9hg== + +"@rollup/rollup-linux-s390x-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.2.tgz#c8fca373bec6df8550b31b3dbb56e2b241bc8718" + integrity sha512-qgYbOEbrPfEkH/OnUJd1/q4s89FvNJQIUldx8X2F/UM5sEbtkqZpf2s0yly2jSCKr1zUUOY1hnTP2J1WOzMAdA== + +"@rollup/rollup-linux-x64-gnu@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.2.tgz#be182ef761c9b0147496e647ace44fd1b912344f" + integrity sha512-a0lkvNhFLhf+w7A95XeBqGQaG0KfS3hPFJnz1uraSdUe/XImkp/Psq0Ca0/UdD5IEAGoENVmnYrzSC9Y2a2uKQ== + +"@rollup/rollup-linux-x64-musl@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.2.tgz#c280202d5b54d04f1e2b810359fe73c4973e8b72" + integrity sha512-sSWBVZgzwtsuG9Dxi9kjYOUu/wKW+jrbzj4Cclabqnfkot8Z3VEHcIgyenA3lLn/Fu11uDviWjhctulkhEO60g== + +"@rollup/rollup-win32-arm64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.2.tgz#8ae561401b92acb8ca7a842ffadececb22a2247e" + integrity sha512-t/YgCbZ638R/r7IKb9yCM6nAek1RUvyNdfU0SHMDLOf6GFe/VG1wdiUAsxTWHKqjyzkRGg897ZfCpdo1bsCSsA== + +"@rollup/rollup-win32-ia32-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.2.tgz#c3a8b081595026eab9fccfe581624cb31af0d6f8" + integrity sha512-kTmX5uGs3WYOA+gYDgI6ITkZng9SP71FEMoHNkn+cnmb9Zuyyay8pf0oO5twtTwSjNGy1jlaWooTIr+Dw4tIbw== + +"@rollup/rollup-win32-x64-msvc@4.22.2": + version "4.22.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.2.tgz#c770006ccc780b2de7b2151fc7f37b49121a21c1" + integrity sha512-Yy8So+SoRz8I3NS4Bjh91BICPOSVgdompTIPYTByUqU66AXSIOgmW3Lv1ke3NORPqxdF+RdrZET+8vYai6f4aA== "@sheerun/mutationobserver-shim@^0.3.2": version "0.3.3" @@ -5842,6 +5842,11 @@ date-fns@^2.28.0: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.29.1.tgz#9667c2615525e552b5135a3116b95b1961456e60" integrity sha512-dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HAw== +date-fns@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-3.6.0.tgz#f20ca4fe94f8b754951b24240676e8618c0206bf" + integrity sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww== + debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" @@ -6266,34 +6271,34 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" -esbuild@^0.20.1: - version "0.20.2" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" - integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== +esbuild@^0.21.3: + version "0.21.5" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: - "@esbuild/aix-ppc64" "0.20.2" - "@esbuild/android-arm" "0.20.2" - "@esbuild/android-arm64" "0.20.2" - "@esbuild/android-x64" "0.20.2" - "@esbuild/darwin-arm64" "0.20.2" - "@esbuild/darwin-x64" "0.20.2" - "@esbuild/freebsd-arm64" "0.20.2" - "@esbuild/freebsd-x64" "0.20.2" - "@esbuild/linux-arm" "0.20.2" - "@esbuild/linux-arm64" "0.20.2" - "@esbuild/linux-ia32" "0.20.2" - "@esbuild/linux-loong64" "0.20.2" - "@esbuild/linux-mips64el" "0.20.2" - "@esbuild/linux-ppc64" "0.20.2" - "@esbuild/linux-riscv64" "0.20.2" - "@esbuild/linux-s390x" "0.20.2" - "@esbuild/linux-x64" "0.20.2" - "@esbuild/netbsd-x64" "0.20.2" - "@esbuild/openbsd-x64" "0.20.2" - "@esbuild/sunos-x64" "0.20.2" - "@esbuild/win32-arm64" "0.20.2" - "@esbuild/win32-ia32" "0.20.2" - "@esbuild/win32-x64" "0.20.2" + "@esbuild/aix-ppc64" "0.21.5" + "@esbuild/android-arm" "0.21.5" + "@esbuild/android-arm64" "0.21.5" + "@esbuild/android-x64" "0.21.5" + "@esbuild/darwin-arm64" "0.21.5" + "@esbuild/darwin-x64" "0.21.5" + "@esbuild/freebsd-arm64" "0.21.5" + "@esbuild/freebsd-x64" "0.21.5" + "@esbuild/linux-arm" "0.21.5" + "@esbuild/linux-arm64" "0.21.5" + "@esbuild/linux-ia32" "0.21.5" + "@esbuild/linux-loong64" "0.21.5" + "@esbuild/linux-mips64el" "0.21.5" + "@esbuild/linux-ppc64" "0.21.5" + "@esbuild/linux-riscv64" "0.21.5" + "@esbuild/linux-s390x" "0.21.5" + "@esbuild/linux-x64" "0.21.5" + "@esbuild/netbsd-x64" "0.21.5" + "@esbuild/openbsd-x64" "0.21.5" + "@esbuild/sunos-x64" "0.21.5" + "@esbuild/win32-arm64" "0.21.5" + "@esbuild/win32-ia32" "0.21.5" + "@esbuild/win32-x64" "0.21.5" escalade@^3.1.1: version "3.1.1" @@ -8770,11 +8775,6 @@ mkdirp@^0.5.1: dependencies: minimist "^1.2.6" -moment@^2.29.4: - version "2.29.4" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" - integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== - moo@^0.5.0: version "0.5.1" resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4" @@ -9237,6 +9237,11 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" @@ -9274,14 +9279,14 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= -postcss@^8.4.38: - version "8.4.38" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" - integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== +postcss@^8.4.43: + version "8.4.47" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" + integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== dependencies: nanoid "^3.3.7" - picocolors "^1.0.0" - source-map-js "^1.2.0" + picocolors "^1.1.0" + source-map-js "^1.2.1" prelude-ls@~1.1.2: version "1.1.2" @@ -9943,29 +9948,29 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -rollup@^4.13.0: - version "4.17.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.17.2.tgz#26d1785d0144122277fdb20ab3a24729ae68301f" - integrity sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ== +rollup@^4.20.0: + version "4.22.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.2.tgz#d762fa52c6ddb1307c1d6e8b463ba79432ffbb6b" + integrity sha512-JWWpTrZmqQGQWt16xvNn6KVIUz16VtZwl984TKw0dfqqRpFwtLJYYk1/4BTgplndMQKWUk/yB4uOShYmMzA2Vg== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.17.2" - "@rollup/rollup-android-arm64" "4.17.2" - "@rollup/rollup-darwin-arm64" "4.17.2" - "@rollup/rollup-darwin-x64" "4.17.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.17.2" - "@rollup/rollup-linux-arm-musleabihf" "4.17.2" - "@rollup/rollup-linux-arm64-gnu" "4.17.2" - "@rollup/rollup-linux-arm64-musl" "4.17.2" - "@rollup/rollup-linux-powerpc64le-gnu" "4.17.2" - "@rollup/rollup-linux-riscv64-gnu" "4.17.2" - "@rollup/rollup-linux-s390x-gnu" "4.17.2" - "@rollup/rollup-linux-x64-gnu" "4.17.2" - "@rollup/rollup-linux-x64-musl" "4.17.2" - "@rollup/rollup-win32-arm64-msvc" "4.17.2" - "@rollup/rollup-win32-ia32-msvc" "4.17.2" - "@rollup/rollup-win32-x64-msvc" "4.17.2" + "@rollup/rollup-android-arm-eabi" "4.22.2" + "@rollup/rollup-android-arm64" "4.22.2" + "@rollup/rollup-darwin-arm64" "4.22.2" + "@rollup/rollup-darwin-x64" "4.22.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.22.2" + "@rollup/rollup-linux-arm-musleabihf" "4.22.2" + "@rollup/rollup-linux-arm64-gnu" "4.22.2" + "@rollup/rollup-linux-arm64-musl" "4.22.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.22.2" + "@rollup/rollup-linux-riscv64-gnu" "4.22.2" + "@rollup/rollup-linux-s390x-gnu" "4.22.2" + "@rollup/rollup-linux-x64-gnu" "4.22.2" + "@rollup/rollup-linux-x64-musl" "4.22.2" + "@rollup/rollup-win32-arm64-msvc" "4.22.2" + "@rollup/rollup-win32-ia32-msvc" "4.22.2" + "@rollup/rollup-win32-x64-msvc" "4.22.2" fsevents "~2.3.2" rst-selector-parser@^2.2.3: @@ -10217,10 +10222,10 @@ snapdragon@^0.8.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-js@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" - integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.3" @@ -10950,14 +10955,14 @@ vite-tsconfig-paths@^4.3.2: globrex "^0.1.2" tsconfck "^3.0.3" -vite@^5.2.11: - version "5.2.11" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.11.tgz#726ec05555431735853417c3c0bfb36003ca0cbd" - integrity sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ== +vite@^5.4.6: + version "5.4.6" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f" + integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q== dependencies: - esbuild "^0.20.1" - postcss "^8.4.38" - rollup "^4.13.0" + esbuild "^0.21.3" + postcss "^8.4.43" + rollup "^4.20.0" optionalDependencies: fsevents "~2.3.3" diff --git a/services/uploads/serverless.yml b/services/uploads/serverless.yml index 074a35739..f08d11186 100644 --- a/services/uploads/serverless.yml +++ b/services/uploads/serverless.yml @@ -46,7 +46,6 @@ custom: serverlessTerminationProtection: stages: - main - - master - val - production scripts: diff --git a/tests/cypress/cypress.config.js b/tests/cypress/cypress.config.js index 38cd69c4e..9dbeabbe6 100644 --- a/tests/cypress/cypress.config.js +++ b/tests/cypress/cypress.config.js @@ -1,8 +1,6 @@ const { defineConfig } = require("cypress"); -const preprocessor = require("@badeball/cypress-cucumber-preprocessor"); -const browserify = require("@badeball/cypress-cucumber-preprocessor/browserify"); -const { lighthouse } = require("@cypress-audit/lighthouse"); -const { pa11y, prepareAudit } = require("@cypress-audit/pa11y"); +const { lighthouse, prepareAudit } = require("@cypress-audit/lighthouse"); +const { pa11y } = require("@cypress-audit/pa11y"); require("dotenv").config({ path: "../../.env" }); module.exports = defineConfig({ @@ -29,8 +27,6 @@ module.exports = defineConfig({ supportFile: "support/index.js", excludeSpecPattern: "**/filterReports.spec.js", async setupNodeEvents(on, config) { - await preprocessor.addCucumberPreprocessorPlugin(on, config); - on("file:preprocessor", browserify.default(config)); on("before:browser:launch", (_browser = {}, launchOptions) => { prepareAudit(launchOptions); }); diff --git a/tests/cypress/package.json b/tests/cypress/package.json index b79ff30f3..e23364778 100644 --- a/tests/cypress/package.json +++ b/tests/cypress/package.json @@ -25,8 +25,5 @@ "cypress-cucumber-preprocessor": { "nonGlobalStepDefinitions": true, "stepDefinitions": "tests" - }, - "dependencies": { - "cypress-tags": "^1.1.2" } } diff --git a/tests/cypress/tests/integration/submitAndUncertify.spec.js b/tests/cypress/tests/integration/submitAndUncertify.spec.js index b21567c32..23f06347d 100644 --- a/tests/cypress/tests/integration/submitAndUncertify.spec.js +++ b/tests/cypress/tests/integration/submitAndUncertify.spec.js @@ -21,6 +21,7 @@ describe("CARTS Submit and Uncertify Integration Tests", () => { cy.get(certifySubmitButton).click(); cy.get("button").contains("Confirm Certify and Submit").click(); + cy.wait(3000); cy.get("button").contains("Return Home").click(); // log in as CMS Admin (user who can uncertify) diff --git a/tests/cypress/yarn.lock b/tests/cypress/yarn.lock index cdc47b667..f6cd7a274 100644 --- a/tests/cypress/yarn.lock +++ b/tests/cypress/yarn.lock @@ -2,15 +2,7 @@ # yarn lockfile v1 -"@ampproject/remapping@^2.2.0": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13": +"@babel/code-frame@^7.0.0": version "7.22.13" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== @@ -18,249 +10,11 @@ "@babel/highlight" "^7.22.13" chalk "^2.4.2" -"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" - integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== - -"@babel/core@^7.16.0": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.20.tgz#e3d0eed84c049e2a2ae0a64d27b6a37edec385b7" - integrity sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.22.15" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-module-transforms" "^7.22.20" - "@babel/helpers" "^7.22.15" - "@babel/parser" "^7.22.16" - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.22.20" - "@babel/types" "^7.22.19" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.3" - semver "^6.3.1" - -"@babel/generator@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.15.tgz#1564189c7ec94cb8f77b5e8a90c4d200d21b2339" - integrity sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA== - dependencies: - "@babel/types" "^7.22.15" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/generator@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" - integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== - dependencies: - "@babel/types" "^7.23.0" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" - integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== - dependencies: - "@babel/types" "^7.22.15" - -"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" - integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw== - dependencies: - "@babel/compat-data" "^7.22.9" - "@babel/helper-validator-option" "^7.22.15" - browserslist "^4.21.9" - lru-cache "^5.1.1" - semver "^6.3.1" - -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" - integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.15" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - semver "^6.3.1" - -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" - integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - regexpu-core "^5.3.1" - semver "^6.3.1" - -"@babel/helper-define-polyfill-provider@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" - integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== - dependencies: - "@babel/helper-compilation-targets" "^7.22.6" - "@babel/helper-plugin-utils" "^7.22.5" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - -"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" - integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== - -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== - dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-function-name@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" - integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/types" "^7.23.0" - -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-member-expression-to-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.15.tgz#b95a144896f6d491ca7863576f820f3628818621" - integrity sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA== - dependencies: - "@babel/types" "^7.22.15" - -"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" - integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== - dependencies: - "@babel/types" "^7.22.15" - -"@babel/helper-module-transforms@^7.22.15", "@babel/helper-module-transforms@^7.22.20", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz#da9edc14794babbe7386df438f3768067132f59e" - integrity sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/helper-validator-identifier" "^7.22.20" - -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" - integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== - -"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" - integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-wrap-function" "^7.22.20" - -"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" - integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== - dependencies: - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-member-expression-to-functions" "^7.22.15" - "@babel/helper-optimise-call-expression" "^7.22.5" - -"@babel/helper-simple-access@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" - integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.22.6": - version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" - integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.22.5": +"@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" - integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA== - -"@babel/helper-wrap-function@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" - integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== - dependencies: - "@babel/helper-function-name" "^7.22.5" - "@babel/template" "^7.22.15" - "@babel/types" "^7.22.19" - -"@babel/helpers@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.15.tgz#f09c3df31e86e3ea0b7ff7556d85cdebd47ea6f1" - integrity sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw== - dependencies: - "@babel/template" "^7.22.15" - "@babel/traverse" "^7.22.15" - "@babel/types" "^7.22.15" - "@babel/highlight@^7.22.13": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" @@ -270,785 +24,18 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.18.8", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16": +"@babel/parser@^7.18.8": version "7.22.16" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95" integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA== -"@babel/parser@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" - integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" - integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f" - integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - -"@babel/plugin-proposal-class-properties@^7.16.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-object-rest-spread@^7.16.0": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" - integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== - dependencies: - "@babel/compat-data" "^7.20.5" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.20.7" - -"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" - integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-meta@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" - integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-async-generator-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" - integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== - dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - -"@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-block-scoping@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.15.tgz#494eb82b87b5f8b1d8f6f28ea74078ec0a10a841" - integrity sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-class-static-block@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz#dc8cc6e498f55692ac6b4b89e56d87cec766c974" - integrity sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.11" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-transform-classes@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b" - integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.9" - "@babel/helper-split-export-declaration" "^7.22.6" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" - -"@babel/plugin-transform-destructuring@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.15.tgz#e7404ea5bb3387073b9754be654eecb578324694" - integrity sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dotall-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dynamic-import@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz#2c7722d2a5c01839eaf31518c6ff96d408e447aa" - integrity sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-export-namespace-from@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz#b3c84c8f19880b6c7440108f8929caf6056db26c" - integrity sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-transform-for-of@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29" - integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== - dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-json-strings@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz#689a34e1eed1928a40954e37f74509f48af67835" - integrity sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-logical-assignment-operators@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz#24c522a61688bde045b7d9bc3c2597a4d948fc9c" - integrity sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" - integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-commonjs@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.15.tgz#b11810117ed4ee7691b29bd29fd9f3f98276034f" - integrity sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg== - dependencies: - "@babel/helper-module-transforms" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - -"@babel/plugin-transform-modules-systemjs@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.11.tgz#3386be5875d316493b517207e8f1931d93154bb1" - integrity sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA== - dependencies: - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.9" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" - integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz#debef6c8ba795f5ac67cd861a81b744c5d38d9fc" - integrity sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-transform-numeric-separator@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz#498d77dc45a6c6db74bb829c02a01c1d719cbfbd" - integrity sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-transform-object-rest-spread@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" - integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== - dependencies: - "@babel/compat-data" "^7.22.9" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.15" - -"@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - -"@babel/plugin-transform-optional-catch-binding@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz#461cc4f578a127bb055527b3e77404cad38c08e0" - integrity sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-transform-optional-chaining@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.15.tgz#d7a5996c2f7ca4ad2ad16dbb74444e5c4385b1ba" - integrity sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" - integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-private-property-in-object@^7.22.11": - version "7.22.11" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz#ad45c4fc440e9cb84c718ed0906d96cf40f9a4e1" - integrity sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.11" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-display-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" - integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-react-jsx-development@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" - integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== - dependencies: - "@babel/plugin-transform-react-jsx" "^7.22.5" - -"@babel/plugin-transform-react-jsx@^7.22.15", "@babel/plugin-transform-react-jsx@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6" - integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/types" "^7.22.15" - -"@babel/plugin-transform-react-pure-annotations@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" - integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-regenerator@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca" - integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - regenerator-transform "^0.15.2" - -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-runtime@^7.16.0": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.15.tgz#3a625c4c05a39e932d7d34f5d4895cdd0172fdc9" - integrity sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g== - dependencies: - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" - semver "^6.3.1" - -"@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-escapes@^7.22.10": - version "7.22.10" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" - integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/preset-env@^7.16.0": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" - integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== - dependencies: - "@babel/compat-data" "^7.22.20" - "@babel/helper-compilation-targets" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.15" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.15" - "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" - "@babel/plugin-syntax-import-meta" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.15" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.15" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.11" - "@babel/plugin-transform-classes" "^7.22.15" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.15" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.11" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.11" - "@babel/plugin-transform-for-of" "^7.22.15" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.11" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.15" - "@babel/plugin-transform-modules-systemjs" "^7.22.11" - "@babel/plugin-transform-modules-umd" "^7.22.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.11" - "@babel/plugin-transform-numeric-separator" "^7.22.11" - "@babel/plugin-transform-object-rest-spread" "^7.22.15" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.11" - "@babel/plugin-transform-optional-chaining" "^7.22.15" - "@babel/plugin-transform-parameters" "^7.22.15" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.11" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.10" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.10" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" - "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.19" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" - core-js-compat "^3.31.0" - semver "^6.3.1" - -"@babel/preset-modules@0.1.6-no-external-plugins": - version "0.1.6-no-external-plugins" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" - integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/types" "^7.4.4" - esutils "^2.0.2" - -"@babel/preset-react@^7.16.0": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.15.tgz#9a776892b648e13cc8ca2edf5ed1264eea6b6afc" - integrity sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-transform-react-display-name" "^7.22.5" - "@babel/plugin-transform-react-jsx" "^7.22.15" - "@babel/plugin-transform-react-jsx-development" "^7.22.5" - "@babel/plugin-transform-react-pure-annotations" "^7.22.5" - -"@babel/regjsgen@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" - integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== - -"@babel/runtime@^7.16.0", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.21.0": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.15.tgz#38f46494ccf6cf020bd4eed7124b425e83e523b8" integrity sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.22.15", "@babel/template@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" - integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== - dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/parser" "^7.22.15" - "@babel/types" "^7.22.15" - -"@babel/traverse@^7.22.15", "@babel/traverse@^7.22.20": - version "7.23.2" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" - integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== - dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.23.0" - "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-function-name" "^7.23.0" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.23.0" - "@babel/types" "^7.23.0" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.4.4": - version "7.22.19" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684" - integrity sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.19" - to-fast-properties "^2.0.0" - -"@babel/types@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" - integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== - dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.20" - to-fast-properties "^2.0.0" - "@badeball/cypress-configuration@^4.0.0": version "4.2.0" resolved "https://registry.yarnpkg.com/@badeball/cypress-configuration/-/cypress-configuration-4.2.0.tgz#4c19bada0e40600b572b4d91933e0bd226cb2e3f" @@ -1147,30 +134,6 @@ dependencies: pa11y "^6.2.3" -"@cypress/browserify-preprocessor@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@cypress/browserify-preprocessor/-/browserify-preprocessor-3.0.2.tgz#1dbecae394937aed47a3524cad47086c2ded8c50" - integrity sha512-y6mlFR+IR2cqcm3HabSp7AEcX9QfF1EUL4eOaw/7xexdhmdQU8ez6piyRopZQob4BK8oKTsc9PkupsU2rzjqMA== - dependencies: - "@babel/core" "^7.16.0" - "@babel/plugin-proposal-class-properties" "^7.16.0" - "@babel/plugin-proposal-object-rest-spread" "^7.16.0" - "@babel/plugin-transform-runtime" "^7.16.0" - "@babel/preset-env" "^7.16.0" - "@babel/preset-react" "^7.16.0" - "@babel/runtime" "^7.16.0" - babel-plugin-add-module-exports "^1.0.4" - babelify "^10.0.0" - bluebird "^3.7.2" - browserify "^16.2.3" - coffeeify "^3.0.1" - coffeescript "^1.12.7" - debug "^4.3.2" - fs-extra "^9.0.0" - lodash.clonedeep "^4.5.0" - through2 "^2.0.0" - watchify "^4.0.0" - "@cypress/request@2.88.12": version "2.88.12" resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590" @@ -1318,38 +281,6 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@^3.1.0": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== - dependencies: - "@jridgewell/resolve-uri" "^3.1.0" - "@jridgewell/sourcemap-codec" "^1.4.14" - "@puppeteer/browsers@1.4.6": version "1.4.6" resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-1.4.6.tgz#1f70fd23d5d2ccce9d29b038e5039d7a1049ca77" @@ -1461,33 +392,6 @@ dependencies: "@types/node" "*" -JSONStream@^1.0.3: - version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.8.2: - version "1.8.2" - resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" - integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - dependencies: - acorn "^7.0.0" - acorn-walk "^7.0.0" - xtend "^4.0.2" - -acorn-walk@^7.0.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.0.0: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - agent-base@6: version "6.0.2" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" @@ -1541,29 +445,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -anymatch@^3.1.0, anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - arch@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" - asn1@~0.2.3: version "0.2.6" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" @@ -1576,14 +462,6 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assert@^1.4.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.1.tgz#038ab248e4ff078e7bc2485ba6e6388466c78f76" - integrity sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A== - dependencies: - object.assign "^4.1.4" - util "^0.10.4" - ast-types@^0.13.4: version "0.13.4" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" @@ -1611,11 +489,6 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - aws-sign2@~0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" @@ -1646,46 +519,12 @@ b4a@^1.6.4: resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9" integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw== -babel-plugin-add-module-exports@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz#6caa4ddbe1f578c6a5264d4d3e6c8a2720a7ca2b" - integrity sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg== - -babel-plugin-polyfill-corejs2@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" - integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== - dependencies: - "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.2" - semver "^6.3.1" - -babel-plugin-polyfill-corejs3@^0.8.3: - version "0.8.3" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52" - integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - core-js-compat "^3.31.0" - -babel-plugin-polyfill-regenerator@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" - integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== - dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - -babelify@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/babelify/-/babelify-10.0.0.tgz#fe73b1a22583f06680d8d072e25a1e0d1d1d7fb5" - integrity sha512-X40FaxyH7t3X+JFAKvb1H9wooWKLRCi8pg3m8poqtdZaIng+bjzp9RvKQCvRjF9isHiPkXspbbXT/zwXLtwgwg== - balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.0.2, base64-js@^1.3.1, base64-js@^1.5.1: +base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -1712,11 +551,6 @@ bfj@~7.0.2: hoopy "^0.1.4" tryer "^1.0.1" -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - bl@^4.0.3: version "4.1.0" resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" @@ -1736,21 +570,6 @@ bluebird@^3.5.5, bluebird@^3.7.2: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" - integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== - -boolean-parser@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/boolean-parser/-/boolean-parser-0.0.2.tgz#58721f1172e65fd132d6e6debbd00053deaffa12" - integrity sha512-e06Mqk6t7DOXaEo3s+RATvv7ZNt5brRQ2os4NUHVkVCzUD0Z7Gw4AL4AFA/gT3WaLhrobmGvRVh1/UuJiY3sKg== - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -1766,231 +585,11 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - -browser-pack@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.1.0.tgz#c34ba10d0b9ce162b5af227c7131c92c2ecd5774" - integrity sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA== - dependencies: - JSONStream "^1.0.3" - combine-source-map "~0.8.0" - defined "^1.0.0" - safe-buffer "^5.1.1" - through2 "^2.0.0" - umd "^3.0.0" - -browser-resolve@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-2.0.0.tgz#99b7304cb392f8d73dba741bb2d7da28c6d7842b" - integrity sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ== - dependencies: - resolve "^1.17.0" - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" - integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== - dependencies: - bn.js "^5.0.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" - integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== - dependencies: - bn.js "^5.2.1" - browserify-rsa "^4.1.0" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.4" - inherits "^2.0.4" - parse-asn1 "^5.1.6" - readable-stream "^3.6.2" - safe-buffer "^5.2.1" - -browserify-zlib@~0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserify@^16.2.3: - version "16.5.2" - resolved "https://registry.yarnpkg.com/browserify/-/browserify-16.5.2.tgz#d926835e9280fa5fd57f5bc301f2ef24a972ddfe" - integrity sha512-TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g== - dependencies: - JSONStream "^1.0.3" - assert "^1.4.0" - browser-pack "^6.0.1" - browser-resolve "^2.0.0" - browserify-zlib "~0.2.0" - buffer "~5.2.1" - cached-path-relative "^1.0.0" - concat-stream "^1.6.0" - console-browserify "^1.1.0" - constants-browserify "~1.0.0" - crypto-browserify "^3.0.0" - defined "^1.0.0" - deps-sort "^2.0.0" - domain-browser "^1.2.0" - duplexer2 "~0.1.2" - events "^2.0.0" - glob "^7.1.0" - has "^1.0.0" - htmlescape "^1.1.0" - https-browserify "^1.0.0" - inherits "~2.0.1" - insert-module-globals "^7.0.0" - labeled-stream-splicer "^2.0.0" - mkdirp-classic "^0.5.2" - module-deps "^6.2.3" - os-browserify "~0.3.0" - parents "^1.0.1" - path-browserify "~0.0.0" - process "~0.11.0" - punycode "^1.3.2" - querystring-es3 "~0.2.0" - read-only-stream "^2.0.0" - readable-stream "^2.0.2" - resolve "^1.1.4" - shasum "^1.0.0" - shell-quote "^1.6.1" - stream-browserify "^2.0.0" - stream-http "^3.0.0" - string_decoder "^1.1.1" - subarg "^1.0.0" - syntax-error "^1.1.1" - through2 "^2.0.0" - timers-browserify "^1.0.1" - tty-browserify "0.0.1" - url "~0.11.0" - util "~0.10.1" - vm-browserify "^1.0.0" - xtend "^4.0.0" - -browserify@^17.0.0: - version "17.0.0" - resolved "https://registry.yarnpkg.com/browserify/-/browserify-17.0.0.tgz#4c48fed6c02bfa2b51fd3b670fddb805723cdc22" - integrity sha512-SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w== - dependencies: - JSONStream "^1.0.3" - assert "^1.4.0" - browser-pack "^6.0.1" - browser-resolve "^2.0.0" - browserify-zlib "~0.2.0" - buffer "~5.2.1" - cached-path-relative "^1.0.0" - concat-stream "^1.6.0" - console-browserify "^1.1.0" - constants-browserify "~1.0.0" - crypto-browserify "^3.0.0" - defined "^1.0.0" - deps-sort "^2.0.1" - domain-browser "^1.2.0" - duplexer2 "~0.1.2" - events "^3.0.0" - glob "^7.1.0" - has "^1.0.0" - htmlescape "^1.1.0" - https-browserify "^1.0.0" - inherits "~2.0.1" - insert-module-globals "^7.2.1" - labeled-stream-splicer "^2.0.0" - mkdirp-classic "^0.5.2" - module-deps "^6.2.3" - os-browserify "~0.3.0" - parents "^1.0.1" - path-browserify "^1.0.0" - process "~0.11.0" - punycode "^1.3.2" - querystring-es3 "~0.2.0" - read-only-stream "^2.0.0" - readable-stream "^2.0.2" - resolve "^1.1.4" - shasum-object "^1.0.0" - shell-quote "^1.6.1" - stream-browserify "^3.0.0" - stream-http "^3.0.0" - string_decoder "^1.1.1" - subarg "^1.0.0" - syntax-error "^1.1.1" - through2 "^2.0.0" - timers-browserify "^1.0.1" - tty-browserify "0.0.1" - url "~0.11.0" - util "~0.12.0" - vm-browserify "^1.0.0" - xtend "^4.0.0" - -browserslist@^4.21.10, browserslist@^4.21.9: - version "4.21.10" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.10.tgz#dbbac576628c13d3b2231332cb2ec5a46e015bb0" - integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== - dependencies: - caniuse-lite "^1.0.30001517" - electron-to-chromium "^1.4.477" - node-releases "^2.0.13" - update-browserslist-db "^1.0.11" - buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== - buffer@^5.2.1, buffer@^5.5.0, buffer@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" @@ -1999,30 +598,12 @@ buffer@^5.2.1, buffer@^5.5.0, buffer@^5.6.0: base64-js "^1.3.1" ieee754 "^1.1.13" -buffer@~5.2.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" - integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== - dependencies: - base64-js "^1.0.2" - ieee754 "^1.1.4" - -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== - -cached-path-relative@^1.0.0, cached-path-relative@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.1.0.tgz#865576dfef39c0d6a7defde794d078f5308e3ef3" - integrity sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA== - cachedir@^2.3.0: version "2.4.0" resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.4.0.tgz#7fef9cf7367233d7c88068fe6e34ed0d355a610d" integrity sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ== -call-bind@^1.0.0, call-bind@^1.0.2: +call-bind@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== @@ -2035,11 +616,6 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -caniuse-lite@^1.0.30001517: - version "1.0.30001538" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz#9dbc6b9af1ff06b5eb12350c2012b3af56744f3f" - integrity sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw== - caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" @@ -2072,21 +648,6 @@ check-types@^11.1.1: resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71" integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg== -chokidar@^3.4.0: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -2114,14 +675,6 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - class-transformer@0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/class-transformer/-/class-transformer-0.5.1.tgz#24147d5dffd2a6cea930a3250a677addf96ab336" @@ -2172,19 +725,6 @@ cliui@^8.0.1: strip-ansi "^6.0.1" wrap-ansi "^7.0.0" -coffeeify@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/coffeeify/-/coffeeify-3.0.1.tgz#5e2753000c50bd24c693115f33864248dd11136c" - integrity sha512-Qjnr7UX6ldK1PHV7wCnv7AuCd4q19KTUtwJnu/6JRJB4rfm12zvcXtKdacUoePOKr1I4ka/ydKiwWpNAdsQb0g== - dependencies: - convert-source-map "^1.3.0" - through2 "^2.0.0" - -coffeescript@^1.12.7: - version "1.12.7" - resolved "https://registry.yarnpkg.com/coffeescript/-/coffeescript-1.12.7.tgz#e57ee4c4867cf7f606bfc4a0f2d550c0981ddd27" - integrity sha512-pLXHFxQMPklVoEekowk8b3erNynC+DVJzChxS/LCBBgR6/8AJkHivkm//zbowcfc7BTCAjryuhx6gPqPRfsFoA== - color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -2219,16 +759,6 @@ colors@1.0.3: resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" integrity sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== -combine-source-map@^0.8.0, combine-source-map@~0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz#a58d0df042c186fcf822a8e8015f5450d2d79a8b" - integrity sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg== - dependencies: - convert-source-map "~1.1.0" - inline-source-map "~0.6.0" - lodash.memoize "~3.0.3" - source-map "~0.5.3" - combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -2261,16 +791,6 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -concat-stream@^1.6.0, concat-stream@^1.6.1, concat-stream@~1.6.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== - dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" - concurrently@^7.6.0: version "7.6.0" resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.6.0.tgz#531a6f5f30cf616f355a4afb8f8fcb2bba65a49a" @@ -2298,48 +818,16 @@ configstore@^5.0.1: write-file-atomic "^3.0.0" xdg-basedir "^4.0.0" -console-browserify@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" - integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== - -constants-browserify@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== - -convert-source-map@^1.3.0, convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -convert-source-map@~1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz#4829c877e9fe49b3161f3bf3673888e204699860" - integrity sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg== - cookie@^0.4.1: version "0.4.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== -core-js-compat@^3.31.0: - version "3.32.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c" - integrity sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ== - dependencies: - browserslist "^4.21.10" - core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - cosmiconfig@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" @@ -2351,37 +839,6 @@ cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" -create-ecdh@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" - integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== - dependencies: - bn.js "^4.1.0" - elliptic "^6.5.3" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - cross-fetch@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-4.0.0.tgz#f037aef1580bb3a1a35164ea2a848ba81b445983" @@ -2398,23 +855,6 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -crypto-browserify@^3.0.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - crypto-random-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" @@ -2435,15 +875,6 @@ cypress-file-upload@^5.0.8: resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1" integrity sha512-+8VzNabRk3zG6x8f8BWArF/xA/W0VK4IZNx3MV0jFWrJS/qKn8eHfa5nU73P9fOQAgwHFJx7zjg4lwOnljMO8g== -cypress-tags@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/cypress-tags/-/cypress-tags-1.1.2.tgz#f0aeb29685b0906bba2eca69e7349943cbbd1eba" - integrity sha512-5aCGrhmDRQuXfRHJRFy66gBmMvBpsY1+ez5JD/cyjCYjvOVlJ7ED+kovUEdi+9pyDsbFJkQl0HjS6N3ERyb7Ig== - dependencies: - "@cypress/browserify-preprocessor" "^3.0.1" - boolean-parser "0.0.2" - through "^2.3.8" - cypress@^12.15.1: version "12.17.4" resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.17.4.tgz#b4dadf41673058493fa0d2362faa3da1f6ae2e6c" @@ -2493,11 +924,6 @@ cypress@^12.15.1: untildify "^4.0.0" yauzl "^2.10.0" -dash-ast@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dash-ast/-/dash-ast-1.0.0.tgz#12029ba5fb2f8aa6f0a861795b23c1b4b6c27d37" - integrity sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA== - dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" @@ -2543,34 +969,11 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -define-data-property@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.0.tgz#0db13540704e1d8d479a0656cf781267531b9451" - integrity sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g== - dependencies: - get-intrinsic "^1.2.1" - gopd "^1.0.1" - has-property-descriptors "^1.0.0" - define-lazy-prop@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== -define-properties@^1.1.4: - version "1.2.1" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" - integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== - dependencies: - define-data-property "^1.0.1" - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -defined@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" - integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== - degenerator@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-5.0.1.tgz#9403bf297c6dad9a1ece409b37db27954f91f2f5" @@ -2585,33 +988,6 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -deps-sort@^2.0.0, deps-sort@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.1.tgz#9dfdc876d2bcec3386b6829ac52162cda9fa208d" - integrity sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw== - dependencies: - JSONStream "^1.0.3" - shasum-object "^1.0.0" - subarg "^1.0.0" - through2 "^2.0.0" - -des.js@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" - integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -detective@^5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" - integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== - dependencies: - acorn-node "^1.8.2" - defined "^1.0.0" - minimist "^1.2.6" - devtools-protocol@0.0.1147663: version "0.0.1147663" resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz#4ec5610b39a6250d1f87e6b9c7e16688ed0ac78e" @@ -2627,20 +1003,6 @@ devtools-protocol@0.0.869402: resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.869402.tgz#03ade701761742e43ae4de5dc188bcd80f156d8d" integrity sha512-VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA== -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== - dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -domain-browser@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" - integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== - dot-prop@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" @@ -2653,13 +1015,6 @@ dotenv@^16.4.5: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== -duplexer2@^0.1.2, duplexer2@~0.1.0, duplexer2@~0.1.2: - version "0.1.4" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== - dependencies: - readable-stream "^2.0.2" - ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -2668,24 +1023,6 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -electron-to-chromium@^1.4.477: - version "1.4.526" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.526.tgz#1bcda5f2b8238e497c20fcdb41af5da907a770e2" - integrity sha512-tjjTMjmZAx1g6COrintLTa2/jcafYKxKoiEkdQOrVdbLaHh2wCt2nsAF8ZHweezkrP+dl/VG9T5nabcYoo0U5Q== - -elliptic@^6.5.3, elliptic@^6.5.4: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -2926,24 +1263,6 @@ eventemitter2@6.4.7: resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== -events@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/events/-/events-2.1.0.tgz#2a9a1e18e6106e0e812aa9ebd4a819b3c29c0ba5" - integrity sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg== - -events@^3.0.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" @@ -2997,11 +1316,6 @@ fast-fifo@^1.1.0, fast-fifo@^1.2.0: resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== -fast-safe-stringify@^2.0.7: - version "2.1.1" - resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" - integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -3016,27 +1330,13 @@ figures@^3.2.0: dependencies: escape-string-regexp "^1.0.5" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - find-up@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" - path-exists "^4.0.0" - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" + path-exists "^4.0.0" forever-agent@~0.6.1: version "0.6.1" @@ -3066,7 +1366,7 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.1.0: +fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -3081,32 +1381,17 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@~2.3.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-assigned-identifiers@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz#6dbf411de648cbaf8d9169ebb0d2d576191e2ff1" - integrity sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ== - get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1: +get-intrinsic@^1.0.2: version "1.2.1" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== @@ -3147,14 +1432,7 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob@^7.1.0, glob@^7.1.3, glob@^7.1.6: +glob@^7.1.3, glob@^7.1.6: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -3183,18 +1461,6 @@ global-dirs@^3.0.0: dependencies: ini "2.0.0" -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -3210,63 +1476,23 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== -has-symbols@^1.0.2, has-symbols@^1.0.3: +has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has@^1.0.0, has@^1.0.3: +has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== - dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - hoopy@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" @@ -3277,11 +1503,6 @@ html_codesniffer@~2.5.1: resolved "https://registry.yarnpkg.com/html_codesniffer/-/html_codesniffer-2.5.1.tgz#d76d124b8f5cd0e58b3c1b142fd095a40573ea28" integrity sha512-vcz0yAaX/OaV6sdNHuT9alBOKkSxYb8h5Yq26dUqgi7XmCgGUSa7U9PiY1PBXQFMjKv1wVPs5/QzHlGuxPDUGg== -htmlescape@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz#3a03edc2214bca3b66424a3e7959349509cb0351" - integrity sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg== - http-link-header@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/http-link-header/-/http-link-header-1.1.1.tgz#f0e6971b0ed86e858d2077066ecb7ba4f2e50de9" @@ -3304,11 +1525,6 @@ http-signature@~1.3.6: jsprim "^2.0.2" sshpk "^1.14.1" -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== - https-proxy-agent@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" @@ -3330,7 +1546,7 @@ human-signals@^1.1.1: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== -ieee754@^1.1.13, ieee754@^1.1.4: +ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== @@ -3366,44 +1582,16 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - ini@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== -inline-source-map@~0.6.0: - version "0.6.2" - resolved "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz#f9393471c18a79d1724f863fa38b586370ade2a5" - integrity sha512-0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA== - dependencies: - source-map "~0.5.3" - -insert-module-globals@^7.0.0, insert-module-globals@^7.2.1: - version "7.2.1" - resolved "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.2.1.tgz#d5e33185181a4e1f33b15f7bf100ee91890d5cb3" - integrity sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg== - dependencies: - JSONStream "^1.0.3" - acorn-node "^1.5.2" - combine-source-map "^0.8.0" - concat-stream "^1.6.1" - is-buffer "^1.1.0" - path-is-absolute "^1.0.1" - process "~0.11.0" - through2 "^2.0.0" - undeclared-identifiers "^1.1.2" - xtend "^4.0.0" - intl-messageformat-parser@^1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz#0eb14c5618333be4c95c409457b66c8c33ddcc01" @@ -3426,36 +1614,11 @@ ip@^2.0.0: resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105" integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ== -is-arguments@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-buffer@^1.1.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.3: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - is-ci@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" @@ -3463,42 +1626,16 @@ is-ci@^3.0.0: dependencies: ci-info "^3.2.0" -is-core-module@^2.13.0: - version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" - integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== - dependencies: - has "^1.0.3" - is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-function@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - is-installed-globally@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" @@ -3507,11 +1644,6 @@ is-installed-globally@~0.4.0: global-dirs "^3.0.0" is-path-inside "^3.0.2" -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - is-obj@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" @@ -3527,13 +1659,6 @@ is-stream@^2.0.0: resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-typed-array@^1.1.3: - version "1.1.12" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" - integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== - dependencies: - which-typed-array "^1.1.11" - is-typedarray@^1.0.0, is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" @@ -3556,11 +1681,6 @@ is@^3.2.1: resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -3591,16 +1711,6 @@ jsbn@~0.1.0: resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - json-parse-even-better-errors@^2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" @@ -3611,23 +1721,11 @@ json-schema@0.4.0: resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== -json-stable-stringify@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz#611c23e814db375527df851193db59dd2af27f45" - integrity sha512-nKtD/Qxm7tWdZqJoldEC7fF0S41v0mWbeaXG3637stOWfyGxTgWTYE2wtfKmjzpvxv2MA2xzxsXOIiwUpkX6Qw== - dependencies: - jsonify "~0.0.0" - json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -3644,16 +1742,6 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -jsonify@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" - integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== - -jsonparse@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - jsprim@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d" @@ -3669,14 +1757,6 @@ kleur@~4.1.4: resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== -labeled-stream-splicer@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz#42a41a16abcd46fd046306cf4f2c3576fffb1c21" - integrity sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw== - dependencies: - inherits "^2.0.1" - stream-splicer "^2.0.0" - lazy-ass@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" @@ -3754,21 +1834,6 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" -lodash.clonedeep@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" - integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ== - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.memoize@~3.0.3: - version "3.0.4" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" - integrity sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A== - lodash.once@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" @@ -3802,13 +1867,6 @@ lookup-closest-locale@6.2.0: resolved "https://registry.yarnpkg.com/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz#57f665e604fd26f77142d48152015402b607bcf3" integrity sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ== -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -3843,15 +1901,6 @@ marky@^1.2.2: resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -3862,14 +1911,6 @@ metaviewport-parser@0.3.0: resolved "https://registry.yarnpkg.com/metaviewport-parser/-/metaviewport-parser-0.3.0.tgz#6af1e99b5eaf250c049e0af1e84143a39750dea6" integrity sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ== -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" @@ -3887,16 +1928,6 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== - minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -3911,7 +1942,7 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" -minimist@^1.1.0, minimist@^1.2.6, minimist@^1.2.8: +minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -3941,27 +1972,6 @@ module-alias@^2.2.2: resolved "https://registry.yarnpkg.com/module-alias/-/module-alias-2.2.3.tgz#ec2e85c68973bda6ab71ce7c93b763ec96053221" integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q== -module-deps@^6.2.3: - version "6.2.3" - resolved "https://registry.yarnpkg.com/module-deps/-/module-deps-6.2.3.tgz#15490bc02af4b56cf62299c7c17cba32d71a96ee" - integrity sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA== - dependencies: - JSONStream "^1.0.3" - browser-resolve "^2.0.0" - cached-path-relative "^1.0.2" - concat-stream "~1.6.0" - defined "^1.0.0" - detective "^5.2.0" - duplexer2 "^0.1.2" - inherits "^2.0.1" - parents "^1.0.0" - readable-stream "^2.0.2" - resolve "^1.4.0" - stream-combiner2 "^1.1.1" - subarg "^1.0.0" - through2 "^2.0.0" - xtend "^4.0.0" - ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -3999,11 +2009,6 @@ node-hook@^1.0.0: resolved "https://registry.yarnpkg.com/node-hook/-/node-hook-1.0.0.tgz#82ca39af991d726d5c7952e59c992378bb296f7e" integrity sha512-tBTIHwkzXvbesP0fY495VsqSWCOS5Ttt5+mAmeqUC1yglCiSYarNewfi2Q+HOL+M6pZYYqwGU6jIi5+gIHQbpg== -node-releases@^2.0.13: - version "2.0.13" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== - node.extend@~2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-2.0.2.tgz#b4404525494acc99740f3703c496b7d5182cc6cc" @@ -4012,11 +2017,6 @@ node.extend@~2.0.2: has "^1.0.3" is "^3.2.1" -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - npm-run-path@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" @@ -4029,21 +2029,6 @@ object-inspect@^1.9.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -4067,23 +2052,11 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" -os-browserify@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== - ospath@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== -outpipe@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/outpipe/-/outpipe-1.1.1.tgz#50cf8616365e87e031e29a5ec9339a3da4725fa2" - integrity sha512-BnNY/RwnDrkmQdUa9U+OfN/Y7AWmKuUPCCd+hbRclZnnANvYpO72zp/a6Q4n829hPbdqEac31XCcsvlEvb+rtA== - dependencies: - shell-quote "^1.4.2" - p-limit@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" @@ -4155,11 +2128,6 @@ pac-resolver@^7.0.0: ip "^1.1.8" netmask "^2.0.2" -pako@~1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -4167,24 +2135,6 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parents@^1.0.0, parents@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz#fedd4d2bf193a77745fe71e371d73c3307d9c751" - integrity sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg== - dependencies: - path-platform "~0.11.15" - -parse-asn1@^5.0.0, parse-asn1@^5.1.6: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== - dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - parse-cache-control@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz#8eeab3e54fa56920fe16ba38f77fa21aacc2d74e" @@ -4200,22 +2150,12 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -path-browserify@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - -path-browserify@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" - integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== - path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== -path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: +path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== @@ -4225,16 +2165,6 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-platform@~0.11.15: - version "0.11.15" - resolved "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz#e864217f74c36850f0852b78dc7bf7d4a5721bf2" - integrity sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg== - path-scurry@^1.6.1: version "1.10.1" resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" @@ -4248,17 +2178,6 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pbkdf2@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -4269,16 +2188,6 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - pify@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -4296,12 +2205,7 @@ pretty-bytes@^5.6.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10, process@~0.11.0: +process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== @@ -4345,18 +2249,6 @@ psl@^1.1.33: resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" @@ -4365,11 +2257,6 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^1.3.2, punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== - punycode@^2.1.1: version "2.3.0" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" @@ -4405,13 +2292,6 @@ puppeteer@~9.1.1: unbzip2-stream "^1.3.3" ws "^7.2.3" -qs@^6.11.2: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - qs@~6.10.3: version "6.10.5" resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" @@ -4419,11 +2299,6 @@ qs@~6.10.3: dependencies: side-channel "^1.0.4" -querystring-es3@~0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== - querystringify@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" @@ -4434,29 +2309,7 @@ queue-tick@^1.0.1: resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== - dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" - -read-only-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz#2724fd6a8113d73764ac288d4386270c1dbf17f0" - integrity sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w== - dependencies: - readable-stream "^2.0.2" - -readable-stream@3, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0, readable-stream@^3.6.2: +readable-stream@^3.1.1, readable-stream@^3.4.0: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -4465,55 +2318,16 @@ readable-stream@3, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stre string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - reflect-metadata@0.1.13: version "0.1.13" resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== -regenerate-unicode-properties@^10.1.0: - version "10.1.1" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" - integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== - dependencies: - regenerate "^1.4.2" - -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== - regenerator-runtime@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== -regenerator-transform@^0.15.2: - version "0.15.2" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" - integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== - dependencies: - "@babel/runtime" "^7.8.4" - regexp-match-indices@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regexp-match-indices/-/regexp-match-indices-1.0.2.tgz#cf20054a6f7d5b3e116a701a7b00f82889d10da6" @@ -4526,25 +2340,6 @@ regexp-tree@^0.1.11: resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd" integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== -regexpu-core@^5.3.1: - version "5.3.2" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" - integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== - dependencies: - "@babel/regjsgen" "^0.8.0" - regenerate "^1.4.2" - regenerate-unicode-properties "^10.1.0" - regjsparser "^0.9.1" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.1.0" - -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - request-progress@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" @@ -4579,15 +2374,6 @@ resolve-pkg@^2.0.0: dependencies: resolve-from "^5.0.0" -resolve@^1.1.4, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.4.0: - version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" - integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== - dependencies: - is-core-module "^2.13.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -4608,14 +2394,6 @@ rimraf@^3.0.0, rimraf@^3.0.2: dependencies: glob "^7.1.3" -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - robots-parser@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/robots-parser/-/robots-parser-3.0.1.tgz#3d8a3cdfa8ac240cbb062a4bd16fcc0e0fb9ed23" @@ -4628,16 +2406,11 @@ rxjs@^7.0.0, rxjs@^7.5.1: dependencies: tslib "^2.1.0" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: +safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -4648,7 +2421,7 @@ semver@^5.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^6.0.0, semver@^6.3.1: +semver@^6.0.0: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== @@ -4667,29 +2440,6 @@ semver@~7.3.5: dependencies: lru-cache "^6.0.0" -sha.js@^2.4.0, sha.js@^2.4.8, sha.js@~2.4.4: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -shasum-object@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shasum-object/-/shasum-object-1.0.0.tgz#0b7b74ff5b66ecf9035475522fa05090ac47e29e" - integrity sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg== - dependencies: - fast-safe-stringify "^2.0.7" - -shasum@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz#e7012310d8f417f4deb5712150e5678b87ae565f" - integrity sha512-UTzHm/+AzKfO9RgPgRpDIuMSNie1ubXRaljjlhFMNGYoG7z+rm9AHLPMf70R7887xboDH9Q+5YQbWKObFHEAtw== - dependencies: - json-stable-stringify "~0.0.0" - sha.js "~2.4.4" - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -4702,7 +2452,7 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shell-quote@^1.4.2, shell-quote@^1.6.1, shell-quote@^1.7.3: +shell-quote@^1.7.3: version "1.8.1" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== @@ -4721,11 +2471,6 @@ signal-exit@^3.0.2: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -4771,11 +2516,6 @@ source-map@^0.7.4: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== -source-map@~0.5.3: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" @@ -4815,48 +2555,6 @@ stackframe@^1.3.4: resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== -stream-browserify@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" - integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== - dependencies: - inherits "~2.0.1" - readable-stream "^2.0.2" - -stream-browserify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" - integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== - dependencies: - inherits "~2.0.4" - readable-stream "^3.5.0" - -stream-combiner2@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" - integrity sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw== - dependencies: - duplexer2 "~0.1.0" - readable-stream "^2.0.2" - -stream-http@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5" - integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.4" - readable-stream "^3.6.0" - xtend "^4.0.2" - -stream-splicer@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.1.tgz#0b13b7ee2b5ac7e0609a7463d83899589a363fcd" - integrity sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg== - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.2" - streamx@^2.15.0: version "2.15.1" resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.15.1.tgz#396ad286d8bc3eeef8f5cea3f029e81237c024c6" @@ -4881,13 +2579,6 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -4900,13 +2591,6 @@ strip-final-newline@^2.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -subarg@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" - integrity sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg== - dependencies: - minimist "^1.1.0" - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -4928,18 +2612,6 @@ supports-color@^8.1.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -syntax-error@^1.1.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz#2d9d4ff5c064acb711594a3e3b95054ad51d907c" - integrity sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w== - dependencies: - acorn-node "^1.2.0" - tar-fs@3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.4.tgz#a21dc60a2d5d9f55e0089ccd78124f1d3771dbbf" @@ -4989,33 +2661,11 @@ throttleit@^1.0.0: resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== -through2@^2.0.0: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through2@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -"through@>=2.2.7 <3", through@^2.3.8: +through@^2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== -timers-browserify@^1.0.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" - integrity sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q== - dependencies: - process "~0.11.0" - tmp@~0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -5023,18 +2673,6 @@ tmp@~0.2.1: dependencies: rimraf "^3.0.0" -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - tough-cookie@^4.1.3: version "4.1.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" @@ -5070,11 +2708,6 @@ tslib@^2.0.1, tslib@^2.1.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -tty-browserify@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811" - integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw== - tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -5099,16 +2732,6 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== - -umd@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/umd/-/umd-3.0.3.tgz#aa9fe653c42b9097678489c01000acb69f0b26cf" - integrity sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow== - unbzip2-stream@1.4.3, unbzip2-stream@^1.3.3: version "1.4.3" resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" @@ -5117,40 +2740,6 @@ unbzip2-stream@1.4.3, unbzip2-stream@^1.3.3: buffer "^5.2.1" through "^2.3.8" -undeclared-identifiers@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz#9254c1d37bdac0ac2b52de4b6722792d2a91e30f" - integrity sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw== - dependencies: - acorn-node "^1.3.0" - dash-ast "^1.0.0" - get-assigned-identifiers "^1.2.0" - simple-concat "^1.0.0" - xtend "^4.0.1" - -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== - -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== - dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" - -unicode-match-property-value-ecmascript@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" - integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== - -unicode-property-aliases-ecmascript@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" - integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== - unique-string@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" @@ -5178,14 +2767,6 @@ untildify@^4.0.0: resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== -update-browserslist-db@^1.0.11: - version "1.0.13" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" - integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - url-parse@^1.5.3: version "1.5.10" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" @@ -5194,37 +2775,11 @@ url-parse@^1.5.3: querystringify "^2.1.1" requires-port "^1.0.0" -url@~0.11.0: - version "0.11.3" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad" - integrity sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw== - dependencies: - punycode "^1.4.1" - qs "^6.11.2" - -util-deprecate@^1.0.1, util-deprecate@~1.0.1: +util-deprecate@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util@^0.10.4, util@~0.10.1: - version "0.10.4" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" - integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== - dependencies: - inherits "2.0.3" - -util@~0.12.0: - version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" - integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== - dependencies: - inherits "^2.0.3" - is-arguments "^1.0.4" - is-generator-function "^1.0.7" - is-typed-array "^1.1.3" - which-typed-array "^1.1.2" - uuid@9.0.0: version "9.0.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5" @@ -5244,24 +2799,6 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vm-browserify@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" - integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== - -watchify@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/watchify/-/watchify-4.0.0.tgz#53b002d51e7b0eb640b851bb4de517a689973392" - integrity sha512-2Z04dxwoOeNxa11qzWumBTgSAohTC0+ScuY7XMenPnH+W2lhTcpEOJP4g2EIG/SWeLadPk47x++Yh+8BqPM/lA== - dependencies: - anymatch "^3.1.0" - browserify "^17.0.0" - chokidar "^3.4.0" - defined "^1.0.0" - outpipe "^1.1.0" - through2 "^4.0.2" - xtend "^4.0.2" - webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -5275,17 +2812,6 @@ whatwg-url@^5.0.0: tr46 "~0.0.3" webidl-conversions "^3.0.0" -which-typed-array@^1.1.11, which-typed-array@^1.1.2: - version "1.1.11" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" - integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -5341,21 +2867,11 @@ xdg-basedir@^4.0.0: resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== -xtend@^4.0.0, xtend@^4.0.1, xtend@^4.0.2, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - yallist@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" diff --git a/yarn.lock b/yarn.lock index db382a571..d1296e2f0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -47,6 +47,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/crc32@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1" + integrity sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/crc32c@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-3.0.0.tgz#016c92da559ef638a84a245eecb75c3e97cb664f" @@ -56,6 +65,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/crc32c@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/crc32c/-/crc32c-5.2.0.tgz#4e34aab7f419307821509a98b9b08e84e0c1917e" + integrity sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/ie11-detection@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz#640ae66b4ec3395cee6a8e94ebcd9f80c24cd688" @@ -76,6 +94,18 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/sha1-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha1-browser/-/sha1-browser-5.2.0.tgz#b0ee2d2821d3861f017e965ef3b4cb38e3b6a0f4" + integrity sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg== + dependencies: + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-crypto/sha256-browser@3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz#05f160138ab893f1c6ba5be57cfd108f05827766" @@ -90,6 +120,19 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/sha256-browser@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz#153895ef1dba6f9fce38af550e0ef58988eb649e" + integrity sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw== + dependencies: + "@aws-crypto/sha256-js" "^5.2.0" + "@aws-crypto/supports-web-crypto" "^5.2.0" + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + "@aws-sdk/util-locate-window" "^3.0.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + "@aws-crypto/sha256-js@3.0.0", "@aws-crypto/sha256-js@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz#f06b84d550d25521e60d2a0e2a90139341e007c2" @@ -99,6 +142,15 @@ "@aws-sdk/types" "^3.222.0" tslib "^1.11.1" +"@aws-crypto/sha256-js@5.2.0", "@aws-crypto/sha256-js@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz#c4fdb773fdbed9a664fc1a95724e206cf3860042" + integrity sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA== + dependencies: + "@aws-crypto/util" "^5.2.0" + "@aws-sdk/types" "^3.222.0" + tslib "^2.6.2" + "@aws-crypto/supports-web-crypto@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz#5d1bf825afa8072af2717c3e455f35cda0103ec2" @@ -106,6 +158,13 @@ dependencies: tslib "^1.11.1" +"@aws-crypto/supports-web-crypto@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz#a1e399af29269be08e695109aa15da0a07b5b5fb" + integrity sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg== + dependencies: + tslib "^2.6.2" + "@aws-crypto/util@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-3.0.0.tgz#1c7ca90c29293f0883468ad48117937f0fe5bfb0" @@ -115,6 +174,64 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" +"@aws-crypto/util@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@aws-crypto/util/-/util-5.2.0.tgz#71284c9cffe7927ddadac793c14f14886d3876da" + integrity sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ== + dependencies: + "@aws-sdk/types" "^3.222.0" + "@smithy/util-utf8" "^2.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-api-gateway@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-api-gateway/-/client-api-gateway-3.624.0.tgz#3d65ddb227b4c8b1a432ed297f1a1be2186ef969" + integrity sha512-9DeJihU48KVVYlymg9/pfgiLNQ4Kiss5Ei2Ph9SUxZwGBw7uKZwHnE8dfBoGGq1KwDo+hEtQSd+/i/K6p/GwYQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-sdk-api-gateway" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/client-cloudformation@^3.128.0": version "3.576.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudformation/-/client-cloudformation-3.576.0.tgz#aac4b796d5998d722cded31a755731b4aec636a4" @@ -261,6 +378,149 @@ tslib "^2.6.2" uuid "^9.0.1" +"@aws-sdk/client-cognito-identity-provider@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.624.0.tgz#2113f44296454ec1f10f3fcea6fe43a596a7828d" + integrity sha512-AKzSCARzVUqclaXxxRE7UXZAhF+HoJGbAdYvQxj9LJdejuBRCo49LUqmiCTr7pUEPDK/RkDtv3+JLhxqN4z8YA== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-eventbridge@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-eventbridge/-/client-eventbridge-3.624.0.tgz#aadd03846b7881e49da6b7c105c8f002669948e8" + integrity sha512-02HxeImNQv+yA+36Y+gn5ZM2v3JhG9gbbtXokv1YoByh9Ot9WG5Xm5Fsj9i6Dno34LneA2HCQqdMws67woXxVg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/signature-v4-multi-region" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + +"@aws-sdk/client-iam@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.624.0.tgz#89c57b70a15c44a007483088d7f6f20844800cb8" + integrity sha512-a3Qy7AIht2nHiZPJ/HiMdyiOLiDN+iKp1R916SEbgFi9MiOyRHFeLCCPQHMf1O8YXfb0hbHr5IFnfZLfUcJaWQ== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" + tslib "^2.6.2" + "@aws-sdk/client-lambda@^3.509.0": version "3.569.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.569.0.tgz#b95b6c5186c87ce53b3de2607faebdad1031eddc" @@ -313,6 +573,58 @@ "@smithy/util-waiter" "^2.2.0" tslib "^2.6.2" +"@aws-sdk/client-lambda@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.624.0.tgz#9d674bc061ba9ca5057426ae6940f5fbb1f73c6b" + integrity sha512-bfhFeg6LoC6AFM68+Gyogq9UpyW83Jwkwobo9CtxSTfaNIOYdKgTOdYtn4pM/bRYrWon4CstJQymIsPbY7ra5Q== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/eventstream-serde-browser" "^3.0.5" + "@smithy/eventstream-serde-config-resolver" "^3.0.3" + "@smithy/eventstream-serde-node" "^3.0.4" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" + tslib "^2.6.2" + "@aws-sdk/client-s3@^3.128.0": version "3.576.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.576.0.tgz#0e2f8f8fdbf1548ed2bd7d782f8fdf2e90131de1" @@ -441,6 +753,70 @@ "@smithy/util-waiter" "^2.2.0" tslib "^2.6.2" +"@aws-sdk/client-s3@^3.588.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.624.0.tgz#4114c3cb4bf820e0aa480d3783c3cd2ae2575737" + integrity sha512-A18tgTKC4ZTAwV8i3pkyAL1XDLgH7WGS5hZA/0FOntI5l+icztGZFF8CdeYWEAFnZA7SfHK6vmtEbIQDOzTTAA== + dependencies: + "@aws-crypto/sha1-browser" "5.2.0" + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/client-sts" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-bucket-endpoint" "3.620.0" + "@aws-sdk/middleware-expect-continue" "3.620.0" + "@aws-sdk/middleware-flexible-checksums" "3.620.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-location-constraint" "3.609.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-sdk-s3" "3.624.0" + "@aws-sdk/middleware-ssec" "3.609.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/signature-v4-multi-region" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@aws-sdk/xml-builder" "3.609.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/eventstream-serde-browser" "^3.0.5" + "@smithy/eventstream-serde-config-resolver" "^3.0.3" + "@smithy/eventstream-serde-node" "^3.0.4" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-blob-browser" "^3.1.2" + "@smithy/hash-node" "^3.0.3" + "@smithy/hash-stream-node" "^3.1.2" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/md5-js" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + "@smithy/util-waiter" "^3.1.2" + tslib "^2.6.2" + "@aws-sdk/client-sso-oidc@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.554.0.tgz#c4002879c89cf5e4a45f39c63b2963f8fab88385" @@ -624,6 +1000,51 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/client-sso-oidc@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.624.0.tgz#33d0927519de333387ee07cb7f6483b0bd4db2f2" + integrity sha512-Ki2uKYJKKtfHxxZsiMTOvJoVRP6b2pZ1u3rcUb2m/nVgBPUfLdl8ZkGpqE29I+t5/QaS/sEdbn6cgMUZwl+3Dg== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/client-sso@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.554.0.tgz#fef7b7ee47cad3987b50e9218ec1d11dcd42e32b" @@ -800,6 +1221,50 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/client-sso@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.624.0.tgz#5d6bd308c1a6bb876c0bffc369c31a4916271219" + integrity sha512-EX6EF+rJzMPC5dcdsu40xSi2To7GSvdGQNIpe97pD9WvZwM9tRNQnNM4T6HA4gjV1L6Jwk8rBlG/CnveXtLEMw== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/client-sts@3.554.0", "@aws-sdk/client-sts@^3.410.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.554.0.tgz#511f1bafe628613f1824274f9c11a9df31ac0b09" @@ -982,6 +1447,52 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/client-sts@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.624.0.tgz#ee19e08835a04d173f4997285e26558ac431d938" + integrity sha512-k36fLZCb2nfoV/DKK3jbRgO/Yf7/R80pgYfMiotkGjnZwDmRvNN08z4l06L9C+CieazzkgRxNUzyppsYcYsQaw== + dependencies: + "@aws-crypto/sha256-browser" "5.2.0" + "@aws-crypto/sha256-js" "5.2.0" + "@aws-sdk/client-sso-oidc" "3.624.0" + "@aws-sdk/core" "3.624.0" + "@aws-sdk/credential-provider-node" "3.624.0" + "@aws-sdk/middleware-host-header" "3.620.0" + "@aws-sdk/middleware-logger" "3.609.0" + "@aws-sdk/middleware-recursion-detection" "3.620.0" + "@aws-sdk/middleware-user-agent" "3.620.0" + "@aws-sdk/region-config-resolver" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@aws-sdk/util-user-agent-browser" "3.609.0" + "@aws-sdk/util-user-agent-node" "3.614.0" + "@smithy/config-resolver" "^3.0.5" + "@smithy/core" "^2.3.2" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/hash-node" "^3.0.3" + "@smithy/invalid-dependency" "^3.0.3" + "@smithy/middleware-content-length" "^3.0.5" + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-body-length-node" "^3.0.0" + "@smithy/util-defaults-mode-browser" "^3.0.14" + "@smithy/util-defaults-mode-node" "^3.0.14" + "@smithy/util-endpoints" "^2.0.5" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/core@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.554.0.tgz#84def70777ace823efb54451da403bfc125a8571" @@ -1034,6 +1545,21 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" +"@aws-sdk/core@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.624.0.tgz#ff0d7745bd662f53d99dbb7293416a45ddde5aa6" + integrity sha512-WyFmPbhRIvtWi7hBp8uSFy+iPpj8ccNV/eX86hwF4irMjfc/FtsGVIAeBXxXM/vGCjkdfEzOnl+tJ2XACD4OXg== + dependencies: + "@smithy/core" "^2.3.2" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + fast-xml-parser "4.4.1" + tslib "^2.6.2" + "@aws-sdk/credential-provider-env@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.535.0.tgz#26248e263a8107953d5496cb3760d4e7c877abcf" @@ -1064,6 +1590,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-env@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" + integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-http@3.552.0": version "3.552.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.552.0.tgz#ecc88d02cba95621887e6b85b2583e756ad29eb6" @@ -1109,6 +1645,21 @@ "@smithy/util-stream" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-http@3.622.0": + version "3.622.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.622.0.tgz#db481fdef859849d07dd5870894f45df2debab3d" + integrity sha512-VUHbr24Oll1RK3WR8XLUugLpgK9ZuxEm/NVeVqyFts1Ck9gsKpRg1x4eH7L7tW3SJ4TDEQNMbD7/7J+eoL2svg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" + tslib "^2.6.2" + "@aws-sdk/credential-provider-imds@^3.81.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.374.0.tgz#19f1d6625b2b91114f3d5c2a479b86a4114620a6" @@ -1182,6 +1733,23 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-ini@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.624.0.tgz#af4b485e9ceeca97e1681b2402c50dc192c1dc06" + integrity sha512-mMoNIy7MO2WTBbdqMyLpbt6SZpthE6e0GkRYpsd0yozPt0RZopcBhEh+HG1U9Y1PVODo+jcMk353vAi61CfnhQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.622.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.624.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-node@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.554.0.tgz#74e8ae0b69cfba716e57881ace9d6466deedfb5e" @@ -1254,6 +1822,24 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-node@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.624.0.tgz#d7ebe191194eb09764b313c1f4e259cb42795079" + integrity sha512-vYyGK7oNpd81BdbH5IlmQ6zfaQqU+rPwsKTDDBeLRjshtrGXOEpfoahVpG9PX0ibu32IOWp4ZyXBNyVrnvcMOw== + dependencies: + "@aws-sdk/credential-provider-env" "3.620.1" + "@aws-sdk/credential-provider-http" "3.622.0" + "@aws-sdk/credential-provider-ini" "3.624.0" + "@aws-sdk/credential-provider-process" "3.620.1" + "@aws-sdk/credential-provider-sso" "3.624.0" + "@aws-sdk/credential-provider-web-identity" "3.621.0" + "@aws-sdk/types" "3.609.0" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-process@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.535.0.tgz#ea1e8a38a32e36bbdc3f75eb03352e6eafa0c659" @@ -1298,6 +1884,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-process@3.620.1": + version "3.620.1" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" + integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-sso@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.554.0.tgz#83e950685aaadb18d48d51c39f6201d820a5de41" @@ -1350,6 +1947,19 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-sso@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.624.0.tgz#4a617577d04b23f80e86e1f76cc15dc3e9895c21" + integrity sha512-A02bayIjU9APEPKr3HudrFHEx0WfghoSPsPopckDkW7VBqO4wizzcxr75Q9A3vNX+cwg0wCN6UitTNe6pVlRaQ== + dependencies: + "@aws-sdk/client-sso" "3.624.0" + "@aws-sdk/token-providers" "3.614.0" + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/credential-provider-web-identity@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.554.0.tgz#6076a32066b633a18fc90cae7ed0b874db78a556" @@ -1381,6 +1991,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/credential-provider-web-identity@3.621.0": + version "3.621.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" + integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-bucket-endpoint@3.568.0": version "3.568.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.568.0.tgz#790c0943cc097d3a83665131bc9e0743598cc6ca" @@ -1407,6 +2027,19 @@ "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-bucket-endpoint@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" + integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-arn-parser" "3.568.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/middleware-expect-continue@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.572.0.tgz#91df3b88a0a109450db84577609ed19520dfff38" @@ -1427,6 +2060,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-expect-continue@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" + integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-flexible-checksums@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.572.0.tgz#639ee54f838a5382a69f07351cd783488b6ad89b" @@ -1455,6 +2098,20 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-flexible-checksums@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" + integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== + dependencies: + "@aws-crypto/crc32" "5.2.0" + "@aws-crypto/crc32c" "5.2.0" + "@aws-sdk/types" "3.609.0" + "@smithy/is-array-buffer" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/middleware-host-header@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.535.0.tgz#d5264f813592f5e77df25e5a14bbb0e6441812db" @@ -1485,6 +2142,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-host-header@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" + integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-location-constraint@3.567.0": version "3.567.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.567.0.tgz#c469e745a3fa146dd29d0024a9f4d2a498985822" @@ -1503,6 +2170,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-location-constraint@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" + integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-logger@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.535.0.tgz#1a8ffd6c368edd6cb32e1edf7b1dced95c1820ee" @@ -1530,6 +2206,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-logger@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" + integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-recursion-detection@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.535.0.tgz#6aa1e1bd1e84730d58a73021b745e20d4341a92d" @@ -1560,6 +2245,26 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-recursion-detection@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" + integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-sdk-api-gateway@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-api-gateway/-/middleware-sdk-api-gateway-3.620.0.tgz#479e839455bcfa22952a1080d5598061a1f1f0e3" + integrity sha512-JH8JzZb5CTry5Xit51jwyES8cqihaUWJVS3pcr5L73g8qLDUnvfg2IJJJ7pXs0hVAaCNjDs4L97DW3ity76CUA== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-sdk-s3@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.572.0.tgz#62534ecbfc55d91fcb768b97bb14f73577c3b00e" @@ -1590,6 +2295,26 @@ "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-sdk-s3@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.624.0.tgz#770cbc3f91b99ed70de6f7b9552917de99ee7e78" + integrity sha512-HUiaZ6+JXcG0qQda10ZxDGJvbT71YUp1zX+oikIsfTUeq0N75O82OY3Noqd7cyjEVtsGSo/y0e6U3aV1hO+wPw== + dependencies: + "@aws-sdk/core" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-arn-parser" "3.568.0" + "@smithy/core" "^2.3.2" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-stream" "^3.1.3" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@aws-sdk/middleware-signing@3.572.0": version "3.572.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.572.0.tgz#d3c648e3a280774115003d7ea07860f80f79a19d" @@ -1634,6 +2359,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-ssec@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" + integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/middleware-user-agent@3.540.0": version "3.540.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.540.0.tgz#4981c64c1eeb6b5c453bce02d060b8c71d44994d" @@ -1678,6 +2412,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/middleware-user-agent@3.620.0": + version "3.620.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" + integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== + dependencies: + "@aws-sdk/types" "3.609.0" + "@aws-sdk/util-endpoints" "3.614.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/property-provider@^3.78.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.374.0.tgz#ba302bfd9cdd4751efdb50ef60e7ee3cbd09c62a" @@ -1734,6 +2479,18 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/region-config-resolver@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" + integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@aws-sdk/shared-ini-file-loader@^3.80.0": version "3.374.0" resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.374.0.tgz#dc992051b59169a33cf1acef2d268b7c8e3470f5" @@ -1766,6 +2523,18 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/signature-v4-multi-region@3.624.0": + version "3.624.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.624.0.tgz#86829acc07871758a592dd50812ca4d370f641ed" + integrity sha512-gu1SfCyUPnq4s0AI1xdAl0whHwhkTyltg4QZWc4vnZvEVudCpJVVxEcroUHYQIO51YyVUT9jSMS1SVRe5VqPEw== + dependencies: + "@aws-sdk/middleware-sdk-s3" "3.624.0" + "@aws-sdk/types" "3.609.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/signature-v4" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/token-providers@3.554.0": version "3.554.0" resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.554.0.tgz#5a20ce273451654a1382f772ef119a9a156f537c" @@ -1811,6 +2580,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/token-providers@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" + integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/types@3.535.0", "@aws-sdk/types@^3.222.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.535.0.tgz#5e6479f31299dd9df170e63f4d10fe739008cf04" @@ -1835,6 +2615,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/types@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" + integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/util-arn-parser@3.568.0": version "3.568.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-arn-parser/-/util-arn-parser-3.568.0.tgz#6a19a8c6bbaa520b6be1c278b2b8c17875b91527" @@ -1882,6 +2670,16 @@ "@smithy/util-endpoints" "^2.0.0" tslib "^2.6.2" +"@aws-sdk/util-endpoints@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" + integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + "@smithy/util-endpoints" "^2.0.5" + tslib "^2.6.2" + "@aws-sdk/util-locate-window@^3.0.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.535.0.tgz#0200a336fddd47dd6567ce15d01f62be50a315d7" @@ -1919,6 +2717,16 @@ bowser "^2.11.0" tslib "^2.6.2" +"@aws-sdk/util-user-agent-browser@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" + integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/types" "^3.3.0" + bowser "^2.11.0" + tslib "^2.6.2" + "@aws-sdk/util-user-agent-node@3.535.0": version "3.535.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.535.0.tgz#f5c26fb6f3f561d3cf35f96f303b1775afad0a5b" @@ -1949,6 +2757,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/util-user-agent-node@3.614.0": + version "3.614.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" + integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== + dependencies: + "@aws-sdk/types" "3.609.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@aws-sdk/util-utf8-browser@^3.0.0": version "3.259.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz#3275a6f5eb334f96ca76635b961d3c50259fd9ff" @@ -1972,6 +2790,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@aws-sdk/xml-builder@3.609.0": + version "3.609.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" + integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" @@ -3880,6 +4706,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/abort-controller@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" + integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/chunked-blob-reader-native@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.2.0.tgz#aff8bddf9fdc1052f885e1b15aa81e4d274e541e" @@ -3932,6 +4766,17 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@smithy/config-resolver@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" + integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/util-config-provider" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@smithy/core@^1.4.2": version "1.4.2" resolved "https://registry.yarnpkg.com/@smithy/core/-/core-1.4.2.tgz#1c3ed886d403041ce5bd2d816448420c57baa19c" @@ -3960,6 +4805,20 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@smithy/core@^2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.2.tgz#4a1e3da41d2a3a494cbc6bd1fc6eeb26b2e27184" + integrity sha512-in5wwt6chDBcUv1Lw1+QzZxN9fBffi+qOixfb65yK4sDuKG7zAUO9HAFqmVzsZM3N+3tTyvZjtnDXePpvp007Q== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-retry" "^3.0.14" + "@smithy/middleware-serde" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@smithy/credential-provider-imds@^1.0.1": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-1.1.0.tgz#4d9444c4c8de70143c3f16bdba188b0e42cb48f9" @@ -3993,6 +4852,17 @@ "@smithy/url-parser" "^3.0.0" tslib "^2.6.2" +"@smithy/credential-provider-imds@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" + integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + tslib "^2.6.2" + "@smithy/eventstream-codec@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-2.2.0.tgz#63d74fa817188995eb55e792a38060b0ede98dc4" @@ -4013,6 +4883,16 @@ "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-codec@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" + integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== + dependencies: + "@aws-crypto/crc32" "5.2.0" + "@smithy/types" "^3.3.0" + "@smithy/util-hex-encoding" "^3.0.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-browser@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.2.0.tgz#69c93cc0210f04caeb0770856ef88c9a82564e11" @@ -4031,6 +4911,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-browser@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" + integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== + dependencies: + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-config-resolver@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.2.0.tgz#23c8698ce594a128bcc556153efb7fecf6d04f87" @@ -4047,6 +4936,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-config-resolver@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" + integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.2.0.tgz#b82870a838b1bd32ad6e0cf33a520191a325508e" @@ -4065,6 +4962,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-node@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" + integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== + dependencies: + "@smithy/eventstream-serde-universal" "^3.0.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/eventstream-serde-universal@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.2.0.tgz#a75e330040d5e2ca2ac0d8bccde3e390ac5afd38" @@ -4083,6 +4989,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/eventstream-serde-universal@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" + integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== + dependencies: + "@smithy/eventstream-codec" "^3.1.2" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/fetch-http-handler@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.5.0.tgz#0b8e1562807fdf91fe7dd5cde620d7a03ddc10ac" @@ -4105,6 +5020,17 @@ "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" +"@smithy/fetch-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" + integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== + dependencies: + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" + "@smithy/util-base64" "^3.0.0" + tslib "^2.6.2" + "@smithy/hash-blob-browser@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-2.2.0.tgz#d26db0e88b8fc4b59ee487bd026363ea9b48cf3a" @@ -4125,6 +5051,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/hash-blob-browser@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" + integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== + dependencies: + "@smithy/chunked-blob-reader" "^3.0.0" + "@smithy/chunked-blob-reader-native" "^3.0.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/hash-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-2.2.0.tgz#df29e1e64811be905cb3577703b0e2d0b07fc5cc" @@ -4145,6 +5081,16 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/hash-node@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" + integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-buffer-from" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/hash-stream-node@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-2.2.0.tgz#7b341fdc89851af6b98d8c01e47185caf0a4b2d9" @@ -4163,6 +5109,15 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/hash-stream-node@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" + integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/invalid-dependency@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-2.2.0.tgz#ee3d8980022cb5edb514ac187d159b3e773640f0" @@ -4179,6 +5134,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/invalid-dependency@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" + integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/is-array-buffer@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz#f84f0d9f9a36601a9ca9381688bd1b726fd39111" @@ -4211,6 +5174,15 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/md5-js@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" + integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/middleware-content-length@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-2.2.0.tgz#a82e97bd83d8deab69e07fea4512563bedb9461a" @@ -4229,6 +5201,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-content-length@^3.0.5": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" + integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== + dependencies: + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/middleware-endpoint@^2.5.1": version "2.5.1" resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.5.1.tgz#1333c58304aff4d843e8ef4b85c8cb88975dd5ad" @@ -4255,6 +5236,19 @@ "@smithy/util-middleware" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-endpoint@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" + integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== + dependencies: + "@smithy/middleware-serde" "^3.0.3" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/url-parser" "^3.0.3" + "@smithy/util-middleware" "^3.0.3" + tslib "^2.6.2" + "@smithy/middleware-retry@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-2.3.1.tgz#d6fdce94f2f826642c01b4448e97a509c4556ede" @@ -4285,6 +5279,21 @@ tslib "^2.6.2" uuid "^9.0.1" +"@smithy/middleware-retry@^3.0.14": + version "3.0.14" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.14.tgz#739e8bac6e465e0cda26446999db614418e79da3" + integrity sha512-7ZaWZJOjUxa5hgmuMspyt8v/zVsh0GXYuF7OvCmdcbVa/xbnKQoYC+uYKunAqRGTkxjOyuOCw9rmFUFOqqC0eQ== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/protocol-http" "^4.1.0" + "@smithy/service-error-classification" "^3.0.3" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-retry" "^3.0.3" + tslib "^2.6.2" + uuid "^9.0.1" + "@smithy/middleware-serde@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-2.3.0.tgz#a7615ba646a88b6f695f2d55de13d8158181dd13" @@ -4301,6 +5310,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-serde@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" + integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/middleware-stack@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-2.2.0.tgz#3fb49eae6313f16f6f30fdaf28e11a7321f34d9f" @@ -4317,6 +5334,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/middleware-stack@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" + integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/node-config-provider@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-1.1.0.tgz#86c64e4ef6a557863422a236ba10aa7ed51ad85d" @@ -4347,6 +5372,16 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/node-config-provider@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" + integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== + dependencies: + "@smithy/property-provider" "^3.1.3" + "@smithy/shared-ini-file-loader" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/node-http-handler@^2.5.0": version "2.5.0" resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-2.5.0.tgz#7b5e0565dd23d340380489bd5fe4316d2bed32de" @@ -4369,6 +5404,17 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/node-http-handler@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" + integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== + dependencies: + "@smithy/abort-controller" "^3.1.1" + "@smithy/protocol-http" "^4.1.0" + "@smithy/querystring-builder" "^3.0.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/property-provider@^1.0.1", "@smithy/property-provider@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-1.2.0.tgz#2e4ca34b0994ec6de734316c0093e671a1bfa5c7" @@ -4393,6 +5439,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/property-provider@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" + integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/protocol-http@^3.3.0": version "3.3.0" resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-3.3.0.tgz#a37df7b4bb4960cdda560ce49acfd64c455e4090" @@ -4409,6 +5463,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/protocol-http@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" + integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/querystring-builder@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-2.2.0.tgz#22937e19fcd0aaa1a3e614ef8cb6f8e86756a4ef" @@ -4427,6 +5489,15 @@ "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" +"@smithy/querystring-builder@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" + integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/util-uri-escape" "^3.0.0" + tslib "^2.6.2" + "@smithy/querystring-parser@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-1.1.0.tgz#4bf4be6d1db8b769d346a0d98c5b0db4e99a8ba6" @@ -4451,6 +5522,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/querystring-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" + integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/service-error-classification@^2.1.5": version "2.1.5" resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-2.1.5.tgz#0568a977cc0db36299d8703a5d8609c1f600c005" @@ -4465,6 +5544,13 @@ dependencies: "@smithy/types" "^3.0.0" +"@smithy/service-error-classification@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" + integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== + dependencies: + "@smithy/types" "^3.3.0" + "@smithy/shared-ini-file-loader@^1.0.1", "@smithy/shared-ini-file-loader@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-1.1.0.tgz#144a03a303590ef7d465ebcb21ffc2a52efc3389" @@ -4489,6 +5575,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/shared-ini-file-loader@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" + integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/signature-v4@^2.2.1", "@smithy/signature-v4@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-2.3.0.tgz#c30dd4028ae50c607db99459981cce8cdab7a3fd" @@ -4515,6 +5609,20 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/signature-v4@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" + integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== + dependencies: + "@smithy/is-array-buffer" "^3.0.0" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-hex-encoding" "^3.0.0" + "@smithy/util-middleware" "^3.0.3" + "@smithy/util-uri-escape" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/smithy-client@^2.5.1": version "2.5.1" resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.5.1.tgz#0fd2efff09dc65500d260e590f7541f8a387eae3" @@ -4539,6 +5647,18 @@ "@smithy/util-stream" "^3.0.1" tslib "^2.6.2" +"@smithy/smithy-client@^3.1.12": + version "3.1.12" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.12.tgz#fb6386816ff8a5c50eab7503d4ee3ba2e4ebac63" + integrity sha512-wtm8JtsycthkHy1YA4zjIh2thJgIQ9vGkoR639DBx5lLlLNU0v4GARpQZkr2WjXue74nZ7MiTSWfVrLkyD8RkA== + dependencies: + "@smithy/middleware-endpoint" "^3.1.0" + "@smithy/middleware-stack" "^3.0.3" + "@smithy/protocol-http" "^4.1.0" + "@smithy/types" "^3.3.0" + "@smithy/util-stream" "^3.1.3" + tslib "^2.6.2" + "@smithy/types@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/types/-/types-1.2.0.tgz#9dc65767b0ee3d6681704fcc67665d6fc9b6a34e" @@ -4560,6 +5680,13 @@ dependencies: tslib "^2.6.2" +"@smithy/types@^3.3.0": + version "3.3.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" + integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== + dependencies: + tslib "^2.6.2" + "@smithy/url-parser@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-1.1.0.tgz#1d88af653b02fda0be59064bfe5420c0b34b4dcb" @@ -4587,6 +5714,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/url-parser@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" + integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== + dependencies: + "@smithy/querystring-parser" "^3.0.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-base64@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-2.3.0.tgz#312dbb4d73fb94249c7261aee52de4195c2dd8e2" @@ -4685,6 +5821,17 @@ bowser "^2.11.0" tslib "^2.6.2" +"@smithy/util-defaults-mode-browser@^3.0.14": + version "3.0.14" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.14.tgz#21f3ebcb07b9d6ae1274b9d655c38bdac59e5c06" + integrity sha512-0iwTgKKmAIf+vFLV8fji21Jb2px11ktKVxbX6LIDPAUJyWQqGqBVfwba7xwa1f2FZUoolYQgLvxQEpJycXuQ5w== + dependencies: + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + bowser "^2.11.0" + tslib "^2.6.2" + "@smithy/util-defaults-mode-node@^2.3.1": version "2.3.1" resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.3.1.tgz#4613210a3d107aadb3f85bd80cb71c796dd8bf0a" @@ -4711,6 +5858,19 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-defaults-mode-node@^3.0.14": + version "3.0.14" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.14.tgz#6bb9e837282e84bbf5093dbcd120fcd296593f7a" + integrity sha512-e9uQarJKfXApkTMMruIdxHprhcXivH1flYCe8JRDTzkkLx8dA3V5J8GZlST9yfDiRWkJpZJlUXGN9Rc9Ade3OQ== + dependencies: + "@smithy/config-resolver" "^3.0.5" + "@smithy/credential-provider-imds" "^3.2.0" + "@smithy/node-config-provider" "^3.1.4" + "@smithy/property-provider" "^3.1.3" + "@smithy/smithy-client" "^3.1.12" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-endpoints@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-1.2.0.tgz#b8b805f47e8044c158372f69b88337703117665d" @@ -4729,6 +5889,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-endpoints@^2.0.5": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" + integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== + dependencies: + "@smithy/node-config-provider" "^3.1.4" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-hex-encoding@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-2.2.0.tgz#87edb7c88c2f422cfca4bb21f1394ae9602c5085" @@ -4759,6 +5928,14 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-middleware@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" + integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== + dependencies: + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-retry@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-2.2.0.tgz#e8e019537ab47ba6b2e87e723ec51ee223422d85" @@ -4777,6 +5954,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-retry@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" + integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== + dependencies: + "@smithy/service-error-classification" "^3.0.3" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@smithy/util-stream@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.2.0.tgz#b1279e417992a0f74afa78d7501658f174ed7370" @@ -4805,6 +5991,20 @@ "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" +"@smithy/util-stream@^3.1.3": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" + integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== + dependencies: + "@smithy/fetch-http-handler" "^3.2.4" + "@smithy/node-http-handler" "^3.1.4" + "@smithy/types" "^3.3.0" + "@smithy/util-base64" "^3.0.0" + "@smithy/util-buffer-from" "^3.0.0" + "@smithy/util-hex-encoding" "^3.0.0" + "@smithy/util-utf8" "^3.0.0" + tslib "^2.6.2" + "@smithy/util-uri-escape@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-2.2.0.tgz#56f5764051a33b67bc93fdd2a869f971b0635406" @@ -4819,7 +6019,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-utf8@^2.3.0": +"@smithy/util-utf8@^2.0.0", "@smithy/util-utf8@^2.3.0": version "2.3.0" resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-2.3.0.tgz#dd96d7640363259924a214313c3cf16e7dd329c5" integrity sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== @@ -4853,6 +6053,15 @@ "@smithy/types" "^3.0.0" tslib "^2.6.2" +"@smithy/util-waiter@^3.1.2": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" + integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== + dependencies: + "@smithy/abort-controller" "^3.1.1" + "@smithy/types" "^3.3.0" + tslib "^2.6.2" + "@stratiformdigital/serverless-stage-destroyer@^2.0.0": version "2.1.1" resolved "https://registry.yarnpkg.com/@stratiformdigital/serverless-stage-destroyer/-/serverless-stage-destroyer-2.1.1.tgz#6c0a5bde84d8e0646aa4ddf9ea0b0b9b099495fb" @@ -7975,6 +9184,13 @@ fast-xml-parser@4.2.5: dependencies: strnum "^1.0.5" +fast-xml-parser@4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz#86dbf3f18edf8739326447bcaac31b4ae7f6514f" + integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw== + dependencies: + strnum "^1.0.5" + fastest-levenshtein@^1.0.16: version "1.0.16" resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" @@ -11927,11 +13143,17 @@ serverless-webpack@^5.6.1: optionalDependencies: ts-node ">= 8.3.0" -serverless@^3.38.0: - version "3.38.0" - resolved "https://registry.yarnpkg.com/serverless/-/serverless-3.38.0.tgz#9275763cab3ec1cd29635520cf24b9b5e7202583" - integrity sha512-NJE1vOn8XmQEqfU9UxmVhkUFaCRmx6FhYw/jITN863WlOt4Y3PQbj3hwQyIb5QS1ZrXFq5ojklwewUXH7xGpdA== - dependencies: +serverless@^3.39.0: + version "3.39.0" + resolved "https://registry.yarnpkg.com/serverless/-/serverless-3.39.0.tgz#699fbea4d0b0ba0baba0510be743f9d025ac363d" + integrity sha512-FHI3fhe4TRS8+ez/KA7HmO3lt3fAynO+N1pCCzYRThMWG0J8RWCI0BI+K0mw9+sEV+QpBCpZRZbuGyUaTsaQew== + dependencies: + "@aws-sdk/client-api-gateway" "^3.588.0" + "@aws-sdk/client-cognito-identity-provider" "^3.588.0" + "@aws-sdk/client-eventbridge" "^3.588.0" + "@aws-sdk/client-iam" "^3.588.0" + "@aws-sdk/client-lambda" "^3.588.0" + "@aws-sdk/client-s3" "^3.588.0" "@serverless/dashboard-plugin" "^7.2.0" "@serverless/platform-client" "^4.5.1" "@serverless/utils" "^6.13.1" From cbcafe6a78a19b00552ad957d48c29546f71f1e7 Mon Sep 17 00:00:00 2001 From: Nick Summers <ntsummers1@proton.me> Date: Fri, 27 Sep 2024 10:02:06 -0400 Subject: [PATCH 19/24] Create base for new 2024 template (#139754) --- .pre-commit-config.yaml | 1 + .../handlers/fiscalYearTemplate/get.ts | 2 +- services/app-api/types.ts | 1 + .../data/seed/seed-section-base-2024.json | 10736 ++++++++++++++++ .../handlers/seed/tables/sectionBase.js | 1 + .../ui-src/src/components/fields/Integer.jsx | 14 +- .../src/components/fields/Integer.test.jsx | 14 +- .../components/fields/SynthesizedTable.jsx | 23 +- .../fields/SynthesizedTable.test.jsx | 139 + .../components/fields/SynthesizedValue.jsx | 38 +- .../fields/SynthesizedValue.test.jsx | 79 + .../src/components/layout/FormTemplates.jsx | 5 +- .../sections/homepage/TemplateDownload.jsx | 39 +- services/ui-src/src/serviceWorker.js | 2 +- services/ui-src/src/setupTests.js | 2 +- services/ui-src/src/store/globalVariables.js | 2 +- services/ui-src/src/store/storeIndex.js | 2 +- services/ui-src/src/styles/_footer.scss | 2 +- services/ui-src/src/styles/_main.scss | 35 +- services/ui-src/src/styles/_variables.scss | 1 + services/ui-src/src/util/constants.js | 3 +- services/ui-src/src/util/metaEnv.js | 2 + 22 files changed, 11086 insertions(+), 57 deletions(-) create mode 100644 services/database/data/seed/seed-section-base-2024.json create mode 100644 services/ui-src/src/components/fields/SynthesizedTable.test.jsx create mode 100644 services/ui-src/src/components/fields/SynthesizedValue.test.jsx create mode 100644 services/ui-src/src/util/metaEnv.js diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 189b6d036..084b01881 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,4 @@ +exclude: 'seed-section-base-*' repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 diff --git a/services/app-api/handlers/fiscalYearTemplate/get.ts b/services/app-api/handlers/fiscalYearTemplate/get.ts index e76c9478f..5b03b77a7 100644 --- a/services/app-api/handlers/fiscalYearTemplate/get.ts +++ b/services/app-api/handlers/fiscalYearTemplate/get.ts @@ -3,7 +3,7 @@ import s3 from "../../libs/s3-lib"; import { ReportPdfs } from "../../types"; export const getFiscalYearTemplateLink = handler(async (_context) => { - const filename = ReportPdfs[2023]; + const filename = ReportPdfs[2024]; const url = await s3.getSignedDownloadUrl( { Bucket: diff --git a/services/app-api/types.ts b/services/app-api/types.ts index 86179752a..511529453 100644 --- a/services/app-api/types.ts +++ b/services/app-api/types.ts @@ -153,6 +153,7 @@ export const ReportPdfs = { 2021: "FFY_2021_CARTS_Template.pdf", 2022: "FFY_2022_CARTS_Template.pdf", 2023: "FFY_2023_CARTS_Template.pdf", + 2024: "FFY_2024_CARTS_Template.pdf", }; /* eslint-enable no-unused-vars */ diff --git a/services/database/data/seed/seed-section-base-2024.json b/services/database/data/seed/seed-section-base-2024.json new file mode 100644 index 000000000..736d35cb8 --- /dev/null +++ b/services/database/data/seed/seed-section-base-2024.json @@ -0,0 +1,10736 @@ +[ + { + "year": 2024, + "sectionId": 0, + "contents": { + "section": { + "id": "2024-00", + "type": "section", + "year": 2024, + "state": null, + "title": "Basic State Information", + "valid": null, + "ordinal": 0, + "subsections": [ + { + "id": "2024-00-a", + "type": "subsection", + "parts": [ + { + "id": "2024-00-a-01", + "text": "We already have some information about your state from our records.\nIf any information is incorrect, please contact the [CARTS Help Desk](mailto:mdct_help@cms.hhs.gov).", + "type": "part", + "title": "Welcome!", + "questions": [ + { + "id": "2024-00-a-01-01", + "type": "text", + "label": "State or territory name:", + "answer": { + "entry": null, + "readonly": true, + "prepopulated": true + } + }, + { + "id": "2024-00-a-01-02", + "type": "radio", + "label": "Program type:", + "answer": { + "entry": null, + "options": [ + { + "label": "Both Medicaid expansion CHIP and separate CHIP", + "value": "combo" + }, + { + "label": "Medicaid expansion CHIP only", + "value": "medicaid_exp_chip" + }, + { + "label": "Separate CHIP only", + "value": "separate_chip" + } + ], + "prepopulated": true + } + }, + { + "id": "2024-00-a-01-03", + "type": "text_medium", + "label": "CHIP program name(s):", + "answer": { + "entry": null, + "readonly": false, + "prepopulated": true + } + }, + { + "type": "fieldset", + "label": "Who should we contact if we have any questions about your report?", + "questions": [ + { + "id": "2024-00-a-01-04", + "type": "text", + "label": "Contact name:", + "answer": { + "entry": null + } + }, + { + "id": "2024-00-a-01-05", + "type": "text", + "label": "Job title:", + "answer": { + "entry": null + } + }, + { + "id": "2024-00-a-01-06", + "type": "email", + "label": "Email:", + "answer": { + "entry": null + } + }, + { + "id": "2024-00-a-01-07", + "hint": "Include city, state, and zip code.", + "type": "mailing_address", + "label": "Full mailing address:", + "answer": { + "entry": null + } + }, + { + "id": "2024-00-a-01-08", + "type": "phone_number", + "label": "Phone number:", + "answer": { + "entry": null + } + }, + { + "hint": "This information is being collected to assist the Centers for Medicare & Medicaid Services (CMS) in partnership with States with the ongoing management of Medicaid and CHIP programs and policies. This mandatory information collection (42 U.S.C. 1397hh) will be used to help each state meet the statutory requirements at section 2108(a) of the Social Security Act to assess the operation of the State child health plan in each Federal fiscal year and to report the results of the assessment including the progress made in reducing the number of uncovered, low-income children. Under the Privacy Act of 1974 any personally identifying information obtained will be kept private to the extent of the law. According to the Paperwork Reduction Act of 1995, no persons are required to respond to a collection of information unless it displays a valid OMB control number. The valid OMB control number for this information collection is 0938-1148 (CMS-10398 #1). The time required to complete this information collection is estimated to average 40 hours per response, including the time to review instructions, search existing data resources, gather all data needed, and complete and review the information collection. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to CMS, 7500 Security Boulevard, Attn: Paperwork Reduction Act Reports Clearance Officer, Mail Stop C4-26-05, Baltimore, Maryland 21244-1850.", + "type": "fieldset", + "label": "PRA Disclosure Statement.", + "questions": [] + } + ] + } + ] + } + ] + } + ] + } + } + }, + { + "year": 2024, + "sectionId": 1, + "contents": { + "section": { + "id": "2024-01", + "type": "section", + "year": 2024, + "state": null, + "title": "Program Fees and Policy Changes", + "valid": null, + "ordinal": 1, + "subsections": [ + { + "id": "2024-01-a", + "type": "subsection", + "parts": [ + { + "id": "2024-01-a-01", + "type": "part", + "title": "Medicaid Expansion CHIP Enrollment Fees, Premiums, and Delivery Systems", + "questions": [ + { + "id": "2024-01-a-01-01", + "type": "radio", + "label": "Does your program charge an enrollment fee?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "id": "2024-01-a-01-01-a", + "type": "money", + "label": "How much is your enrollment fee?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-01-01 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-01-01')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-01-a-01-02", + "type": "radio", + "label": "Does your program charge premiums?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-01-a-01-02-a", + "type": "radio", + "label": "Are your premiums for one child tiered by Federal Poverty Level (FPL)?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + } + }, + { + "id": "2024-01-a-01-02-b", + "type": "ranges", + "label": "Indicate the range for premiums and corresponding FPL for one child.", + "answer": { + "entry": null, + "header": "Premiums for one child, tiered by FPL", + "entry_max": 0, + "entry_min": 1, + "range_type": ["percentage", "money"], + "range_categories": [ + ["FPL starts at", "FPL ends at"], + ["Premium starts at", "Premium ends at"] + ] + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-01-02-a is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-01-02-a')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-01-a-01-02-c", + "type": "money", + "label": "How much is the premium for one child?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-01-02-a is yes or unanswered; noninteractive: hide if that's yes.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-01-02-a')].answer.entry", + "values": { + "interactive": [null, "yes"], + "noninteractive": ["yes"] + } + } + } + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-01-02 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-01-02')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + }, + "skip_text": "This question doesn’t apply to your state since you answered NO to Question 2." + } + } + } + ] + }, + { + "id": "2024-01-a-01-03", + "type": "radio", + "label": "Is the maximum premium a family would be charged each year tiered by FPL?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "id": "2024-01-a-01-03-a", + "type": "ranges", + "label": "Indicate the range for premiums and corresponding FPL for a family.", + "answer": { + "entry": null, + "header": "Maximum premiums for a family, tiered by FPL", + "entry_max": 0, + "entry_min": 1, + "range_type": ["percentage", "money"], + "range_categories": [ + ["FPL starts at", "FPL ends at"], + ["Premium starts at", "Premium ends at"] + ] + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-01-03 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-01-03')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + }, + "skip_text": "This question doesn’t apply to your state since you answered NO to Question 3." + } + } + }, + { + "id": "2024-01-a-01-03-b", + "type": "money", + "label": "What's the maximum premium a family would be charged each year?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-01-03 is yes or unanswered; noninteractive: hide if that's yes.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-01-03')].answer.entry", + "values": { + "interactive": [null, "yes"], + "noninteractive": ["yes"] + } + } + } + } + } + ] + }, + { + "id": "2024-01-a-01-04", + "type": "text_multiline", + "label": "Do premiums differ for different Medicaid expansion CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", + "answer": { + "entry": null + } + }, + { + "id": "2024-01-a-01-05", + "hint": "Select all that apply.", + "type": "checkbox", + "label": "Which delivery system(s) does your state use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Managed Care", + "value": "mco" + }, + { + "label": "Primary Care Case Management (PCCM)", + "value": "pccm" + }, + { + "label": "Fee-for-Service", + "value": "ffs" + } + ] + } + }, + { + "id": "2024-01-a-01-06", + "type": "text_multiline", + "label": "Which delivery system(s) are available to which Medicaid expansion CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", + "answer": { + "entry": null + } + } + ], + "context_data": { + "skip_text": "Part 1 only applies to states with a Medicaid expansion CHIP program.", + "show_if_state_program_type_in": [ + "medicaid_exp_chip", + "combo" + ] + } + }, + { + "id": "2024-01-a-02", + "type": "part", + "title": "Separate CHIP Enrollment Fees, Premiums, and Delivery Systems", + "questions": [ + { + "id": "2024-01-a-02-01", + "type": "radio", + "label": "Does your program charge an enrollment fee?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "id": "2024-01-a-02-01-a", + "type": "money", + "label": "How much is your enrollment fee?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-02-01 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-02-01')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-01-a-02-02", + "type": "radio", + "label": "Does your program charge premiums?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-01-a-02-02-a", + "type": "radio", + "label": "Are your premiums for one child tiered by Federal Poverty Level (FPL)?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + } + }, + { + "id": "2024-01-a-02-02-b", + "type": "ranges", + "label": "Indicate the range of premiums and corresponding FPL ranges for one child.", + "answer": { + "entry": null, + "header": "Premiums for one child, tiered by FPL", + "entry_max": 0, + "entry_min": 1, + "range_type": ["percentage", "money"], + "range_categories": [ + ["FPL starts at", "FPL ends at"], + ["Premium starts at", "Premium ends at"] + ] + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-02-02-a is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-02-02-a')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-01-a-02-02-c", + "type": "money", + "label": "How much is the premium for one child?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-02-02-a is yes or unanswered; noninteractive: hide if that's yes.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-02-02-a')].answer.entry", + "values": { + "interactive": [null, "yes"], + "noninteractive": ["yes"] + } + } + } + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-02-02 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-02-02')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + }, + "skip_text": "This question doesn’t apply to your state since you answered NO to Question 2." + } + } + } + ] + }, + { + "id": "2024-01-a-02-03", + "type": "radio", + "label": "Is the maximum premium a family would be charged each year tiered by FPL?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "id": "2024-01-a-02-03-a", + "type": "ranges", + "label": "Indicate the range of premiums and corresponding FPL for a family.", + "answer": { + "entry": null, + "header": "Maximum premiums for a family, tiered by FPL", + "entry_max": 0, + "entry_min": 1, + "range_type": ["percentage", "money"], + "range_categories": [ + ["FPL starts at", "FPL ends at"], + ["Premium starts at", "Premium ends at"] + ] + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-02-03 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-02-03')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + }, + "skip_text": "This question doesn’t apply to your state since you answered NO to Question 3." + } + } + }, + { + "id": "2024-01-a-02-03-b", + "type": "money", + "label": "What's the maximum premium fee a family would be charged each year?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-02-03 is yes or unanswered; noninteractive: hide if that's yes.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-02-03')].answer.entry", + "values": { + "interactive": [null, "yes"], + "noninteractive": ["yes"] + } + } + } + } + } + ] + }, + { + "id": "2024-01-a-02-04", + "type": "text_multiline", + "label": "Do your premiums differ for different, separate CHIP populations beyond FPL (for example, by eligibility group)? If so, briefly explain the fee structure breakdown.", + "answer": { + "entry": null + } + }, + { + "id": "2024-01-a-02-05", + "hint": "Select all that apply.", + "type": "checkbox", + "label": "Which delivery system(s) do you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Managed Care", + "value": "mco" + }, + { + "label": "Primary Care Case Management (PCCM)", + "value": "pccm" + }, + { + "label": "Fee-for-Service", + "value": "ffs" + } + ] + } + }, + { + "id": "2024-01-a-02-06", + "type": "text_multiline", + "label": "Which delivery system(s) are available to which separate CHIP populations? Indicate whether eligibility status, income level, age range, or other criteria determine which delivery system a population receives.", + "answer": { + "entry": null + } + } + ], + "context_data": { + "skip_text": "Part 2 only applies to states with a separate CHIP program.", + "show_if_state_program_type_in": ["separate_chip", "combo"] + } + }, + { + "id": "2024-01-a-03", + "text": "Indicate any changes you’ve made to your Medicaid expansion CHIP program policies in the past federal fiscal year.", + "type": "part", + "title": "Medicaid Expansion CHIP Program and Policy Changes", + "questions": [ + { + "id": "2024-01-a-03-01", + "type": "radio", + "label": "Have you made any changes to the eligibility determination process?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility determination process" + } + }, + { + "id": "2024-01-a-03-02", + "type": "radio", + "label": "Have you made any changes to the eligibility redetermination process?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility redetermination process" + } + }, + { + "id": "2024-01-a-03-03", + "hint": "For example: increasing income eligibility levels.", + "type": "radio", + "label": "Have you made any changes to the eligibility levels or target populations?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility levels or target population" + } + }, + { + "id": "2024-01-a-03-04", + "hint": "For example: adding benefits or removing benefit limits.", + "type": "radio", + "label": "Have you made any changes to the benefits available to enrollees?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Benefits available to enrollees" + } + }, + { + "id": "2024-01-a-03-05", + "type": "radio", + "label": "Have you made any changes to the single, streamlined application?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Single streamlined application" + } + }, + { + "id": "2024-01-a-03-06", + "hint": "For example: allotting more or less funding for outreach, or changing your target population.", + "type": "radio", + "label": "Have you made any changes to your outreach efforts?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Outreach efforts" + } + }, + { + "id": "2024-01-a-03-07", + "hint": "For example: transitioning from fee-for-service to managed care for different Medicaid expansion CHIP populations.", + "type": "radio", + "label": "Have you made any changes to the delivery system(s)?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Delivery system(s)" + } + }, + { + "id": "2024-01-a-03-08", + "hint": "For example: changing amounts, populations, or the collection process.", + "type": "radio", + "label": "Have you made any changes to your cost sharing requirements?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Cost sharing" + } + }, + { + "id": "2024-01-a-03-09", + "hint": "For example: removing a waiting period.", + "type": "radio", + "label": "Have you made any changes to the substitution of coverage policies?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Subsitution of coverage policies" + } + }, + { + "id": "2024-01-a-03-10", + "type": "radio", + "label": "Have you made any changes to the enrollment process for health plan selection?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Enrollment process for health plan selection" + } + }, + { + "id": "2024-01-a-03-11", + "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide.", + "type": "radio", + "label": "Have you made any changes to the protections for applicants and enrollees?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Protections for applicants and enrollees" + } + }, + { + "id": "2024-01-a-03-12", + "hint": "For example: adding premium assistance or changing the population that receives premium assistance.", + "type": "radio", + "label": "Have you made any changes to premium assistance?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Premium assistance" + } + }, + { + "id": "2024-01-a-03-13", + "type": "radio", + "label": "Have you made any changes to the methods and procedures for preventing, investigating, or referring fraud or abuse cases?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Methods and procedures for prevention, investigation, and referral of cases of fraud and abuse" + } + }, + { + "id": "2024-01-a-03-14", + "type": "radio", + "label": "Have you made any changes to eligibility for “lawfully residing pregnant individuals”?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility for “lawfully residing” pregnant individuals" + } + }, + { + "id": "2024-01-a-03-15", + "type": "radio", + "label": "Have you made any changes to eligibility for “lawfully residing” children?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility for “lawfully residing” children" + } + }, + { + "id": "2024-01-a-03-16", + "type": "radio", + "label": "Have you made changes to any other policy or program areas?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Other program areas" + } + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-01-a-03-17", + "type": "text_multiline", + "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", + "answer": { + "entry": null + } + }, + { + "id": "2024-01-a-03-18", + "type": "radio", + "label": "Have you already submitted a State Plan Amendment (SPA) to reflect any changes that require a SPA?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if_all": { + "values": { + "interactive": ["no", null], + "noninteractive": ["no"] + }, + "targets": [ + "$..[?(@ && @.id=='2024-01-a-03-01')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-02')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-03')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-04')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-05')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-06')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-07')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-08')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-09')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-10')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-11')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-12')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-13')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-14')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-15')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-03-16')].answer.entry" + ] + } + }, + "interactive_conditional": "Show if any 2024-01-a-03 questions 1–16 has a yes answer, hide otherwise.", + "noninteractive_conditional": "Show if any 2024-01-a-03 questions 1–16 has a yes answer, hide otherwise." + } + } + ], + "context_data": { + "skip_text": "Part 3 only applies to states with a Medicaid expansion CHIP program.", + "show_if_state_program_type_in": [ + "medicaid_exp_chip", + "combo" + ] + } + }, + { + "id": "2024-01-a-04", + "text": "Indicate any changes you’ve made to your separate CHIP program and policies in the past federal fiscal year.", + "type": "part", + "title": "Separate CHIP Program and Policy Changes", + "questions": [ + { + "id": "2024-01-a-04-01", + "type": "radio", + "label": "Have you made any changes to the eligibility determination process?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility determination process" + } + }, + { + "id": "2024-01-a-04-02", + "type": "radio", + "label": "Have you made any changes to the eligibility redetermination process?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility redetermination process" + } + }, + { + "id": "2024-01-a-04-03", + "hint": "For example: increasing income eligibility levels.", + "type": "radio", + "label": "Have you made any changes to the eligibility levels or target populations?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility levels or target population" + } + }, + { + "id": "2024-01-a-04-04", + "hint": "For example: adding benefits or removing benefit limits.", + "type": "radio", + "label": "Have you made any changes to the benefits available to enrolees?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Benefits available to enrollees" + } + }, + { + "id": "2024-01-a-04-05", + "type": "radio", + "label": "Have you made any changes to the single streamlined application?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Single streamlined application" + } + }, + { + "id": "2024-01-a-04-06", + "hint": "For example: allotting more or less funding for outreach, or changing your target population.", + "type": "radio", + "label": "Have you made any changes to your outreach efforts?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Outreach efforts" + } + }, + { + "id": "2024-01-a-04-07", + "hint": "For example: transitioning from fee-for-service to managed care for different separate CHIP populations.", + "type": "radio", + "label": "Have you made any changes to the delivery system(s)?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Delivery system(s)" + } + }, + { + "id": "2024-01-a-04-08", + "hint": "For example: changing amounts, populations, or the collection process.", + "type": "radio", + "label": "Have you made any changes to your cost sharing requirements?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Cost sharing" + } + }, + { + "id": "2024-01-a-04-09", + "hint": "For example: removing a waiting period.", + "type": "radio", + "label": "Have you made any changes to substitution of coverage policies?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Crowd-out policies" + } + }, + { + "id": "2024-01-a-04-10", + "type": "radio", + "label": "Have you made any changes to an enrollment freeze and/or enrollment cap?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Enrollment freeze and/or enrollment cap" + } + }, + { + "id": "2024-01-a-04-11", + "type": "radio", + "label": "Have you made any changes to the enrollment process for health plan selection?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Enrollment process for health plan selection" + } + }, + { + "id": "2024-01-a-04-12", + "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide.", + "type": "radio", + "label": "Have you made any changes to the protections for applicants and enrollees?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Protections for applicants and enrollees" + } + }, + { + "id": "2024-01-a-04-13", + "hint": "For example: adding premium assistance or changing the population that receives premium assistance.", + "type": "radio", + "label": "Have you made any changes to premium assistance?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Premium assistance" + } + }, + { + "id": "2024-01-a-04-14", + "type": "radio", + "label": "Have you made any changes to the methods and procedures for preventing, investigating, or referring fraud or abuse cases?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Methods and procedures for prevention, investigation, and referral of cases of fraud and abuse" + } + }, + { + "id": "2024-01-a-04-15", + "hint": "For example: expanding eligibility or changing this population’s benefit package.", + "type": "radio", + "label": "Have you made any changes to your conception to birth expansion (as described in the October 2, 2002 final rule)?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Prenatal care eligibility" + } + }, + { + "id": "2024-01-a-04-16", + "hint": "For example: expanding eligibility or changing this population’s benefit package.", + "type": "radio", + "label": "Have you made any changes to coverage for your CHIP pregnant individuals eligibility group?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Pregnant Individuals Eligibility Group" + } + }, + { + "id": "2024-01-a-04-17", + "type": "radio", + "label": "Have you made any changes to eligibility for “lawfully residing” pregnant individuals?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility for “lawfully residing” pregnant women" + } + }, + { + "id": "2024-01-a-04-18", + "type": "radio", + "label": "Have you made any changes to eligibility for “lawfully residing” children?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Eligibility for “lawfully residing” children" + } + }, + { + "id": "2024-01-a-04-19", + "type": "radio", + "label": "Have you made changes to any other policy or program areas?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "context_data": { + "bullet_text": "Other program areas" + } + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-01-a-04-20", + "type": "text_multiline", + "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", + "answer": { + "entry": null + } + }, + { + "id": "2024-01-a-04-21", + "type": "radio", + "label": "Have you already submitted a State Plan Amendment (SPA) to reflect any changes that require a SPA?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if_all": { + "values": { + "interactive": ["no", null], + "noninteractive": ["no"] + }, + "targets": [ + "$..[?(@ && @.id=='2024-01-a-04-01')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-02')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-03')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-04')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-05')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-06')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-07')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-08')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-09')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-10')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-11')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-12')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-13')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-14')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-15')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-16')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-17')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-18')].answer.entry", + "$..[?(@ && @.id=='2024-01-a-04-19')].answer.entry" + ] + } + }, + "interactive_conditional": "Show if any 2024-01-a-04 questions 1–19 has a yes answer, hide otherwise.", + "noninteractive_conditional": "Show if any 2024-01-a-04 questions 1–19 has a yes answer, hide otherwise." + } + } + ], + "context_data": { + "skip_text": "Part 4 only applies to states with a separate CHIP program.", + "show_if_state_program_type_in": ["separate_chip", "combo"] + } + } + ] + } + ] + } + } + }, + { + "year": 2024, + "sectionId": 2, + "contents": { + "section": { + "id": "2024-02", + "type": "section", + "year": 2024, + "state": null, + "title": "Enrollment and Uninsured Data", + "valid": null, + "ordinal": 2, + "subsections": [ + { + "id": "2024-02-a", + "type": "subsection", + "parts": [ + { + "id": "2024-02-a-01", + "text": "This table is pre-filled with your SEDS data for the two most recent federal fiscal years (FFY). The percent change column in the table below calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If the information is inaccurate, adjust your data in SEDS (go to line 7: “Unduplicated Number Ever Enrolled” in your fourth quarter SEDS report) and then refresh this page. If you’re adjusting data in SEDS, allow one business day for the CARTS data below to update.", + "type": "part", + "title": "Number of Children Enrolled in CHIP", + "questions": [ + { + "type": "fieldset", + "questions": [], + "fieldset_id": "synthesized-table-2-1", + "fieldset_info": { + "rows": [ + [ + { + "contents": "Medicaid Expansion CHIP" + }, + { + "lookupChipEnrollments": { + "ffy": 2024, + "enrollmentType": "Medicaid Expansion CHIP", + "index": 1 + } + }, + { + "lookupChipEnrollments": { + "ffy": 2024, + "enrollmentType": "Medicaid Expansion CHIP", + "index": 2 + } + }, + { + "compareChipEnrollements": { + "ffy": 2024, + "enrollmentType": "Medicaid Expansion CHIP" + } + } + ], + [ + { + "contents": "Separate CHIP" + }, + { + "lookupChipEnrollments": { + "ffy": 2024, + "enrollmentType": "Separate CHIP", + "index": 1 + } + }, + { + "lookupChipEnrollments": { + "ffy": 2024, + "enrollmentType": "Separate CHIP", + "index": 2 + } + }, + { + "compareChipEnrollements": { + "ffy": 2024, + "enrollmentType": "Separate CHIP" + } + } + ] + ], + "headers": [ + { + "contents": "Program" + }, + { + "contents": "Number of children enrolled in FFY 2023" + }, + { + "contents": "Number of children enrolled in FFY 2024" + }, + { + "contents": "Percent change" + } + ] + }, + "fieldset_type": "synthesized_table" + }, + { + "id": "2024-02-a-01-01", + "type": "text_multiline", + "label": "The percent change column in the table above calculates the rate of growth in enrollment over the previous federal fiscal year by subtracting the previous fiscal year enrollment total from the current fiscal year enrollment total (B - A), and dividing that by the previous fiscal year total (A). If you had more than a 3% percent change from last year, what are some possible reasons why your enrollment numbers changed?", + "answer": { + "entry": null + }, + "context_data": { + "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", + "conditional_display": { + "type": "conditional_display", + "hide_if_table_value": { + "target": "$..*[?(@ && @.fieldset_id=='synthesized-table-2-1')].fieldset_info.rows", + "computed": true, + "variations": [ + { + "row": "*", + "row_key": "3", + "operator": ">", + "threshold": "3" + }, + { + "row": "*", + "row_key": "3", + "operator": "<", + "threshold": "-3" + } + ], + "variation_operator": "or" + } + }, + "interactive_conditional": "Hide if percent change values in parent's table are all under 3.", + "noninteractive_conditional": "Hide if percent change values in parent's table are all under 3." + } + } + ] + }, + { + "id": "2024-02-a-02", + "text": "This table is pre-filled with data on uninsured children (age 18 and under) who are below 200% of the Federal Poverty Level (FPL) based on annual estimates from the American Community Survey (ACS).", + "type": "part", + "title": "Number of Uninsured Children in Your State", + "questions": [ + { + "hint": "", + "type": "fieldset", + "label": "", + "questions": [], + "fieldset_id": "synthesized-table-2-2", + "fieldset_info": { + "rows": [ + [ + { + "contents": "2019" + }, + { + "lookupAcs": { + "ffy": "2019", + "acsProperty": "numberUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2019", + "acsProperty": "numberUninsuredMoe" + } + }, + { + "lookupAcs": { + "ffy": "2019", + "acsProperty": "percentUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2019", + "acsProperty": "percentUninsuredMoe" + } + } + ], + [ + { + "contents": "2020" + }, + { + "lookupAcs": { + "ffy": "2020", + "acsProperty": "numberUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2020", + "acsProperty": "numberUninsuredMoe" + } + }, + { + "lookupAcs": { + "ffy": "2020", + "acsProperty": "percentUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2020", + "acsProperty": "percentUninsuredMoe" + } + } + ], + [ + { + "contents": "2021" + }, + { + "lookupAcs": { + "ffy": "2021", + "acsProperty": "numberUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2021", + "acsProperty": "numberUninsuredMoe" + } + }, + { + "lookupAcs": { + "ffy": "2021", + "acsProperty": "percentUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2021", + "acsProperty": "percentUninsuredMoe" + } + } + ], + [ + { + "contents": "2022" + }, + { + "lookupAcs": { + "ffy": "2022", + "acsProperty": "numberUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2022", + "acsProperty": "numberUninsuredMoe" + } + }, + { + "lookupAcs": { + "ffy": "2022", + "acsProperty": "percentUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2022", + "acsProperty": "percentUninsuredMoe" + } + } + ], + [ + { + "contents": "2023" + }, + { + "lookupAcs": { + "ffy": "2023", + "acsProperty": "numberUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2023", + "acsProperty": "numberUninsuredMoe" + } + }, + { + "lookupAcs": { + "ffy": "2023", + "acsProperty": "percentUninsured" + } + }, + { + "lookupAcs": { + "ffy": "2023", + "acsProperty": "percentUninsuredMoe" + } + } + ] + ], + "headers": [ + { + "contents": "Year" + }, + { + "contents": "Number of uninsured children" + }, + { + "contents": "Margin of error" + }, + { + "contents": "Percent of uninsured children (of total children in your state)" + }, + { + "contents": "Margin of error" + } + ] + }, + "fieldset_type": "synthesized_table" + }, + { + "type": "fieldset", + "questions": [], + "fieldset_id": "synthesized-table-2-3", + "fieldset_info": { + "rows": [ + [ + { + "compareACS": { + "ffy1": "2022", + "ffy2": "2023", + "acsProperty": "numberUninsured" + } + }, + { + "compareACS": { + "ffy1": "2022", + "ffy2": "2023", + "acsProperty": "percentUninsured" + } + } + ] + ], + "headers": [ + { + "contents": "Change in the number of uninsured children between 2022 and 2023" + }, + { + "contents": "Change in the percent of uninsured children between 2022 and 2023" + } + ] + }, + "fieldset_type": "synthesized_table", + "all_columns_have_data": true + }, + { + "id": "2024-02-a-02-01", + "type": "text_multiline", + "label": "What are some reasons why the number and/or percent of uninsured children has changed?", + "answer": { + "entry": null + }, + "context_data": { + "skip_text": "Since your percent change didn’t exceed 3%, you can skip to Part 2.", + "conditional_display": { + "type": "conditional_display", + "hide_if_table_value": { + "target": "$..*[?(@ && @.fieldset_id=='synthesized-table-2-3')].fieldset_info.rows", + "computed": true, + "variations": [ + { + "row": "*", + "row_key": "0", + "operator": ">", + "threshold": "3" + }, + { + "row": "*", + "row_key": "0", + "operator": "<", + "threshold": "-3" + } + ], + "variation_operator": "or" + } + }, + "interactive_conditional": "Hide if percent change values in parent's table are all under 3.", + "noninteractive_conditional": "Hide if percent change values in parent's table are all under 3." + } + }, + { + "id": "2024-02-a-02-02", + "type": "radio", + "label": "Are there any reasons why the ACS estimates wouldn’t be a precise representation of the actual number of uninsured children in your state?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "id": "2024-02-a-02-02-a", + "type": "text_multiline", + "label": "What are some reasons why the American Community Survey estimates might not reflect the number of uninsured children in your state?", + "answer": { + "entry": null + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-02-a-02-02 is unanswered or no; noninteractive: hide if no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-02-a-02-02')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-02-a-02-03", + "type": "radio", + "label": "Do you have any alternate data source(s) or methodology for measuring the number and/or percent of uninsured children in your state?", + "answer": { + "entry": null, + "options": [ + { + "label": "Yes", + "value": "yes" + }, + { + "label": "No", + "value": "no" + } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-02-a-02-03-a", + "type": "text_multiline", + "label": "What is the alternate data source or methodology?", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-03-b", + "type": "daterange", + "label": "Tell us the date range for your data", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-02-a-02-03-c", + "type": "text_multiline", + "label": "Define the population you’re measuring, including ages and federal poverty levels.", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-03-d", + "type": "text_multiline", + "label": "Give numbers and/or the percent of uninsured children for at least two points in time.", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-03-e", + "type": "text_multiline", + "label": "Why did your state choose to adopt this alternate data source?", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-03-f", + "type": "text_multiline", + "label": "How reliable are these estimates? Provide standard errors, confidence intervals, and/or p-values if available.", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-03-g", + "type": "text_multiline", + "label": "What are the limitations of this alternate data source or methodology?", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-03-h", + "type": "text_multiline", + "label": "How do you use this alternate data source in CHIP program planning?", + "answer": { + "entry": null + } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-02-a-02-03 is unanswered or no; noninteractive: hide if no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-02-a-02-03')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-02-a-02-04", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your enrollment and uninsured data?", + "answer": { + "entry": null + } + }, + { + "id": "2024-02-a-02-05", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { + "entry": null + } + } + ] + } + ] + } + ] + } + } + }, + { + "year": 2024, + "sectionId": 3, + "contents": { + "section": { + "id": "2024-03", + "type": "section", + "year": 2024, + "state": null, + "title": "Eligibility, Enrollment, and Operations", + "valid": null, + "ordinal": 3, + "subsections": [ + { + "id": "2024-03-a", + "type": "subsection", + "parts": [ + { + "id": "2024-03-a-01", + "type": "part", + "questions": [ + { + "id": "2024-03-a-01-01", + "type": "radio", + "label": "Have you changed your outreach methods in the last federal fiscal year?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-a-01-01-a", + "type": "text_multiline", + "label": "What are you doing differently?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-a-01-01 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-a-01-01')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-a-01-02", + "hint": "For example: minorities, immigrants, or children living in rural areas.", + "type": "radio", + "label": "Are you targeting specific populations in your outreach efforts?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-a-01-02-a", + "type": "text_multiline", + "label": "Have these efforts been successful? How have you measured the effectiveness of your outreach efforts?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-a-01-02 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-a-01-02')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-a-01-03", + "hint": "For example: TV, school outreach, or word of mouth.", + "type": "text_multiline", + "label": "What methods have been most effective in reaching low-income, uninsured children?", + "answer": { "entry": null } + }, + { + "id": "2024-03-a-01-04", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your outreach efforts?", + "answer": { "entry": null } + }, + { + "id": "2024-03-a-01-05", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ] + } + ], + "title": "Program Outreach" + }, + { + "id": "2024-03-b", + "text": "Substitution of coverage (also known as crowd-out) occurs when someone with private insurance drops their private coverage and substitutes it with publicly funded insurance such as CHIP.", + "type": "subsection", + "parts": [ + { + "id": "2024-03-b-01", + "type": "part", + "questions": [ + { + "id": "2024-03-b-01-01", + "type": "radio", + "label": "Do you track the number of CHIP enrollees who have access to private insurance?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } + ] + }, + "questions": [ + { + "id": "2024-03-b-01-01-a", + "type": "text_multiline", + "label": "What percent of CHIP enrollees had access to private insurance at the time of application?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-b-01-01 is no, N/A, or unanswered; noninteractive: hide if that's no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-b-01-01')].answer.entry", + "values": { + "interactive": [null, "no", "na"], + "noninteractive": ["no", "na"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-b-01-02", + "type": "radio", + "label": "Do you match prospective CHIP enrollees to a database that details private insurance status?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } + ] + }, + "questions": [ + { + "id": "2024-03-b-01-02-a", + "type": "text_multiline", + "label": "Which database do you use?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-b-01-02 is no, N/A, or unanswered; noninteractive: hide if that's no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-b-01-02')].answer.entry", + "values": { + "interactive": [null, "no", "na"], + "noninteractive": ["no", "na"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-b-01-03", + "type": "percentage", + "label": "What percent of applicants screened for CHIP eligibility cannot be enrolled because they have group health plan coverage?", + "answer": { "entry": null } + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-b-01-04", + "type": "radio", + "label": "Does the state implement a waiting period in its separate CHIP?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-b-01-04-a", + "type": "text_multiline", + "label": "How long is the waiting period?", + "answer": { "entry": null } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if the answer to 2024-03-b-01-04 is no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-b-01-04')].answer.entry", + "values": { + "interactive": ["no", "na", null], + "noninteractive": ["no", "na"] + } + } + } + } + }, + { + "id": "2024-03-b-01-04-b", + "type": "text_multiline", + "label": "Which populations does the waiting period apply to? (Include the FPL for each group.)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if the answer to 2024-03-b-01-04 is no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-b-01-04')].answer.entry", + "values": { + "interactive": ["no", "na", null], + "noninteractive": ["no", "na"] + } + } + } + } + }, + { + "id": "2024-03-b-01-04-c", + "type": "text_multiline", + "label": "What exemptions apply to the waiting period?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if the answer to 2024-03-b-01-04 is no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-b-01-04')].answer.entry", + "values": { + "interactive": ["no", "na", null], + "noninteractive": ["no", "na"] + } + } + } + } + }, + { + "id": "2024-03-b-01-04-d", + "type": "text_multiline", + "label": "What percent of individuals subject to the waiting period meet a state or federal exemption?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if the answer to 2024-03-b-01-04 is no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-b-01-04')].answer.entry", + "values": { + "interactive": ["no", "na", null], + "noninteractive": ["no", "na"] + } + } + } + } + } + ], + "context_data": { + "skip_text": "This section only applies to states with a separate CHIP program. Skip to the next question.", + "show_if_state_program_type_in": [ + "separate_chip", + "combo" + ] + } + } + ] + }, + { + "id": "2024-03-b-01-05", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about substitution of coverage that wasn’t already covered? Did you run into any limitations when collecting these data?", + "answer": { "entry": null } + }, + { + "id": "2024-03-b-01-06", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ] + } + ], + "title": "Substitution of Coverage" + }, + { + "id": "2024-03-c", + "text": "", + "type": "subsection", + "parts": [ + { + "id": "2024-03-c-01", + "type": "part", + "title": "Eligibility Renewal and Retention", + "questions": [ + { + "id": "2024-03-c-01-01", + "type": "radio", + "label": "Does your state provide presumptive eligibility, allowing children to access CHIP services pending a final determination of eligibility?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-c-01-01-a", + "type": "percentage", + "label": "What percent of children are presumptively enrolled in CHIP pending a full eligibility determination?", + "answer": { "entry": null } + }, + { + "id": "2024-03-c-01-01-b", + "type": "percentage", + "label": "Of the children who are presumptively enrolled, what percent are determined fully eligible and enrolled in the program (upon completion of the full eligibility determination)?", + "answer": { "entry": null } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide these two subquestions if the answer to 2024-03-c-01-01 is no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-c-01-01')].answer.entry", + "values": { + "interactive": ["no", "na", null], + "noninteractive": ["no", "na"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-c-01-02", + "type": "radio", + "label": "In an effort to retain children in CHIP, do you conduct follow-up communication with families through caseworkers and outreach workers?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "id": "2024-03-c-01-03", + "type": "radio", + "label": "Do you send renewal reminder notices to families?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-c-01-03-a", + "type": "text", + "label": "How many notices do you send to families before disenrolling a child from the program?", + "answer": { "entry": null } + }, + { + "id": "2024-03-c-01-03-b", + "type": "text", + "label": "How many days before the end of the eligibility period did you send reminder notices to families?", + "answer": { "entry": null } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide these two subquestions if the answer to 2024-03-c-01-03 is no or N/A.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-c-01-03')].answer.entry", + "values": { + "interactive": ["no", null], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-c-01-04", + "type": "text_multiline", + "label": "What else have you done to simplify the eligibility renewal process for families?", + "answer": { "entry": null } + }, + { + "id": "2024-03-c-01-05", + "type": "text_multiline", + "label": "Which retention strategies have you found to be most effective?", + "answer": { "entry": null } + }, + { + "id": "2024-03-c-01-06", + "type": "text_multiline", + "label": "How do you measure the effectiveness of your retention strategies? What data sources and methodology do you use to track retention?", + "answer": { "entry": null } + }, + { + "id": "2024-03-c-01-07", + "type": "text_multiline", + "label": "Is there anything else you’d like to add that wasn’t already covered?", + "answer": { "entry": null } + } + ] + }, + { + "id": "2024-03-c-02", + "type": "part", + "title": "CHIP Eligibility Denials (Not Redetermination)", + "questions": [ + { + "id": "2024-03-c-02-01", + "hint": "Don’t include applicants who are being considered for redetermination — these data will be collected in Part 3. \n\nPlease note: numbers reported in questions 2-4 of this part are a subset of the total reported in question 1. Therefore, the totals reported in questions 2-4 should be smaller than the number reported in question 1.", + "type": "integer", + "label": "How many applicants were denied CHIP coverage in FFY 2024? This number should be equal to the total of reported numbers for questions 2-4 below.", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-02-02", + "hint": "For example: They were denied because of an incomplete application, missing documentation, or a missing enrollment fee.", + "type": "integer", + "label": "How many applicants were denied CHIP coverage for procedural reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-02-03", + "hint": "For example: They were denied because their income was too high or too low, they were determined eligible for Medicaid instead, or they had other coverage available.", + "type": "integer", + "label": "How many applicants were denied CHIP coverage for eligibility reasons?", + "answer": { "entry": null }, + "questions": [ + { + "id": "2024-03-c-02-03-a", + "hint": "Please note this is a subset of the number reported for question 3, and that a smaller number should be reported here than the total provided in response to question 3.", + "type": "integer", + "label": "How many applicants were denied CHIP (Title XXI) coverage and determined eligible for Medicaid (Title XIX) instead?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-02-04", + "type": "integer", + "label": "How many applicants were denied CHIP coverage for other reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-02-05", + "type": "text_multiline", + "label": "Did you have any limitations in collecting these data?", + "answer": { "entry": null } + }, + { + "hint": "This table is auto-populated with the data you entered above.", + "type": "fieldset", + "label": "Table: CHIP Eligibility Denials (Not Redetermination)", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { "contents": "Total denials" }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-01')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-01')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-02-01')].answer.entry" + ] + } + ], + [ + { "contents": "Denied for procedural reasons" }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-02')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-02')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-02-01')].answer.entry" + ] + } + ], + [ + { "contents": "Denied for eligibility reasons" }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-03')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-03')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-02-01')].answer.entry" + ] + } + ], + [ + { "contents": "Denials for other reasons" }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-04')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-02-04')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-02-01')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "mask": "lessThanEleven", "contents": "Number" }, + { "contents": "Percent" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "id": "2024-03-c-03", + "text": "Redetermination is the process of redetermining whether a child is eligible to renew in CHIP (Title XXI) every 12 months. This section doesn’t apply to any mid-year changes in circumstances that may affect eligibility (for example: no longer a resident of the state, or aging out of the program).", + "type": "part", + "title": "Redetermination in CHIP", + "questions": [ + { + "id": "2024-03-c-03-01", + "type": "integer", + "label": "How many children were eligible for redetermination in CHIP in FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-03-02", + "type": "integer", + "label": "Of the eligible children, how many were then screened for redetermination?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-03-03", + "type": "integer", + "label": "How many children were retained in CHIP after redetermination?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-03-04", + "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", + "type": "integer", + "label": "How many children were disenrolled in CHIP after the redetermination process?", + "answer": { "entry": null }, + "questions": [ + { + "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", + "type": "fieldset", + "questions": [], + "fieldset_info": { + "mask": "lessThanEleven", + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-04-c')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-03-04-a", + "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", + "type": "integer", + "label": "How many children were disenrolled for procedural reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-03-04-b", + "hint": "This could be due to income that was too high or too low, eligibility in Medicaid (Title XIX) instead, or access to private coverage.", + "type": "integer", + "label": "How many children were disenrolled for eligibility reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-03-04-c", + "type": "integer", + "label": "How many children were disenrolled for other reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-03-05", + "type": "text_multiline", + "label": "Did you have any limitations in collecting these data?", + "answer": { "entry": null } + }, + { + "hint": "These tables are auto-populated with the data you entered above.", + "type": "fieldset", + "label": "Table: Redetermination in CHIP ", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "contents": "Children screened for redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-02')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-02')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-02')].answer.entry" + ] + } + ], + [ + { + "contents": "Children retained after redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-03')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-03')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-02')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled after redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-02')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "mask": "lessThanEleven", "contents": "Number" }, + { "contents": "Percent" } + ] + }, + "fieldset_type": "synthesized_table" + }, + { + "type": "fieldset", + "label": "Table: Disenrollment in CHIP after Redetermination", + "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "contents": "Children disenrolled after redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled for procedural reasons" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-a')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled for eligibility reasons" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-b')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled for other reasons" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-c')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-03-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-03-04')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "mask": "lessThanEleven", "contents": "Number" }, + { "contents": "Percent" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "id": "2024-03-c-04", + "text": "Redetermination is the process of redetermining whether a child is eligible to renew in Medicaid (Title XIX) every 12 months. This section doesn’t apply to any mid-year changes in circumstances that may affect eligibility (such as no longer being a resident of the state, or aging out of the program).", + "type": "part", + "title": "Redetermination in Medicaid", + "questions": [ + { + "id": "2024-03-c-04-01", + "type": "integer", + "label": "How many children were eligible for redetermination in Medicaid in FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-04-02", + "type": "integer", + "label": "Of the eligible children, how many were then screened for redetermination?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-04-03", + "type": "integer", + "label": "How many children were retained in Medicaid after redetermination?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-04-04", + "hint": "This number should be equal to the total of 4a, 4b, and 4c below.", + "type": "integer", + "label": "How many children were disenrolled in Medicaid after the redetermination process?", + "answer": { "entry": null }, + "questions": [ + { + "hint": "The answer to 4 should be equal to the sum of a, b, and c below: ", + "type": "fieldset", + "questions": [], + "fieldset_info": { + "mask": "lessThanEleven", + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-04-c')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-04-04-a", + "hint": "This could be due to an incomplete application, missing documentation, or a missing enrollment fee.", + "type": "integer", + "label": "How many children were disenrolled for procedural reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-04-04-b", + "hint": "This could be due to an income that was too high and/or eligibility in CHIP instead.", + "type": "integer", + "label": "How many children were disenrolled for eligibility reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-04-04-c", + "type": "integer", + "label": "How many children were disenrolled for other reasons?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-04-05", + "type": "text_multiline", + "label": "Did you have any limitations in collecting these data?", + "answer": { "entry": null } + }, + { + "hint": "These tables are auto-populated with the data you entered above.", + "type": "fieldset", + "label": "Table: Redetermination in Medicaid ", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "contents": "Children screened for redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-02')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-02')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-02')].answer.entry" + ] + } + ], + [ + { + "contents": "Children retained after redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-03')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-03')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-02')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled after redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-02')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "mask": "lessThanEleven", "contents": "Number" }, + { "contents": "Percent" } + ] + }, + "fieldset_type": "synthesized_table" + }, + { + "type": "fieldset", + "label": "Table: Disenrollment in Medicaid after Redetermination", + "comment": "This is assuming that we make the user manually enter the answer to question 4; otherwise we don't currently have a way to support this functionality; see the comment on question 4 above.", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "contents": "Children disenrolled after redetermination" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled for procedural reasons" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-a')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled for eligibility reasons" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-b')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry" + ] + } + ], + [ + { + "contents": "Children disenrolled for other reasons" + }, + { + "mask": "lessThanEleven", + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-c')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-04-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-04-04')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "mask": "lessThanEleven", "contents": "Number" }, + { "contents": "Percent" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "id": "2024-03-c-05", + "text": "Tracking a cohort of children enrolled in CHIP (Title XXI) will indicate how long a specific group of children stays enrolled over an 18-month period. This information is required by Section 402(a) of CHIPRA. \n\nTo track your cohort, identify a group of children ages 0 to 16 years who are newly enrolled in CHIP and/or Medicaid as of January through March 2024 (the second quarter of FFY 2024). Children in this cohort must be 16 years and 0 months or younger when they enroll to ensure they don't age out of the program by the end of the 18-month tracking period. \n\nYou’ll identify a new cohort every two years. This year you’ll start a new cohort and report on the number of children at the start of the cohort (Jan–Mar 2024) and six months later (July–Sept 2024). In the FFY 2025 report next year, you’ll report on the same cohort at 12 months (Jan–Mar 2025) and 18 months later (July–Sept 2025). If the data are unknown or unavailable, leave it blank — don’t enter a zero unless these data are known to be zero.", + "type": "part", + "title": "Tracking a CHIP cohort over 18 months", + "questions": [ + { + "hint": "Children should be in age groups based on their age at the start of the cohort, when they’re identified as newly enrolled in January, February, or March of 2024. For example, if a child is four years old at the start of the cohort, they should continue to be reported in the “ages 1-5” group at 6 months, 12 months, and 18 months later as well.\n\nThe oldest children in the cohort must be no older than 16 years (and 0 months) to ensure they don’t age out of the program at the end of the 18-month tracking period. That means children in the “ages 13-16” group who are newly enrolled in January 2024 must be born after January 2008. Similarly, children who are newly enrolled in February 2024 must be born after February 2008, and children newly enrolled in March 2024 must be born after March 2008.", + "type": "fieldset", + "label": "Helpful hints on age groups", + "questions": [] + }, + { + "id": "2024-03-c-05-01", + "type": "radio", + "label": "How does your state define “newly enrolled” for this cohort?", + "answer": { + "entry": null, + "options": [ + { + "label": "Newly enrolled in CHIP: Children in this cohort weren’t enrolled in CHIP (Title XXI) during the previous month. For example: Newly enrolled children in January 2024 weren’t enrolled in CHIP in December 2023.", + "value": "new_in_chip" + }, + { + "label": "Newly enrolled in CHIP and Medicaid: Children in this cohort weren’t enrolled in CHIP (Title XXI) or Medicaid (Title XIX) during the previous month. For example: Newly enrolled children in January 2024 weren’t enrolled in CHIP or Medicaid in December 2023.", + "value": "new_in_chip_and_medicaid" + } + ] + } + }, + { + "id": "2024-03-c-05-02", + "hint": "If not, you’ll report the total number for all age groups (0-16 years) instead.", + "type": "radio", + "label": "Do you have data for individual age groups?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "type": "fieldset", + "label": "January - March 2024 (start of the cohort): to be completed this year", + "questions": [] + }, + { + "type": "fieldset", + "label": "How many children were newly enrolled in CHIP between January and March 2024?", + "questions": [ + { + "id": "2024-03-c-05-03-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-03-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-03-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-03-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-03-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-03-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-03-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-03" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "July - September 2024 (6 months later): to be completed this year", + "questions": [] + }, + { + "hint": "Only include children that didn’t have a break in coverage during the six-month period.", + "type": "fieldset", + "label": "How many children were continuously enrolled in CHIP six months later?", + "questions": [ + { + "id": "2024-03-c-05-04-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-04-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-04-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-04-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-04-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-04-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-04-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-04" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP six months later?", + "questions": [ + { + "id": "2024-03-c-05-05-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-05-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-05-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-05-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-05-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-05-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-05-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-05" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2024-03-c-05-06-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-06-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-06-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-06-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-06-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-06-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-06-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-06" }, + "fieldset_type": "marked" + }, + { + "hint": "Possible reasons for no longer being enrolled:\n• Transferred to another health insurance program other than CHIP\n• Didn’t meet eligibility criteria anymore\n• Didn’t complete documentation\n• Didn’t pay a premium or enrollment fee", + "type": "fieldset", + "label": "How many children were no longer enrolled in CHIP six months later?", + "questions": [ + { + "id": "2024-03-c-05-07-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-07-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-07-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-07-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-07-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-07-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-07-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-07-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-07-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-07" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid six months later?", + "questions": [ + { + "id": "2024-03-c-05-08-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-08-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-08-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-08-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-08-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-08-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-08-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-08-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-08-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-08" }, + "fieldset_type": "marked" + }, + { + "id": "2024-03-c-05-09", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your data?", + "answer": { "entry": null } + }, + { + "hint": "This year, please report data about your cohort for this section.", + "type": "fieldset", + "label": "January - March 2025 (12 months later): to be completed next year.", + "questions": [] + }, + { + "hint": "Only include children that didn’t have a break in coverage during the 12-month period.", + "type": "fieldset", + "label": "How many children were continuously enrolled in CHIP 12 months later?", + "questions": [ + { + "id": "2024-03-c-05-10-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-10-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-10-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-10-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-10-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-10-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-10-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-10-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-10-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-10" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 12 months later?", + "questions": [ + { + "id": "2024-03-c-05-11-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-11-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-11-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-11-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-11" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2024-03-c-05-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-12-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-12-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-12-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-12-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-12-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-12-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-12-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-12-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-12" }, + "fieldset_type": "marked" + }, + { + "hint": "Possible reasons for not being enrolled:\n• Transferred to another health insurance program other than CHIP\n• Didn’t meet eligibility criteria anymore\n• Didn’t complete documentation\n• Didn’t pay a premium or enrollment fee", + "type": "fieldset", + "label": "How many children were no longer enrolled in CHIP 12 months later?", + "questions": [ + { + "id": "2024-03-c-05-13-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-13-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-13-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-13-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-13-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-13-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-13-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-13-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-13-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-13" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 12 months later?", + "questions": [ + { + "id": "2024-03-c-05-14-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-14-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-14-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-14-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-14-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-14-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-14-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-14-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-14-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-14" }, + "fieldset_type": "marked" + }, + { + "hint": "This year, please report data about your cohort for this section.", + "type": "fieldset", + "label": "July - September of 2025 (18 months later): to be completed next year.", + "questions": [] + }, + { + "hint": "Only include children that didn’t have a break in coverage during the 18-month period.", + "type": "fieldset", + "label": "How many children were continuously enrolled in CHIP 18 months later?", + "questions": [ + { + "id": "2024-03-c-05-15-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-15-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-15-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-15-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-15-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-15-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-15-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-15-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-15-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-15" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children had a break in CHIP coverage but were re-enrolled in CHIP 18 months later?", + "questions": [ + { + "id": "2024-03-c-05-16-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-16-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-16-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-16-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-16-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-16-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-16-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-16-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-16-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-16" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in CHIP coverage (in the previous question), how many were enrolled in Medicaid during the break?", + "questions": [ + { + "id": "2024-03-c-05-17-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-17-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-17-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-17-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-17-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-17-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-17-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-17-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-17-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-17" }, + "fieldset_type": "marked" + }, + { + "hint": "Possible reasons for not being enrolled:\n• Transferred to another health insurance program other than CHIP\n• Didn’t meet eligibility criteria anymore\n• Didn’t complete documentation\n• Didn’t pay a premium or enrollment fee", + "type": "fieldset", + "label": "How many children were no longer enrolled in CHIP 18 months later?", + "questions": [ + { + "id": "2024-03-c-05-18-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-18-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-18-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-18-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-18-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-18-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-18-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-18-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-18-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-18" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who were no longer enrolled in CHIP (in the previous question), how many were enrolled in Medicaid 18 months later?", + "questions": [ + { + "id": "2024-03-c-05-19-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-05-19-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-19-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-19-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-05-19-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-05-19-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-19-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-19-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-05-19-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-05-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-05-19" }, + "fieldset_type": "marked" + }, + { + "id": "2024-03-c-05-20", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your data?", + "answer": { "entry": null } + } + ] + }, + { + "id": "2024-03-c-06", + "text": "Tracking a cohort of children enrolled in Medicaid (Title XIX) will indicate how long a specific group of children stays enrolled over an 18-month period. This information is required by Section 402(a) of CHIPRA. \n\nTo track your cohort, identify a group of children ages 0 to 16 years, who are newly enrolled in Medicaid and/or CHIP as of January through March 2024 (the second quarter of FFY 2024). Children in this cohort must be 16 years and 0 months or younger when they enroll to ensure they don’t age out of the program by the end of the 18-month tracking period. \n\nYou’ll identify a new cohort every two years. This year you’ll start a new cohort and report on the number of children at the start of the cohort (Jan–Mar 2024) and six months later (July–Sept 2024). In the FFY 2025 report next year, you’ll report on the same cohort at 12 months (Jan–Mar 2025) and 18 months later (July–Sept 2025). If data are unknown or unavailable, leave it blank — don’t enter a zero unless these data are known to be zero.", + "type": "part", + "title": "Tracking a Medicaid Cohort over 18 months", + "questions": [ + { + "hint": "Children should be in age groups based on their age at the start of the cohort, when they’re identified as newly enrolled in January, February, or March of 2024. For example, if a child is four years old at the start of the cohort, they should continue to be reported in the “ages 1-5” group at 6 months, 12 months, and 18 months later.\n\nThe oldest children in the cohort must be no older than 16 years (and 0 months) to ensure they don’t age out of the program at the end of the 18-month tracking period. That means children in the “ages 13–16” group who are newly enrolled in January 2024 must be born after January 2008. Similarly, children who are newly enrolled in February 2024 must be born after February 2008, and children newly enrolled in March 2024 must be born after March 2008.", + "type": "fieldset", + "label": "Helpful hints on age groups", + "questions": [] + }, + { + "id": "2024-03-c-06-01", + "type": "radio", + "label": "How does your state define “newly enrolled” for this cohort?", + "answer": { + "entry": null, + "options": [ + { + "label": "Newly enrolled in Medicaid: Children in this cohort weren’t enrolled in Medicaid (Title XIX) during the previous month. For example: Newly enrolled children in January 2024 weren’t enrolled in Medicaid in December 2023.", + "value": "new_in_medicaid" + }, + { + "label": "Newly enrolled in CHIP and Medicaid: Children in this cohort weren’t enrolled in CHIP (Title XXI) or Medicaid (Title XIX) during the previous month. For example: Newly enrolled children in January 2024 weren’t enrolled in CHIP or Medicaid in December 2023.", + "value": "new_in_chip_and_medicaid" + } + ] + } + }, + { + "id": "2024-03-c-06-02", + "hint": "If not, you’ll report the total number for all age groups (0-16 years) instead.", + "type": "radio", + "label": "Do you have data for individual age groups?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "type": "fieldset", + "label": "January - March 2024 (start of the cohort): to be completed this year.", + "questions": [] + }, + { + "type": "fieldset", + "label": "How many children were newly enrolled in Medicaid between January and March 2024?", + "questions": [ + { + "id": "2024-03-c-06-03-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-03-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-03-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-03-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-03-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-03-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-03-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-03" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "July - September 2024 (6 months later): to be completed this year.", + "questions": [] + }, + { + "hint": "Only include children that didn’t have a break in coverage during the six-month period. ", + "type": "fieldset", + "label": "How many children were continuously enrolled in Medicaid six months later?", + "questions": [ + { + "id": "2024-03-c-06-04-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-04-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-04-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-04-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-04-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-04-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-04-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-04" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid six months later?", + "questions": [ + { + "id": "2024-03-c-06-05-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-05-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-05-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-05-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-05-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-05-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-05-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-05" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", + "questions": [ + { + "id": "2024-03-c-06-06-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-06-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-06-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-06-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-06-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-06-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-06-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-06" }, + "fieldset_type": "marked" + }, + { + "hint": "Possible reasons for no longer being enrolled:\n• Transferred to another health insurance program other than Medicaid\n• Didn’t meet eligibility criteria anymore\n• Didn’t complete documentation\n• Didn’t pay a premium or enrollment fee", + "type": "fieldset", + "label": "How many children were no longer enrolled in Medicaid six months later?", + "questions": [ + { + "id": "2024-03-c-06-07-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-07-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-07-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-07-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-07-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-07-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-07-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-07-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-07-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-07" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP six months later?", + "questions": [ + { + "id": "2024-03-c-06-08-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-08-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-08-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-08-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-08-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-08-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-08-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-08-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-08-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-08" }, + "fieldset_type": "marked" + }, + { + "id": "2024-03-c-06-09", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your data?", + "answer": { "entry": null } + }, + { + "hint": "This year, please report data about your cohort for this section.", + "type": "fieldset", + "label": "January - March 2025 (12 months later): to be completed next year.", + "questions": [] + }, + { + "hint": "Only include children that didn’t have a break in coverage during the 12-month period.", + "type": "fieldset", + "label": "How many children were continuously enrolled in Medicaid 12 months later?", + "questions": [ + { + "id": "2024-03-c-06-10-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-10-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-10-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-10-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-10-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-10-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-10-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-10-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-10-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-10" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 12 months later?", + "questions": [ + { + "id": "2024-03-c-06-11-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-11-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-11-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-11-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-11-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-11-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-11-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-11-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-11-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-11" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", + "questions": [ + { + "id": "2024-03-c-06-12-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-12-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-12-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-12-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-12-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-12-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-12-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-12-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-12-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-12" }, + "fieldset_type": "marked" + }, + { + "hint": "Possible reasons for not being enrolled:\n• Transferred to another health insurance program other than Medicaid\n• Didn’t meet eligibility criteria anymore\n• Didn’t complete documentation\n• Didn’t pay a premium or enrollment fee", + "type": "fieldset", + "label": "How many children were no longer enrolled in Medicaid 12 months later?", + "questions": [ + { + "id": "2024-03-c-06-13-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-13-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-13-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-13-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-13-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-13-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-13-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-13-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-13-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-13" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 12 months later?", + "questions": [ + { + "id": "2024-03-c-06-14-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-14-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-14-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-14-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-14-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-14-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-14-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-14-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-14-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-14" }, + "fieldset_type": "marked" + }, + { + "hint": "This year, please report data about your cohort for this section.", + "type": "fieldset", + "label": "July - September of 2025 (18 months later): to be completed next year", + "questions": [] + }, + { + "hint": "Only include children that didn’t have a break in coverage during the 18-month period.", + "type": "fieldset", + "label": "How many children were continuously enrolled in Medicaid 18 months later?", + "questions": [ + { + "id": "2024-03-c-06-15-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-15-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-15-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-15-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-15-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-15-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-15-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-15-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-15-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-15" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children had a break in Medicaid coverage but were re-enrolled in Medicaid 18 months later?", + "questions": [ + { + "id": "2024-03-c-06-16-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-16-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-16-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-16-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-16-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-16-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-16-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-16-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-16-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-16" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who had a break in Medicaid coverage (in the previous question), how many were enrolled in CHIP during the break?", + "questions": [ + { + "id": "2024-03-c-06-17-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-17-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-17-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-17-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-17-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-17-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-17-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-17-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-17-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-17" }, + "fieldset_type": "marked" + }, + { + "hint": "Possible reasons for not being enrolled:\n• Transferred to another health insurance program other than Medicaid\n• Didn’t meet eligibility criteria anymore\n• Didn’t complete documentation\n• Didn’t pay a premium or enrollment fee", + "type": "fieldset", + "label": "How many children were no longer enrolled in Medicaid 18 months later?", + "questions": [ + { + "id": "2024-03-c-06-18-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-18-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-18-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-18-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-18-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-18-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-18-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-18-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-18-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-18" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "Of the children who were no longer enrolled in Medicaid (in the previous question), how many were enrolled in CHIP 18 months later?", + "questions": [ + { + "id": "2024-03-c-06-19-a", + "type": "integer", + "label": "Total for all ages (0-16)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-16)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-c-06-19-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-19-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-19-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-c-06-19-e')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-c-06-19-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-19-c", + "type": "integer", + "label": "Ages 1-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-19-d", + "type": "integer", + "label": "Ages 6-12", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-c-06-19-e", + "type": "integer", + "label": "Ages 13-16", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-c-06-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-c-06-19" }, + "fieldset_type": "marked" + }, + { + "id": "2024-03-c-06-20", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your data?", + "answer": { "entry": null } + } + ] + } + ], + "title": "Renewal, Denials, and Retention" + }, + { + "id": "2024-03-d", + "text": "States can choose to require cost sharing in their CHIP program. Cost sharing includes payments such as enrollment fees, premiums, deductibles, coinsurance, and copayments.", + "type": "subsection", + "parts": [ + { + "id": "2024-03-d-01", + "type": "part", + "questions": [ + { + "id": "2024-03-d-01-01", + "type": "radio", + "label": "Does your state require cost sharing?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-d-01-02", + "type": "radio", + "label": "Who tracks cost sharing to ensure families don’t pay more than the 5% aggregate household income in a year?", + "answer": { + "entry": null, + "options": [ + { + "label": "Families (“the shoebox method”)", + "value": "families" + }, + { + "label": "Health plans", + "value": "health_plans" + }, + { "label": "States", "value": "states" }, + { + "label": "Third party administrator", + "value": "third_party_administrator" + }, + { "label": "Other ", "value": "other" } + ] + }, + "questions": [ + { + "id": "2024-03-d-01-02-a", + "type": "text_multiline", + "label": "What information or tools do you provide families with so they can track cost sharing?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-d-01-02 is anything except families; noninteractive: same.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-d-01-02')].answer.entry", + "values": { + "interactive": [ + "health_plans", + "states", + "third_party_administrator", + "other" + ], + "noninteractive": [ + "health_plans", + "states", + "third_party_administrator", + "other" + ] + } + }, + "skip_text": "Question 2a was skipped due to your answer to question 2." + } + } + }, + { + "id": "2024-03-d-01-02-b", + "type": "text_multiline", + "label": "Who tracks cost sharing?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-d-01-02 is anything except other; noninteractive: same.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-d-01-02')].answer.entry", + "values": { + "interactive": [ + "health_plans", + "states", + "third_party_administrator", + "families" + ], + "noninteractive": [ + "health_plans", + "states", + "third_party_administrator", + "families" + ] + } + } + } + } + } + ] + }, + { + "id": "2024-03-d-01-03", + "type": "text_multiline", + "label": "How are healthcare providers notified that they shouldn’t charge families once families have reached the 5% cap?", + "answer": { "entry": null } + }, + { + "id": "2024-03-d-01-04", + "type": "text_multiline", + "label": "Approximately how many families exceeded the 5% cap in the last federal fiscal year?", + "answer": { "entry": null } + }, + { + "id": "2024-03-d-01-05", + "type": "radio", + "label": "Have you assessed the effects of charging premiums and enrollment fees on whether eligible families enroll in CHIP?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-d-01-05-a", + "type": "text_multiline", + "label": "What did you find in your assessment?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-d-01-05 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-d-01-05')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-d-01-06", + "type": "radio", + "label": "Have you assessed the effects of charging copayments and other out-of-pocket fees on whether enrolled families use CHIP services?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-d-01-06-a", + "type": "text_multiline", + "label": "What did you find in your assessment?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-d-01-06 is no or unanswered; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-d-01-06')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-d-01-07", + "type": "text_multiline", + "label": "You indicated in Section 1 that you changed your cost sharing requirements in the past federal fiscal year. How are you monitoring the impact of these changes on whether families apply, enroll, disenroll, and use CHIP health services? What have you found when monitoring the impact?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-01-a-04-08", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-01-a-04-08')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + }, + "skip_text": "Hidden based on your answer to the cost sharing questions in Section 1 Part 4." + }, + "interactive_conditional": "In addition to hiding this question if 2024-03-d-01-01 is no, this should also hide if 2024-01-a-04-08 is no", + "noninteractive_conditional": "See interactive conditional." + } + }, + { + "id": "2024-03-d-01-08", + "type": "text_multiline", + "label": "Is there anything else you’d like to add that wasn’t already covered?", + "answer": { "entry": null } + }, + { + "id": "2024-03-d-01-09", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-d-01-01 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-d-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + }, + "skip_text": "This section doesn’t apply to your state. Please skip to the next section." + } + } + } + ], + "context_data": { + "skip_text": "This section only applies to states with a separate CHIP program. Skip to the next section.", + "show_if_state_program_type_in": ["separate_chip", "combo"] + } + } + ], + "title": "Cost Sharing (Out-of-Pocket Costs)" + }, + { + "id": "2024-03-e", + "text": "States with a premium assistance program can use CHIP funds to purchase coverage through employer sponsored insurance (ESI) on behalf of eligible children and parents.", + "type": "subsection", + "parts": [ + { + "id": "2024-03-e-01", + "type": "part", + "questions": [ + { + "id": "2024-03-e-01-01", + "type": "radio", + "label": "Does your state offer ESI including a premium assistance program under the CHIP State Plan or a Section 1115 Title XXI demonstration?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + } + ] + }, + { + "id": "2024-03-e-02", + "type": "part", + "questions": [ + { + "id": "2024-03-e-02-01", + "hint": "Check all that apply.", + "type": "checkbox", + "label": "Under which authority and statutes does your state offer premium assistance?", + "answer": { + "entry": null, + "options": [ + { + "label": "Purchase of Family Coverage under CHIP State Plan [2105(c)(3)]", + "value": "2105(c)(3)" + }, + { + "label": "Additional Premium Assistance Option under CHIP State Plan [2105(c)(10)]", + "value": "2105(c)(10)" + }, + { + "label": "Section 1115 Demonstration (Title XXI)", + "value": "title_xxi" + } + ] + } + }, + { + "id": "2024-03-e-02-02", + "type": "radio", + "label": "Does your premium assistance program include coverage for adults?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "id": "2024-03-e-02-03", + "hint": "This only applies to states operating an 1115 demo.", + "type": "text_multiline", + "label": "What benefit package is offered as part of your premium assistance program, including any applicable minimum coverage requirements?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-04", + "hint": "This only applies to states operating an 1115 demo.", + "type": "radio", + "label": "Does your premium assistance program provide wrap-around coverage for gaps in coverage?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "id": "2024-03-e-02-05", + "hint": "This only applies to states operating an 1115 demo.", + "type": "radio", + "label": "Does your premium assistance program meet the same cost sharing requirements as that of the CHIP program?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } + ] + } + }, + { + "id": "2024-03-e-02-06", + "hint": "This only applies to states operating an 1115 demo.", + "type": "radio", + "label": "Are there protections on cost sharing for children (such as the 5% out-of-pocket maximum) in your premium assistance program?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-e-02-06-a", + "type": "text_multiline", + "label": "How do you track cost sharing to ensure families don’t pay more than 5% of the aggregate household income in a year?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-e-02-06 is unanswered or no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-e-02-06')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-e-02-07", + "type": "integer", + "label": "How many children were enrolled in the premium assistance program on average each month in FFY 2024?", + "answer": { "entry": null } + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-e-02-08", + "type": "money", + "label": "What’s the average monthly contribution the state pays towards coverage of a child?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-09", + "type": "text", + "label": "What’s the average monthly contribution the employer pays towards coverage of a child?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-10", + "type": "text", + "label": "What’s the average monthly contribution the employee pays towards coverage of a child?", + "answer": { "entry": null } + } + ] + }, + { + "type": "fieldset", + "label": "Table: Coverage breakdown", + "questions": [ + { + "type": "fieldset", + "label": "Child", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "targets": [ + "$..*[?(@ && @.id=='2024-03-e-02-08')].answer.entry" + ] + }, + { + "targets": [ + "$..*[?(@ && @.id=='2024-03-e-02-09')].answer.entry" + ] + }, + { + "targets": [ + "$..*[?(@ && @.id=='2024-03-e-02-10')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "State" }, + { "contents": "Employer" }, + { "contents": "Employee" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-e-02-11", + "type": "ranges", + "label": "What’s the range in the average monthly contribution paid by the state on behalf of a child?", + "answer": { + "entry": null, + "header": "Average Monthly Contribution", + "entry_max": 1, + "entry_min": 1, + "range_type": ["money"], + "range_categories": [["Starts at", "Ends at"]] + } + }, + { + "id": "2024-03-e-02-12", + "type": "ranges", + "label": "What’s the range in the average monthly contribution paid by the state on behalf of a parent? ", + "answer": { + "entry": null, + "header": "Average Monthly Contribution", + "entry_max": 1, + "entry_min": 1, + "range_type": ["money"], + "range_categories": [["Starts at", "Ends at"]] + } + } + ] + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-e-02-13", + "type": "ranges", + "label": "What’s the range in income levels for children who receive premium assistance (if it’s different from the range covering the general CHIP population)?", + "answer": { + "entry": null, + "header": "Federal Poverty Levels", + "entry_max": 1, + "entry_min": 1, + "range_type": ["percentage"], + "range_categories": [["Starts at", "Ends at"]] + } + } + ] + }, + { + "id": "2024-03-e-02-14", + "type": "text_multiline", + "label": "What strategies have been most effective in reducing the administrative barriers in order to provide premium assistance?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-15", + "type": "text_multiline", + "label": "What challenges did you experience with your premium assistance program in FFY 2024?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-16", + "type": "text_multiline", + "label": "What accomplishments did you experience with your premium assistance program in FFY 2024?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-17", + "type": "text_multiline", + "label": "Is there anything else you’d like to add that wasn’t already covered?", + "answer": { "entry": null } + }, + { + "id": "2024-03-e-02-18", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ], + "context_data": { + "skip_text": "Part 2 was skipped because it only applies to states that offer ESI including a premium assistance program.", + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-e-01-01 is unanswered or no; noninteractive: hide if it's no", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-e-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + } + ], + "title": "Employer Sponsored Insurance and Premium Assistance" + }, + { + "id": "2024-03-f", + "type": "subsection", + "parts": [ + { + "id": "2024-03-f-01", + "text": "States with a premium assistance program can use CHIP funds to purchase coverage through employer sponsored insurance (ESI) on behalf of eligible children and parents.", + "type": "part", + "questions": [ + { + "id": "2024-03-f-01-01", + "type": "radio", + "label": "Do you have a written plan with safeguards and procedures in place for the prevention of fraud and abuse cases?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "id": "2024-03-f-01-02", + "type": "radio", + "label": "Do you have a written plan with safeguards and procedures in place for the investigation of fraud and abuse cases? ", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "id": "2024-03-f-01-03", + "type": "radio", + "label": "Do you have a written plan with safeguards and procedures in place for the referral of fraud and abuse cases?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "id": "2024-03-f-01-04", + "type": "text_multiline", + "label": "What safeguards and procedures are in place for the prevention, investigation, and referral of fraud and abuse cases?", + "answer": { "entry": null } + }, + { + "id": "2024-03-f-01-05", + "type": "radio", + "label": "Do the managed care plans contracted by your separate CHIP program have written plans with safeguards and procedures in place?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" }, + { "label": "N/A", "value": "na" } + ] + }, + "questions": [ + { + "id": "2024-03-f-01-05-a", + "type": "text_multiline", + "label": "What safeguards and procedures do the managed care plans have in place?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-f-01-05')].answer.entry", + "values": { + "interactive": [null, "no", "na"], + "noninteractive": ["no", "na"] + }, + "comment": "Interactive: Hide if 2024-03-f-01-05 is unanswered, N/A, or no; noninteractive: hide if that's N/A or no." + } + } + } + } + ] + }, + { + "id": "2024-03-f-01-06", + "type": "integer", + "label": "How many eligibility denials have been appealed in a fair hearing in FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-f-01-07", + "type": "integer", + "label": "How many cases have been found in favor of the beneficiary in FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-f-01-08", + "type": "integer", + "label": "How many cases related to provider credentialing were investigated in FFY 2024?", + "answer": { "entry": null } + }, + { + "id": "2024-03-f-01-09", + "type": "integer", + "label": "How many cases related to provider credentialing were referred to appropriate law enforcement officials in FFY 2024?", + "answer": { "entry": null } + } + ] + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-f-01-10", + "type": "integer", + "label": "How many cases related to provider billing were investigated in FFY 2024?", + "answer": { "entry": null } + }, + { + "id": "2024-03-f-01-11", + "type": "integer", + "label": "How many cases related to provider billing were referred to appropriate law enforcement officials in FFY 2024?", + "answer": { "entry": null } + } + ] + }, + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-f-01-12", + "type": "integer", + "label": "How many cases related to beneficiary eligibility were investigated in FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-f-01-13", + "type": "integer", + "label": "How many cases related to beneficiary eligibility were referred to appropriate law enforcement officials in FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "id": "2024-03-f-01-14", + "type": "radio", + "label": "Does your data for Questions 8–13 include cases for CHIP only or for Medicaid and CHIP combined? ", + "answer": { + "entry": null, + "options": [ + { "label": "CHIP only", "value": "separate_chip_only" }, + { + "label": "Medicaid and CHIP combined", + "value": "medicaid_separate_chip_combined" + } + ] + } + }, + { + "id": "2024-03-f-01-15", + "type": "radio", + "label": "Do you rely on contractors for the prevention, investigation, and referral of fraud and abuse cases? ", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-f-01-15-a", + "type": "text_multiline", + "label": "How do you provide oversight of the contractors? ", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-f-01-15')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + }, + "comment": "Interactive: Hide if 2024-03-f-01-15 is unanswered, N/A, or no; noninteractive: hide if that's N/A or no." + } + } + } + } + ] + }, + { + "id": "2024-03-f-01-16", + "type": "radio", + "label": "Do you contract with managed care health plans and/or a third party contractor to provide this oversight? ", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-f-01-16-a", + "type": "text_multiline", + "label": "What specifically are the contractors responsible for in terms of oversight?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-f-01-16')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + }, + "comment": "Interactive: Hide if 2024-03-f-01-16 is unanswered, N/A, or no; noninteractive: hide if that's N/A or no." + } + } + } + } + ] + }, + { + "id": "2024-03-f-01-17", + "type": "text_multiline", + "label": "Is there anything else you’d like to add that wasn’t already covered?", + "answer": { "entry": null } + }, + { + "id": "2024-03-f-01-18", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ], + "context_data": { + "skip_text": "This section only applies to states with a separate CHIP program. Please skip to the next section.", + "show_if_state_program_type_in": ["separate_chip", "combo"] + } + } + ], + "title": "Program Integrity" + }, + { + "id": "2024-03-g", + "type": "subsection", + "parts": [ + { + "id": "2024-03-g-01", + "text": "Tell us about the children receiving dental benefits in your separate CHIP program. Include children who are receiving full benefits and those who are only receiving supplemental dental benefits. Include the unduplicated number of children enrolled in all types of delivery systems (managed care, PCCM, and fee-for-service).", + "type": "part", + "questions": [ + { + "hint": "Children should be in age groups based on their age on September 30th, the end of the federal fiscal year (FFY). For example, if a child turns three years old on September 15th, the child should be included in the “ages 3–5' group. Even if the child received dental services on September 1st while they were still two years old, all dental services should be counted as their age at the end of the FFY.", + "type": "fieldset", + "label": "Helpful hint on age groups", + "questions": [] + }, + { + "id": "2024-03-g-01-01", + "hint": "If not, you’ll report the total number for all age groups (0-18 years) instead.", + "type": "radio", + "label": "Do you have data for individual age groups?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "type": "fieldset", + "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2024?", + "questions": [ + { + "id": "2024-03-g-01-02-a", + "type": "integer", + "label": "Total for all ages (0-18)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-18)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-02-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-02-e')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-02-f')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-02-g')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-g-01-02-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-02-c", + "type": "integer", + "label": "Ages 1-2", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-02-d", + "type": "integer", + "label": "Ages 3-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-02-e", + "type": "integer", + "label": "Ages 6-9", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-02-f", + "type": "integer", + "label": "Ages 10-14", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-02-g", + "type": "integer", + "label": "Ages 15-18", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-g-01-02" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How many children (who were enrolled in separate CHIP for at least 90 continuous days) received at least one dental care service during FFY 2024?", + "questions": [ + { + "id": "2024-03-g-01-03-a", + "type": "integer", + "label": "Total for all ages (0-18)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-18)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-03-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-03-e')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-03-f')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-03-g')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-g-01-03-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-03-c", + "type": "integer", + "label": "Ages 1-2", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-03-d", + "type": "integer", + "label": "Ages 3-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-03-e", + "type": "integer", + "label": "Ages 6-9", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-03-f", + "type": "integer", + "label": "Ages 10-14", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-03-g", + "type": "integer", + "label": "Ages 15-18", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-g-01-03" }, + "fieldset_type": "marked" + }, + { + "hint": "The dental service must be provided by or under the supervision of a dentist as defined by HCPCS codes D0100–D9999 (or equivalent CDT codes D0100–D9999, or equivalent CPT codes) based on an unduplicated paid, unpaid, or denied claim.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", + "type": "fieldset", + "label": "Dental care service codes and definitions", + "questions": [] + }, + { + "type": "fieldset", + "label": "How many children (who were enrolled in separate CHIP for at least 90 continuous days) received at least one preventive dental care service during FFY 2024?", + "questions": [ + { + "id": "2024-03-g-01-04-a", + "type": "integer", + "label": "Total for all ages (0-18)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-18)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-04-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-04-e')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-04-f')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-04-g')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-g-01-04-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-04-c", + "type": "integer", + "label": "Ages 1-2", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-04-d", + "type": "integer", + "label": "Ages 3-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-04-e", + "type": "integer", + "label": "Ages 6-9", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-04-f", + "type": "integer", + "label": "Ages 10-14", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-04-g", + "type": "integer", + "label": "Ages 15-18", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-g-01-04" }, + "fieldset_type": "marked" + }, + { + "hint": "The dental service must be provided by or under the supervision of a dentist as defined by HCPCS codes D1000–D1999 (or equivalent CDT codes D1000–D1999, or equivalent CPT codes) based on an unduplicated paid, unpaid, or denied claim. \n\n All data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", + "type": "fieldset", + "label": "Preventive dental care service codes and definitions", + "questions": [] + }, + { + "hint": "This includes orthodontics, periodontics, implants, oral and maxillofacial surgery, and other treatments.", + "type": "fieldset", + "label": "How many children (who were enrolled in separate CHIP for at least 90 continuous days) received dental treatment services during FFY 2024?", + "questions": [ + { + "id": "2024-03-g-01-05-a", + "type": "integer", + "label": "Total for all ages (0-18)", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["yes", null], + "noninteractive": ["yes", null] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [ + { + "type": "fieldset", + "label": "Total for all ages (0-18)", + "questions": [], + "fieldset_info": { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-05-d')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-05-e')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-05-f')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-05-g')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-03-g-01-05-b", + "type": "integer", + "label": "Ages 0-1", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-05-c", + "type": "integer", + "label": "Ages 1-2", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-05-d", + "type": "integer", + "label": "Ages 3-5", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-05-e", + "type": "integer", + "label": "Ages 6-9", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-05-f", + "type": "integer", + "label": "Ages 10-14", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-g-01-05-g", + "type": "integer", + "label": "Ages 15-18", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "hide_if": { + "target": "$..[?(@ && @.id=='2024-03-g-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no", null] + } + } + } + }, + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-03-g-01-05" }, + "fieldset_type": "marked" + }, + { + "hint": "The dental service must be provided by or under the supervision of a dentist as defined by HCPCS codes D2000–D9999 (or equivalent CDT codes D2000–D9999 or equivalent CPT codes that involve periodontics, maxillofacial prosthetics, implants, oral and maxillofacial surgery, orthodontics, adjunctive general services) based on an unduplicated paid, unpaid, or denied claim.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", + "type": "fieldset", + "label": "Dental treatment service codes and definitions", + "questions": [] + }, + { + "id": "2024-03-g-01-06", + "type": "integer", + "label": "How many children in the “ages 6–9” group received a sealant on at least one permanent molar tooth during FFY 2024?", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "hint": "The sealant on a permanent molar tooth is provided by a dental professional for whom placing a sealant is within their scope of practice. It’s defined by HCPCS code D1351 (or equivalent CDT code D1351) based on an unduplicated paid, unpaid, or denied claim. Permanent molars are teeth numbered 2, 3, 14, 15, 18, 19, 30, and 31, and additionally — for states covering sealants on third molars (“wisdom teeth”) — teeth numbered 1, 16, 17, and 32.\n\nAll data should be based on the definitions in the Early and Periodic Screening, Diagnostic, and Treatment (EPSDT) Report (Form CMS-416).", + "type": "fieldset", + "label": "Sealant codes and definitions", + "questions": [] + }, + { + "id": "2024-03-g-01-07", + "type": "radio", + "label": "Do you provide supplemental dental coverage?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-03-g-01-07-a", + "type": "integer", + "label": "How many children were enrolled in supplemental dental coverage during FFY 2024?", + "answer": { "entry": null } + }, + { + "id": "2024-03-g-01-07-b", + "hint": "This is the total number for all children between 0-18 years from question 1.", + "type": "integer", + "label": "How many children were enrolled in separate CHIP for at least 90 continuous days during FFY 2024?", + "answer": { "entry": null } + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-07-a')].answer.entry" + ] + }, + { + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-07-b')].answer.entry" + ] + }, + { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-g-01-07-a')].answer.entry", + "$..*[?(@ && @.id=='2024-03-g-01-07-b')].answer.entry" + ] + } + ] + ], + "headers": [ + { + "contents": "Children enrolled in supplemental dental coverage" + }, + { + "contents": "Children enrolled in Separate CHIP" + }, + { "contents": "Percentage" } + ] + }, + "fieldset_type": "synthesized_table" + } + ], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-g-01-07 is null, or no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-g-01-07')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + }, + { + "id": "2024-03-g-01-08", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your dental benefits? If you weren’t able to provide data, let us know why.", + "answer": { "entry": null } + }, + { + "id": "2024-03-g-01-09", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ], + "context_data": { + "skip_text": "This section only applies to states with a separate CHIP program. Skip to the next section.", + "show_if_state_program_type_in": ["separate_chip", "combo"] + } + } + ], + "title": "Dental Benefits" + }, + { + "id": "2024-03-h", + "text": "Section 2108(e)(4) of the Social Security Act requires that all States annually submit survey results from the Consumer Assessment of Healthcare Providers and Systems (CAHPS). The survey assesses your CHIP program quality and customer satisfaction. Beginning with the 2024 CARTS report, the only option for reporting CAHPS results will be through the submission of raw data to the Agency for Healthcare Research and Quality (AHRQ) CAHPS Database. ", + "type": "subsection", + "parts": [ + { + "id": "2024-03-h-01", + "type": "part", + "questions": [ + { + "id": "2024-03-h-01-01", + "type": "radio", + "label": "Did you collect the CAHPS survey?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-03-h-01-01-a", + "type": "radio", + "label": "Did you submit your raw CAHPS data to the AHRQ CAHPS database? Please note this is a requirement beginning 2024 for CAHPS reporting.", + "hint": "If you did not complete the CAHPS survey, please complete Part 2.", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-h-01-01 is unanswered or no; noninteractive: hide if that's N/A or no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-h-01-01')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + } + ] + }, + { + "id": "2024-03-h-02", + "type": "part", + "title": "You didn't collect the CAHPS survey", + "questions": [ + { + "id": "2024-03-h-02-01", + "hint": "Check all that apply.", + "type": "checkbox", + "label": "Why didn't you collect the CAHPS survey?", + "answer": { + "entry": null, + "options": [ + { + "label": "Entire population wasn't included in the survey", + "value": "Entire population wasn't included in the survey" + }, + { + "label": "Part of the population wasn't included in the survey", + "value": "Part of the population wasn't included in the survey" + }, + { + "label": "Data wasn't available due to budget constraints", + "value": "Data wasn't available due to budget constraints" + }, + { + "label": "Data wasn't available due to staff constraints", + "value": "Data wasn't available due to staff constraints" + }, + { + "label": "Data wasn't consistent or accurate", + "value": "Data wasn't consistent or accurate" + }, + { + "label": "Data source wasn't easily accessible", + "value": "Data source wasn't easily accessible" + }, + { + "label": "Data source wasn't easily accessible: requires medical records", + "value": "Data source wasn't easily accessible: requires medical records" + }, + { + "label": "Data source wasn't easily accessible: requires data linkage that doesn't currently exist", + "value": "Data source wasn't easily accessible: requires data linkage that doesn't currently exist" + }, + { + "label": "Data wasn't collected by a provider", + "value": "Data wasn't collected by a provider" + }, + { + "label": "Sample size was too small", + "value": "Sample size was too small" + }, + { "label": "Other", "value": "other" } + ] + } + }, + { + "id": "2024-03-h-02-02", + "type": "text_multiline", + "label": "Explain in more detail why you weren’t able to collect the CAHPS survey.", + "answer": { "entry": null } + } + ], + "context_data": { + "skip_text": "Part 2 was skipped because it only applies to states that didn’t collect the CAHPS survey.", + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-h-01-01 is unanswered or yes; noninteractive: hide if it's yes", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-h-01-01')].answer.entry", + "values": { + "interactive": ["yes"], + "noninteractive": ["yes"] + } + } + } + } + } + ], + "title": "CAHPS Survey Results" + }, + { + "id": "2024-03-i", + "text": "All states with approved HSI program(s) should complete this section.\n\nStates can use up to 10% of the total computable amount of their fiscal year allotment to develop HSIs that provide direct services and other public health initiatives for low-income children. [See Section 2105(a)(1)(D)(ii) of the Social Security Act, 42 CFR 457.10 and 457.618.] States may only claim HSI expenditures after funding other costs to administer their CHIP State Plan.", + "type": "subsection", + "parts": [ + { + "id": "2024-03-i-01", + "title": " ", + "type": "part", + "questions": [ + { + "id": "2024-03-i-01-01", + "hint": "Even if you’re not currently operating the HSI program, if it’s in your current approved CHIP State Plan, please answer “yes.”", + "type": "radio", + "label": "Does your state operate Health Services Initiatives using CHIP (Title XXI) funds?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + } + ] + }, + { + "id": "2024-03-i-02", + "title": " ", + "text": "Please answer the following questions for all of the state's approved HSIs as listed in section 2.2 of the CHIP state plan.", + "type": "part", + "questions": [ + { + "id": "2024-03-i-02-01", + "type": "repeatables", + "addAnotherText": "Does the state have additional HSIs to report?", + "hideOptionalHint": true, + "questions": [ + { + "id": "2024-03-i-02-01-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-03-i-02-01-01-01", + "type": "text", + "label": "What is the name of your HSI program?", + "answer": { "entry": null } + }, + { + "id": "2024-03-i-02-01-01-02", + "type": "radio", + "label": "Are you currently operating the HSI program, or plan to in the future?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + } + }, + { + "type": "fieldset", + "questions": [], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + }, + "skip_text": "If you answered \"no\", please amend your CHIP State Plan to remove any references to the HSI, and you can skip the remaining questions." + } + } + }, + { + "id": "2024-03-i-02-01-01-03", + "type": "text_multiline", + "label": "Which populations does the HSI program serve?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-03-i-02-01-01-04", + "type": "integer", + "label": "How many children do you estimate are being served by the HSI program?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "id": "2024-03-i-02-01-01-05", + "type": "integer", + "label": "How many children in the HSI program are below your state's FPL threshold? ", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + }, + "mask": "lessThanEleven" + }, + { + "type": "fieldset", + "questions": [], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + }, + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-03-i-02-01-01-05')].answer.entry", + "$..*[?(@ && @.id=='2024-03-i-02-01-01-04')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "type": "fieldset", + "hint": "\n\n[Skip questions 6–8 if you're already reporting HSI metrics and outcomes to CMS through a monthly or quarterly CMS Lead HSI reporting template.]", + "label": "CARTS will auto-calculate the percent of children served by your HSI program who are below the CHIP FPL", + "questions": [], + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is null or yes; noninteractive: hide if that's null or yes.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-03-i-02-01-01-06", + "type": "text_multiline", + "label": "How do you measure the HSI program’s impact on the health of low-income children in your state? Define a metric to measure the impact. ", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-03-i-02-01-01-07", + "type": "text_multiline", + "label": "What outcomes have you found when measuring the impact?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-03-i-02-01-01-08", + "type": "text_multiline", + "label": "Is there anything else you'd like to add about this HSI program?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + }, + { + "id": "2024-03-i-02-01-01-09", + "type": "file_upload", + "label": "Optional: Attach any additional documents.", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-02-01-01-02 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-02-01-01-02')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + } + ], + "typeLabel": "HSI Program" + } + ], + "context_data": { + "skip_text": "This part only applies to states with Health Service Initiatives.", + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-03-i-01-01 is no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-03-i-01-01')].answer.entry", + "values": { + "interactive": ["no"], + "noninteractive": ["no"] + } + } + } + } + } + ], + "title": "Health Services Initiatives (HSI) Programs" + } + ] + } + } + }, + { + "year": 2024, + "sectionId": 4, + "contents": { + "section": { + "id": "2024-04", + "type": "section", + "year": 2024, + "state": null, + "title": "State Plan Strategic Objectives and Performance Goals", + "valid": null, + "ordinal": 4, + "subsections": [ + { + "id": "2024-04-a", + "type": "subsection", + "parts": [ + { + "id": "2024-04-a-01", + "text": "Please tell us about the progress you’ve made on your performance goals in the past year. The strategic objectives and performance goals you add to this section should match those reflected in section 9 of your CHIP State Plan. If the performance goals and/or strategic objectives listed in your CHIP State Plan are not currently aligned with the performance goals and strategic objectives you report in this section of CARTS, please submit a CHIP State Plan Amendment (SPA) by the end of the State fiscal year to align them.\n\nAll states must report on at least one performance goal related to Objective 1 to reduce the number of uninsured children. Please report outcomes for any additional performance goals related to Objective 1 and any other strategic objectives the state collects (for example, increasing access to care or increasing the use of preventive care). Please specify one or more performance goals for each strategic objective identified. You can add additional strategic objectives and performance goals as needed to align with your CHIP State Plan. To add additional performance goals under a strategic objective, select the “Add another Goal” button. \n\n Performance goals should be specific, measurable, attainable, relevant, and time-bound. We have provided example performance goals below. For each performance goal, please select if it is new, continuing, or a discontinued goal. All discontinued performance goals must be reported as “Discontinued goal” either for the final year that the State has collected data for the discontinued goal, or the following fiscal year but with no data reported. Please provide a brief explanation for each discontinued performance goal.", + "type": "part", + "title": "Tell us about your goals and objectives", + "questions": [ + { + "id": "2024-04-a-01-01", + "type": "objectives", + "questions": [ + { + "id": "2024-04-a-01-01-01", + "type": "objective", + "questions": [ + { + "id": "2024-04-a-01-01-01-01", + "hint": "Completing this objective is required.", + "type": "text_multiline", + "label": "What is your objective as listed in your CHIP State Plan?", + "answer": { + "entry": null, + "readonly": true, + "default_entry": "Reduce the number of uninsured children" + } + }, + { + "id": "2024-04-a-01-01-01-02", + "type": "repeatables", + "questions": [ + { + "id": "2024-04-a-01-01-01-02-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-04-a-01-01-01-02-01-01", + "hint": "For example: In an effort to reduce the number of uninsured children, our goal is to increase enrollment by 1.5% annually until the state achieves 90% enrollment of all eligible children in the CHIP program.", + "type": "text_multiline", + "label": "Briefly describe your goal.", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": null, + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2024-04-a-01-01-01-02-01-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-04-a-01-01-01-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-04-a-01-01-01-02-01-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-01-02-01-03", + "hint": "For example: The number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-01-02-01-05", + "hint": "For example: The total estimated number of children eligible for CHIP within the state in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-04-a-01-01-01-02-01-04')].answer.entry", + "$..*[?(@ && @.id=='2024-04-a-01-01-01-02-01-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-04-a-01-01-01-02-01-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-04-a-01-01-01-02-01-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2024-04-a-01-01-01-02-01-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-11", + "type": "text_multiline", + "label": "Do you plan to keep this goal in future years? If so, do you plan to maintain the same goal or change it over the next three years?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-12", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-01-02-01-13", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + } + ], + "typeLabel": "Goal" + } + ] + }, + { + "id": "2024-04-a-01-01-02", + "type": "objective", + "questions": [ + { + "id": "2024-04-a-01-01-02-01", + "hint": "You can edit the suggested objective so it matches what’s in your CHIP State Plan.", + "type": "text_multiline", + "label": "What is the next objective listed in your CHIP State Plan?", + "answer": { "entry": "Increase access to care" } + }, + { + "id": "2024-04-a-01-01-02-02", + "type": "repeatables", + "questions": [ + { + "id": "2024-04-a-01-01-02-02-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-04-a-01-01-02-02-01-01", + "hint": "For example: In an effort to increase access to care, our goal is to increase the number of children who have visited a primary care physician by 5% annually over the next five years (ending in 2029).", + "type": "text_multiline", + "label": "Briefly describe your goal as it relates to this objective.", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": null, + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2024-04-a-01-01-02-02-01-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-04-a-01-01-02-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-04-a-01-01-02-02-01-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-02-02-01-03", + "hint": "For example: The number of children of Hispanic ethnicity enrolled in CHIP who visited a primary care physician in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-02-02-01-05", + "hint": "For example: The total number of children enrolled in CHIP in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-04-a-01-01-02-02-01-04')].answer.entry", + "$..*[?(@ && @.id=='2024-04-a-01-01-02-02-01-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-04-a-01-01-02-02-01-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-04-a-01-01-02-02-01-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2024-04-a-01-01-02-02-01-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-11", + "type": "text_multiline", + "label": "Do you plan to keep this goal in future years? If so, do you plan to maintain the same goal or change it over the next three years?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-12", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-02-02-01-13", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + } + ], + "typeLabel": "Goal" + } + ] + }, + { + "id": "2024-04-a-01-01-03", + "type": "objective", + "questions": [ + { + "id": "2024-04-a-01-01-03-01", + "hint": "You can edit the suggested objective to match what’s in your CHIP State Plan.", + "type": "text_multiline", + "label": "What is the next objective listed in your CHIP State Plan?", + "answer": { + "entry": "Increase the use of preventative care" + } + }, + { + "id": "2024-04-a-01-01-03-02", + "type": "repeatables", + "questions": [ + { + "id": "2024-04-a-01-01-03-02-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-04-a-01-01-03-02-01-01", + "hint": "For example: In an effort to increase the use of preventive care in rural communities, our goal is to increase the number of rural children who receive one or more well child visits by 5% annually until relative utilization is equivalent to all other CHIP populations within the state.", + "type": "text_multiline", + "label": "Briefly describe your goal as it relates to this objective.", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": null, + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2024-04-a-01-01-03-02-01-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-04-a-01-01-03-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-04-a-01-01-03-02-01-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-03-02-01-03", + "hint": "For example: The number of rural children who received one or more well child visits in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-03-02-01-05", + "hint": "For example: The total number of rural children enrolled in CHIP.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-04-a-01-01-03-02-01-04')].answer.entry", + "$..*[?(@ && @.id=='2024-04-a-01-01-03-02-01-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-04-a-01-01-03-02-01-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-04-a-01-01-03-02-01-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2024-04-a-01-01-03-02-01-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-11", + "type": "text_multiline", + "label": "Do you plan to keep this goal in future years? If so, do you plan to maintain the same goal or change it over the next three years?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-12", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-03-02-01-13", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + } + ], + "typeLabel": "Goal" + } + ] + }, + { + "id": "2024-04-a-01-01-04", + "type": "objective", + "questions": [ + { + "id": "2024-04-a-01-01-04-01", + "type": "text_multiline", + "label": "What is the next objective listed in your CHIP State Plan?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02", + "type": "repeatables", + "questions": [ + { + "id": "2024-04-a-01-01-04-02-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-04-a-01-01-04-02-01-01", + "type": "text_multiline", + "label": "Briefly describe your goal as it relates to this objective.", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": null, + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2024-04-a-01-01-04-02-01-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-04-a-01-01-04-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-04-a-01-01-04-02-01-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-04-02-01-03", + "hint": "For example: The number of children who received one or more well child visits in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-04-02-01-05", + "hint": "For example: The total number of children enrolled in CHIP.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-04-a-01-01-04-02-01-04')].answer.entry", + "$..*[?(@ && @.id=='2024-04-a-01-01-04-02-01-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-04-a-01-01-04-02-01-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-04-a-01-01-04-02-01-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2024-04-a-01-01-04-02-01-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-11", + "type": "text_multiline", + "label": "Do you plan to keep this goal in future years? If so, do you plan to maintain the same goal or change it over the next three years?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-12", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-04-02-01-13", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + } + ], + "typeLabel": "Goal" + } + ] + }, + { + "id": "2024-04-a-01-01-05", + "type": "objective", + "questions": [ + { + "id": "2024-04-a-01-01-05-01", + "type": "text_multiline", + "label": "What is the next objective listed in your CHIP State Plan?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02", + "type": "repeatables", + "questions": [ + { + "id": "2024-04-a-01-01-05-02-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-04-a-01-01-05-02-01-01", + "type": "text_multiline", + "label": "Briefly describe your goal as it relates to this objective.", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": null, + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2024-04-a-01-01-05-02-01-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-04-a-01-01-05-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-04-a-01-01-05-02-01-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-05-02-01-03", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-05-02-01-05", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-04-a-01-01-05-02-01-04')].answer.entry", + "$..*[?(@ && @.id=='2024-04-a-01-01-05-02-01-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-04-a-01-01-05-02-01-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-04-a-01-01-05-02-01-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2024-04-a-01-01-05-02-01-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-11", + "type": "text_multiline", + "label": "Do you plan to keep this goal in future years? If so, do you plan to maintain the same goal or change it over the next three years?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-12", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-05-02-01-13", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + } + ], + "typeLabel": "Goal" + } + ] + }, + { + "id": "2024-04-a-01-01-06", + "type": "objective", + "questions": [ + { + "id": "2024-04-a-01-01-06-01", + "type": "text_multiline", + "label": "What is the next objective listed in your CHIP State Plan?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02", + "type": "repeatables", + "questions": [ + { + "id": "2024-04-a-01-01-06-02-01", + "type": "repeatable", + "questions": [ + { + "id": "2024-04-a-01-01-06-02-01-01", + "type": "text_multiline", + "label": "Briefly describe your goal as it relates to this objective.", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-02", + "type": "radio", + "label": "What type of goal is it?", + "answer": { + "entry": null, + "options": [ + { + "label": "New goal", + "value": "goal_new" + }, + { + "label": "Continuing goal", + "value": "goal_continuing" + }, + { + "label": "Discontinued goal", + "value": "goal_discontinued" + } + ], + "default_entry": "goal_new" + }, + "questions": [ + { + "id": "2024-04-a-01-01-06-02-01-02-a", + "type": "text_multiline", + "label": "Why was this goal discontinued?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-04-a-01-01-06-02-01-02 is null, continuing goal, or new goal; noninteractive: hide if that's continuing goal or new goal.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-04-a-01-01-06-02-01-02')].answer.entry", + "values": { + "interactive": [ + null, + "goal_continuing", + "goal_new" + ], + "noninteractive": [ + "goal_continuing", + "goal_new" + ] + } + } + } + } + } + ] + }, + { + "type": "fieldset", + "label": "Define the numerator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-06-02-01-03", + "type": "text_medium", + "label": "Which population are you measuring in the numerator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-04", + "type": "integer", + "label": "Numerator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "label": "Define the denominator you're measuring", + "questions": [ + { + "id": "2024-04-a-01-01-06-02-01-05", + "hint": "For example: The total number of eligible children in the last federal fiscal year.", + "type": "text_medium", + "label": "Which population are you measuring in the denominator?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-06", + "type": "integer", + "label": "Denominator (total number)", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ] + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "actions": ["percentage"], + "targets": [ + "$..*[?(@ && @.id=='2024-04-a-01-01-06-02-01-04')].answer.entry", + "$..*[?(@ && @.id=='2024-04-a-01-01-06-02-01-06')].answer.entry" + ] + }, + "fieldset_type": "synthesized_value" + }, + { + "id": "2024-04-a-01-01-06-02-01-07", + "type": "daterange", + "label": "What is the date range of your data?", + "answer": { + "entry": null, + "labels": ["Start", "End"] + } + }, + { + "id": "2024-04-a-01-01-06-02-01-08", + "type": "radio", + "label": "Which data source did you use?", + "answer": { + "entry": null, + "options": [ + { + "label": "Eligibility or enrollment data", + "value": "goal_enrollment_data" + }, + { + "label": "Survey data", + "value": "goal_survey_data" + }, + { + "label": "Another data source", + "value": "goal_other_data" + } + ] + } + }, + { + "id": "2024-04-a-01-01-06-02-01-09", + "type": "text_multiline", + "label": "How did your progress towards your goal last year compare to your previous year’s progress?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-10", + "type": "text_multiline", + "label": "What are you doing to continually make progress towards your goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-11", + "type": "text_multiline", + "label": "Do you plan to keep this goal in future years? If so, do you plan to maintain the same goal or change it over the next three years?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-12", + "type": "text_multiline", + "label": "Anything else you'd like to tell us about this goal?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-01-01-06-02-01-13", + "hint": "Optional", + "type": "file_upload", + "label": "Do you have any supporting documentation?", + "answer": { "entry": null } + } + ] + } + ], + "typeLabel": "Goal" + } + ] + } + ] + } + ] + }, + { + "id": "2024-04-a-02", + "type": "part", + "title": "Additional questions", + "questions": [ + { + "id": "2024-04-a-02-01", + "type": "text_multiline", + "label": "Do you have other strategies for measuring and reporting on your performance goals? What are these strategies, and what information have you found through this research?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-02-02", + "type": "text_multiline", + "label": "Do you plan to add new strategies for measuring and reporting on your goals and objectives? What do you plan to do, and when will these data become available?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-02-03", + "type": "text_multiline", + "label": "Have you conducted any focused studies on your CHIP population? (For example: studies on adolescents, attention deficit disorder, substance use, behavioral health services access, health care disparities, special health care needs, or other emerging health care needs.) What have you discovered through this research?", + "answer": { "entry": null } + }, + { + "id": "2024-04-a-02-04", + "hint": "For example: studies, analyses, or any other documents that address your performance goals.", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ] + } + ] + } + ] + } + } + }, + { + "year": 2024, + "sectionId": 5, + "contents": { + "section": { + "id": "2024-05", + "type": "section", + "year": 2024, + "state": null, + "title": "Program Financing", + "valid": null, + "ordinal": 5, + "subsections": [ + { + "id": "2024-05-a", + "text": "Tell us how much you spent on your CHIP program in FFY 2024, and how much you anticipate spending in FFY 2025 and 2026.\n\nStates with a combination program should combine costs for both Medicaid expansion CHIP and separate CHIP programs into one budget.", + "type": "subsection", + "parts": [ + { + "id": "2024-05-a-01", + "type": "part", + "title": "Benefit Costs", + "questions": [ + { + "type": "fieldset", + "label": "How much did you spend on Managed Care in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-01-01-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-01-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-01-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-01-01" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on fee-for-service in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-01-02-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-02-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-02-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-01-02" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on anything else related to benefit costs in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-01-03-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-03-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-03-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-01-03" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you receive in cost sharing from beneficiaries to offset your costs in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-01-04-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-04-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-01-04-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-01-04" }, + "fieldset_type": "marked" + }, + { + "hint": "This table is auto-populated with the data you entered above.", + "type": "fieldset", + "label": "Table 1: Benefits Costs", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { "contents": "Managed Care" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry" + ] + } + ], + [ + { "contents": "Fee for Service" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry" + ] + } + ], + [ + { "contents": "Other benefit costs" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry" + ] + } + ], + [ + { + "contents": "Cost sharing payments from beneficiaries" + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry" + ] + } + ], + [ + { "contents": "Total benefit costs" }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3>", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry" + ], + "$comment": "This is the sum of costs, minus the cost sharing" + }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3>", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry" + ], + "$comment": "This is the sum of costs, minus the cost sharing" + }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3>", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry" + ], + "$comment": "This is the sum of costs, minus the cost sharing" + } + ] + ], + "headers": [ + { "contents": "" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" }, + { "contents": "FFY 2026" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "id": "2024-05-a-02", + "type": "part", + "title": "Administrative Costs", + "questions": [ + { + "hint": "This includes wages, salaries, and other employee costs.", + "type": "fieldset", + "label": "How much did you spend on personnel in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-01-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-01-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-01-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-01" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on general administration in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-02-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-02-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-02-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-02" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on contractors and brokers, such as enrollment contractors in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-03-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-03-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-03-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-03" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on claims processing in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-04-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-04-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-04-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-04" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on outreach and marketing in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-05-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-05-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-05-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-05" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on your Health Services Initiatives (HSI) if you had any in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-06-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-06-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-06-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-06" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "label": "How much did you spend on anything else related to administrative costs in FFY 2024? How much do you anticipate spending in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-02-07-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-07-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-02-07-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-02-07" }, + "fieldset_type": "marked" + }, + { + "hint": "This table is auto-populated with the data you entered above. \n Your total administrative costs cannot be more than 10% of your total CHIP program costs (the sum of your benefit and administrative costs). The 10% administrative cap is calculated by dividing the total benefit costs by 9.", + "type": "fieldset", + "label": "Table 2: Administrative Costs", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { "contents": "Personnel" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-01-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-01-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-01-c')].answer.entry" + ] + } + ], + [ + { "contents": "General administration" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-02-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-02-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-02-c')].answer.entry" + ] + } + ], + [ + { "contents": "Contractors and brokers" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-03-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-03-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-03-c')].answer.entry" + ] + } + ], + [ + { "contents": "Claims processing" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-04-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-04-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-04-c')].answer.entry" + ] + } + ], + [ + { "contents": "Outreach and marketing" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-05-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-05-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-05-c')].answer.entry" + ] + } + ], + [ + { "contents": "Health Services Initiatives (HSI)" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-06-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-06-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-06-c')].answer.entry" + ] + } + ], + [ + { "contents": "Other administrative costs" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-07-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-07-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-07-c')].answer.entry" + ] + } + ], + [ + { "contents": "Total administrative costs" }, + { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-a')].answer.entry" + ] + }, + { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-b')].answer.entry" + ] + }, + { + "actions": ["sum"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-02-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-c')].answer.entry" + ] + } + ], + [ + { "contents": "10% administrative cap" }, + { + "actions": ["formula"], + "formula": "(<0> + <1> + <2> - <3>) / 9", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry" + ], + "$comment": "This should equal the total benefit cost calculated above, then divided by 9" + }, + { + "actions": ["formula"], + "formula": "(<0> + <1> + <2> - <3>) / 9", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry" + ], + "$comment": "This should equal the total benefit cost calculated above, then divided by 9" + }, + { + "actions": ["formula"], + "formula": "(<0> + <1> + <2> - <3>) / 9", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry" + ], + "$comment": "This should equal the total benefit cost calculated above, then divided by 9" + } + ] + ], + "headers": [ + { "contents": "" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" }, + { "contents": "FFY 2026" } + ] + }, + "fieldset_type": "synthesized_table" + }, + { + "hint": "CHIP is funded by federal and state budgets. The federal share of funding is calculated by multiplying your state’s Federal Medical Assistance Percentage (eFMAP) by your total program costs (the sum of your benefit and administrative costs). The remaining amount of your total program costs is covered by your state share of funding. \n CMS will enter the eFMAP rates for each year and auto-calculate the total program costs, as well as the federal and state shares.", + "type": "fieldset", + "label": "Table 3: Federal and State Shares", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { "contents": "Total program costs " }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-a')].answer.entry" + ], + "$comment": "Total benefit costs 2024 + total admin costs 2024" + }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-b')].answer.entry" + ], + "$comment": "Total benefit costs 2025 + total admin costs 2025" + }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10>", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-c')].answer.entry" + ], + "$comment": "Total benefit costs 2026 + total admin costs 2026" + } + ], + [ + { "contents": "eFMAP" }, + { + "actions": ["identity"], + "targets": [{ "lookupFmapFy": "2024" }], + "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY24)" + }, + { + "actions": ["identity"], + "targets": [{ "lookupFmapFy": "2025" }], + "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY25)" + }, + { + "actions": ["identity"], + "targets": [{ "lookupFmapFy": "2026" }], + "$comment": "This should pull the FMAP data from the API for this state and plug it in (FY26)" + } + ], + [ + { "contents": "Federal share" }, + { + "actions": ["formula"], + "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", + "targets": [ + { "lookupFmapFy": "2024" }, + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-a')].answer.entry" + ], + "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs" + }, + { + "actions": ["formula"], + "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", + "targets": [ + { "lookupFmapFy": "2025" }, + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-b')].answer.entry" + ], + "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs" + }, + { + "actions": ["formula"], + "formula": "(<0> / 100) * (<1> + <2> + <3> - <4> + <5> + <6> + <7> + <8> + <9> + <10> + <11>)", + "targets": [ + { "lookupFmapFy": "2026" }, + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-c')].answer.entry" + ], + "$comment": "Multiple eFMAP percentage times the sum/difference of fields that make up total program costs" + } + ], + [ + { "contents": "State share" }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-a')].answer.entry", + { "lookupFmapFy": "2024" }, + "$..*[?(@ && @.id=='2024-05-a-01-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-a')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-a')].answer.entry" + ], + "$comment": "Total program costs - federal share" + }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-b')].answer.entry", + { "lookupFmapFy": "2025" }, + "$..*[?(@ && @.id=='2024-05-a-01-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-b')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-b')].answer.entry" + ], + "$comment": "Total program costs - federal share" + }, + { + "actions": ["formula"], + "formula": "<0> + <1> + <2> - <3> + <4> + <5> + <6> + <7> + <8> + <9> + <10> - ((<11> / 100) * (<12> + <13> + <14> - <15> + <16> + <17> + <18> + <19> + <20> + <21> + <22>))", + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-c')].answer.entry", + { "lookupFmapFy": "2026" }, + "$..*[?(@ && @.id=='2024-05-a-01-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-01-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-01-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-02-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-03-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-04-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-05-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-06-c')].answer.entry", + "$..*[?(@ && @.id=='2024-05-a-02-07-c')].answer.entry" + ], + "$comment": "Total program costs - federal share" + } + ] + ], + "headers": [ + { "contents": "" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" }, + { "contents": "FFY 2026" } + ] + }, + "fieldset_type": "synthesized_table" + }, + { + "id": "2024-05-a-02-08", + "hint": "Select all that apply. ", + "type": "checkbox", + "label": "What were your state funding sources in FFY 2024?", + "answer": { + "entry": null, + "options": [ + { + "label": "State appropriations", + "value": "state appropriations" + }, + { + "label": "County/local funds", + "value": "county local funds" + }, + { + "label": "Employer contributions", + "value": "employer contributions" + }, + { + "label": "Foundation grants", + "value": "foundation grants" + }, + { + "label": "Private donations", + "value": "private donations" + }, + { + "label": "Tobacco settlement", + "value": "tobacco settlement" + }, + { "label": "Other", "value": "other" } + ] + }, + "questions": [ + { + "id": "2024-05-a-02-08-a", + "type": "text", + "label": "What other type of funding did you receive?", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-05-a-02-08 selection does not include 'other'; noninteractive: hide if NOT 'other'", + "hide_if_not": { + "target": "$..*[?(@ && @.id=='2024-05-a-02-08')].answer.entry", + "values": { + "interactive": ["other"], + "noninteractive": ["other"] + } + } + } + } + } + ] + }, + { + "id": "2024-05-a-02-09", + "type": "radio", + "label": "Did you experience a shortfall in federal CHIP funds this year?", + "answer": { + "entry": null, + "options": [ + { "label": "Yes", "value": "yes" }, + { "label": "No", "value": "no" } + ] + }, + "questions": [ + { + "id": "2024-05-a-02-09-a", + "type": "text_multiline", + "label": "Briefly explain why your state didn’t have enough federal funding to cover your CHIP program costs.", + "answer": { "entry": null }, + "context_data": { + "conditional_display": { + "type": "conditional_display", + "comment": "Interactive: Hide if 2024-05-a-02-09 is null or no; noninteractive: hide if that's no.", + "hide_if": { + "target": "$..*[?(@ && @.id=='2024-05-a-02-09')].answer.entry", + "values": { + "interactive": [null, "no"], + "noninteractive": ["no"] + } + } + } + } + } + ] + } + ] + }, + { + "id": "2024-05-a-03", + "text": "Complete this section only if you have a managed care delivery system. ", + "type": "part", + "title": "Managed Care Costs", + "questions": [ + { + "type": "fieldset", + "label": "How many children were eligible for managed care in FFY 2024? How many do you anticipate will be eligible in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-03-01-a", + "type": "integer", + "label": "2024", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-05-a-03-01-b", + "type": "integer", + "label": "2025", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-05-a-03-01-c", + "type": "integer", + "label": "2026", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-03-01" }, + "fieldset_type": "marked" + }, + { + "hint": "Round to the nearest whole number.", + "type": "fieldset", + "label": "What was your per member per month (PMPM) cost based on the number of children eligible for managed care in FFY 2024? What is your projected PMPM cost for FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-03-02-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-03-02-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-03-02-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-03-02" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "mask": "lessThanEleven", + "contents": "Eligible children" + }, + { + "mask": "lessThanEleven", + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-03-01-a')].answer.entry" + ] + }, + { + "mask": "lessThanEleven", + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-03-01-b')].answer.entry" + ] + }, + { + "mask": "lessThanEleven", + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-03-01-c')].answer.entry" + ] + } + ], + [ + { "contents": "PMPM cost" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-03-02-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-03-02-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-03-02-c')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" }, + { "contents": "FFY 2026" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "id": "2024-05-a-04", + "text": "Complete this section only if you have a fee-for-service delivery system.", + "type": "part", + "title": "Fee for Service Costs", + "questions": [ + { + "type": "fieldset", + "label": "How many children were eligible for fee-for-service in FFY 2024? How many do you anticipate will be eligible in FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-04-01-a", + "type": "integer", + "label": "2024", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-05-a-04-01-b", + "type": "integer", + "label": "2025", + "answer": { "entry": null }, + "mask": "lessThanEleven" + }, + { + "id": "2024-05-a-04-01-c", + "type": "integer", + "label": "2026", + "answer": { "entry": null }, + "mask": "lessThanEleven" + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-04-01" }, + "fieldset_type": "marked" + }, + { + "hint": "Round to the nearest whole number.", + "type": "fieldset", + "label": "What was your per member per month (PMPM) cost based on the number of children eligible for fee-for-service in FFY 2024? What is your projected PMPM cost for FFY 2025 and 2026?", + "questions": [ + { + "type": "fieldset", + "questions": [ + { + "id": "2024-05-a-04-02-a", + "type": "money", + "label": "2024", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-04-02-b", + "type": "money", + "label": "2025", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-04-02-c", + "type": "money", + "label": "2026", + "answer": { "entry": null } + } + ], + "fieldset_type": "datagrid" + } + ], + "fieldset_info": { "id": "2024-05-a-04-02" }, + "fieldset_type": "marked" + }, + { + "type": "fieldset", + "questions": [], + "fieldset_info": { + "rows": [ + [ + { + "mask": "lessThanEleven", + "contents": "Eligible children" + }, + { + "mask": "lessThanEleven", + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-04-01-a')].answer.entry" + ] + }, + { + "mask": "lessThanEleven", + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-04-01-b')].answer.entry" + ] + }, + { + "mask": "lessThanEleven", + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-04-01-c')].answer.entry" + ] + } + ], + [ + { "contents": "PMPM cost" }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-04-02-a')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-04-02-b')].answer.entry" + ] + }, + { + "actions": ["identity"], + "targets": [ + "$..*[?(@ && @.id=='2024-05-a-04-02-c')].answer.entry" + ] + } + ] + ], + "headers": [ + { "contents": "" }, + { "contents": "FFY 2024" }, + { "contents": "FFY 2025" }, + { "contents": "FFY 2026" } + ] + }, + "fieldset_type": "synthesized_table" + } + ] + }, + { + "id": "2024-05-a-05", + "type": "part", + "questions": [ + { + "id": "2024-05-a-05-01", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your program finances that wasn’t already covered?", + "answer": { "entry": null } + }, + { + "id": "2024-05-a-05-02", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { "entry": null } + } + ] + } + ] + } + ] + } + } + }, + { + "year": 2024, + "sectionId": 6, + "contents": { + "section": { + "id": "2024-06", + "type": "section", + "year": 2024, + "state": null, + "title": "Challenges and Accomplishments", + "valid": null, + "ordinal": 6, + "subsections": [ + { + "id": "2024-06-a", + "type": "subsection", + "parts": [ + { + "id": "2024-06-a-01", + "type": "part", + "questions": [ + { + "id": "2024-06-a-01-01", + "type": "text_multiline", + "label": "How has your state’s political and fiscal environment affected your ability to provide healthcare to low-income children and families?", + "answer": { + "entry": null + } + }, + { + "id": "2024-06-a-01-02", + "type": "text_multiline", + "label": "What’s the greatest challenge your CHIP program has faced in FFY 2024?", + "answer": { + "entry": null + } + }, + { + "id": "2024-06-a-01-03", + "type": "text_multiline", + "label": "What are some of the greatest accomplishments your CHIP program has experienced in FFY 2024?", + "answer": { + "entry": null + } + }, + { + "id": "2024-06-a-01-04", + "type": "text_multiline", + "label": "What changes have you made to your CHIP program in FFY 2024 or plan to make in FFY 2025? Why have you decided to make these changes?", + "answer": { + "entry": null + } + }, + { + "id": "2024-06-a-01-05", + "type": "text_multiline", + "label": "Is there anything else you’d like to add about your state’s challenges and accomplishments?", + "answer": { + "entry": null + } + }, + { + "id": "2024-06-a-01-06", + "type": "file_upload", + "label": "Optional: Attach any additional documents here.", + "answer": { + "entry": null + } + } + ] + } + ] + } + ] + } + } + } +] diff --git a/services/database/handlers/seed/tables/sectionBase.js b/services/database/handlers/seed/tables/sectionBase.js index f1799ef2f..4b72a25ec 100644 --- a/services/database/handlers/seed/tables/sectionBase.js +++ b/services/database/handlers/seed/tables/sectionBase.js @@ -1,6 +1,7 @@ const sectionData = [ ...require("../../../data/seed/seed-section-base-2022.json"), ...require("../../../data/seed/seed-section-base-2023.json"), + ...require("../../../data/seed/seed-section-base-2024.json"), ]; const seed = { diff --git a/services/ui-src/src/components/fields/Integer.jsx b/services/ui-src/src/components/fields/Integer.jsx index ecd344142..a3246256f 100644 --- a/services/ui-src/src/components/fields/Integer.jsx +++ b/services/ui-src/src/components/fields/Integer.jsx @@ -1,8 +1,11 @@ import React, { useState } from "react"; -import PropTypes from "prop-types"; -import { TextField } from "@cmsgov/design-system"; import { useSelector } from "react-redux"; +import { TextField } from "@cmsgov/design-system"; +//utils import { generateQuestionNumber } from "../utils/helperFunctions"; +import { lteMask } from "../../util/constants"; +//types +import PropTypes from "prop-types"; const getPrevYearValue = (question, lastYearFormData) => { let prevYearValue; @@ -68,12 +71,7 @@ const Integer = ({ onChange, question, prevYear, printView, ...props }) => { }; const isLessThanElevenMask = (value) => { - return ( - printView && - question.mask === "lessThanEleven" && - value <= 10 && - value > 0 - ); + return printView && question.mask === lteMask && value <= 10 && value > 0; }; const renderAnswer = () => { diff --git a/services/ui-src/src/components/fields/Integer.test.jsx b/services/ui-src/src/components/fields/Integer.test.jsx index 54f8672ab..3c4bb0a23 100644 --- a/services/ui-src/src/components/fields/Integer.test.jsx +++ b/services/ui-src/src/components/fields/Integer.test.jsx @@ -1,9 +1,13 @@ import React from "react"; import { Provider } from "react-redux"; -import configureMockStore from "redux-mock-store"; +//testing import { shallow, mount } from "enzyme"; -import Integer from "./Integer"; +import configureMockStore from "redux-mock-store"; import { screen, render, fireEvent } from "@testing-library/react"; +//components +import Integer from "./Integer"; +//utils +import { lteMask } from "../../util/constants"; const mockStore = configureMockStore(); const lastYearFormData = [ @@ -114,7 +118,7 @@ describe("<Integer />", () => { id: "2023-00-a-01-01", label: "Example Question", answer: { entry: "5" }, - mask: "lessThanEleven", + mask: lteMask, }, printView: true, }; @@ -130,7 +134,7 @@ describe("<Integer />", () => { id: "2023-00-a-01-01", label: "Example Question", answer: { entry: "12" }, - mask: "lessThanEleven", + mask: lteMask, }, printView: true, }; @@ -145,7 +149,7 @@ describe("<Integer />", () => { id: "2023-00-a-01-01", label: "Example Question", answer: { entry: "0" }, - mask: "lessThanEleven", + mask: lteMask, }, printView: true, }; diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index 4f408b5bd..b178a4415 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -2,10 +2,11 @@ import React from "react"; import { useSelector, shallowEqual } from "react-redux"; //utils import synthesizeValue from "../../util/synthesize"; +import { lteMask } from "../../util/constants"; //types import PropTypes from "prop-types"; -const SynthesizedTable = ({ question, tableTitle }) => { +const SynthesizedTable = ({ question, tableTitle, printView }) => { const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = useSelector( (state) => [ @@ -18,8 +19,12 @@ const SynthesizedTable = ({ question, tableTitle }) => { shallowEqual ); - const rows = question.fieldset_info.rows.map((row) => - row.map((cell) => { + const rows = question.fieldset_info.rows.map((row) => { + let contents = row; + if (printView) { + contents = row.filter((cell) => cell?.mask !== lteMask); + } + return contents.map((cell) => { const value = synthesizeValue( cell, allStatesData, @@ -32,8 +37,14 @@ const SynthesizedTable = ({ question, tableTitle }) => { return typeof value.contents === "number" && Number.isNaN(value.contents) ? { contents: "Not Available" } : value; - }) - ); + }); + }); + + const headers = printView + ? question.fieldset_info.headers.filter( + (header) => header?.mask !== lteMask + ) + : question.fieldset_info.headers; return ( <div className="synthesized-table ds-u-margin-top--2"> @@ -48,7 +59,7 @@ const SynthesizedTable = ({ question, tableTitle }) => { > <thead> <tr> - {question.fieldset_info.headers.map((header, index) => ( + {headers.map((header, index) => ( <th scope="col" key={index}> {header.contents} </th> diff --git a/services/ui-src/src/components/fields/SynthesizedTable.test.jsx b/services/ui-src/src/components/fields/SynthesizedTable.test.jsx new file mode 100644 index 000000000..237c75903 --- /dev/null +++ b/services/ui-src/src/components/fields/SynthesizedTable.test.jsx @@ -0,0 +1,139 @@ +import React from "react"; +import { Provider } from "react-redux"; +import { screen, render } from "@testing-library/react"; +import configureMockStore from "redux-mock-store"; +import { lteMask } from "../../util/constants"; +import SynthesizedTable from "./SynthesizedTable"; + +const mockStore = configureMockStore(); +const store = mockStore({ + formData: [ + { + contents: { + section: { + year: 2023, + state: "AL", + }, + }, + }, + ], + global: { + stateName: "AL", + }, + stateUser: { + abbr: "CMS", + }, + enrollmentCounts: { + chipEnrollments: 0, + }, + lastYearFormData: [], + lastYearTotals: {}, +}); + +const defaultProps = { + tableTitle: "Managed Care Costs", + question: { + questions: [], + fieldset_info: { + rows: [ + [ + { + contents: "Eligible children", + }, + { + actions: ["identity"], + targets: ["$..*[?(@ && @.id=='2023-05-a-03-01-a')].answer.entry"], + }, + { + actions: ["identity"], + targets: ["$..*[?(@ && @.id=='2023-05-a-03-01-b')].answer.entry"], + }, + ], + ], + headers: [ + { + contents: "", + }, + { + contents: "FFY 2023", + }, + { + contents: "FFY 2024", + }, + ], + }, + fieldset_type: "synthesized_table", + type: "fieldset", + }, +}; + +const SynthesizedTableComponentWithProps = (testSpecificProps) => { + return ( + <Provider store={store}> + <SynthesizedTable {...defaultProps} {...testSpecificProps} /> + </Provider> + ); +}; + +describe("<SynthesizedTable />", () => { + test("should render header and labels", () => { + render(SynthesizedTableComponentWithProps()); + + expect(screen.getByText("FFY 2023")).toBeInTheDocument(); + expect(screen.getByText("FFY 2024")).toBeInTheDocument(); + expect(screen.getByText("Eligible children")).toBeInTheDocument(); + }); + + test("should not render in print view with lessThanEleven mask prop", () => { + render( + SynthesizedTableComponentWithProps({ + question: { + ...defaultProps.question, + fieldset_info: { + rows: [ + [ + { + contents: "Eligible children", + mask: lteMask, + }, + { + mask: lteMask, + actions: ["identity"], + targets: [ + "$..*[?(@ && @.id=='2023-05-a-03-01-a')].answer.entry", + ], + }, + { + mask: lteMask, + actions: ["identity"], + targets: [ + "$..*[?(@ && @.id=='2023-05-a-03-01-b')].answer.entry", + ], + }, + ], + ], + headers: [ + { + mask: lteMask, + contents: "", + }, + { + mask: lteMask, + contents: "FFY 2023", + }, + { + mask: lteMask, + contents: "FFY 2024", + }, + ], + }, + }, + printView: true, + }) + ); + + expect(screen.queryByText("FFY 2023")).not.toBeInTheDocument(); + expect(screen.queryByText("FFY 2024")).not.toBeInTheDocument(); + expect(screen.queryByText("Eligible children")).not.toBeInTheDocument(); + }); +}); diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index dba9a6d73..b14035ad8 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -4,10 +4,11 @@ import { useSelector, shallowEqual } from "react-redux"; import Question from "./Question"; //utils import synthesizeValue from "../../util/synthesize"; +import { lteMask } from "../../util/constants"; //types import PropTypes from "prop-types"; -const SynthesizedValue = ({ question, ...props }) => { +const SynthesizedValue = ({ question, printView, ...props }) => { const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = useSelector( (state) => [ @@ -20,23 +21,28 @@ const SynthesizedValue = ({ question, ...props }) => { shallowEqual ); - const value = synthesizeValue( - question.fieldset_info, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ).contents; + const showValue = !(printView && question.fieldset_info.mask === lteMask); + const renderValue = () => { + return synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents; + }; return ( - <div> - <strong>Computed:</strong> {value} - {question.questions && - question.questions.map((q) => ( - <Question key={q.id} question={q} {...props} /> - ))} - </div> + showValue && ( + <div> + <strong>Computed:</strong> {renderValue()} + {question.questions && + question.questions.map((q) => ( + <Question key={q.id} question={q} {...props} /> + ))} + </div> + ) ); }; SynthesizedValue.propTypes = { diff --git a/services/ui-src/src/components/fields/SynthesizedValue.test.jsx b/services/ui-src/src/components/fields/SynthesizedValue.test.jsx new file mode 100644 index 000000000..f9bda3071 --- /dev/null +++ b/services/ui-src/src/components/fields/SynthesizedValue.test.jsx @@ -0,0 +1,79 @@ +import React from "react"; +import { Provider } from "react-redux"; +import { screen, render } from "@testing-library/react"; +import configureMockStore from "redux-mock-store"; +import SynthesizedValue from "./SynthesizedValue"; +import { lteMask } from "../../util/constants"; + +const mockStore = configureMockStore(); +const store = mockStore({ + formData: [ + { + contents: { + section: { + year: 2023, + state: "AL", + }, + }, + }, + ], + global: { + stateName: "AL", + }, + stateUser: { + abbr: "CMS", + }, + enrollmentCounts: { + chipEnrollments: 0, + }, + lastYearFormData: [], + lastYearTotals: {}, +}); + +const defaultProps = { + question: { + questions: [], + fieldset_info: { + actions: ["percentage"], + targets: [ + "$..*[?(@ && @.id=='2023-03-i-02-01-01-05')].answer.entry", + "$..*[?(@ && @.id=='2023-03-i-02-01-01-04')].answer.entry", + ], + }, + fieldset_type: "synthesized_value", + type: "fieldset", + }, +}; + +const SynthesizedValueComponentWithProps = (testSpecificProps) => { + return ( + <Provider store={store}> + <SynthesizedValue {...defaultProps} {...testSpecificProps} /> + </Provider> + ); +}; + +describe("<Synthesized Value />", () => { + test("should render header and labels", () => { + render(SynthesizedValueComponentWithProps()); + + expect(screen.getByText("Computed:")).toBeInTheDocument(); + }); + + test("should not render in print view with lessThanEleven mask prop", () => { + render( + SynthesizedValueComponentWithProps({ + question: { + ...defaultProps.question, + fieldset_info: { + ...defaultProps.fieldset_info, + mask: lteMask, + }, + }, + printView: true, + }) + ); + + expect(screen.queryByText("Computed:")).not.toBeInTheDocument(); + }); +}); diff --git a/services/ui-src/src/components/layout/FormTemplates.jsx b/services/ui-src/src/components/layout/FormTemplates.jsx index a17e66137..3a1ab4f7c 100644 --- a/services/ui-src/src/components/layout/FormTemplates.jsx +++ b/services/ui-src/src/components/layout/FormTemplates.jsx @@ -4,6 +4,7 @@ import "react-data-table-component-extensions/dist/index.css"; import { Button } from "@cmsgov/design-system"; import { useHistory } from "react-router-dom"; import { apiLib } from "../../util/apiLib"; +import { useFlags } from "launchdarkly-react-client-sdk"; const FormTemplates = () => { const history = useHistory(); @@ -24,7 +25,8 @@ const FormTemplates = () => { setInprogress(false); }; - const defaultYear = "2023"; + const release2024 = useFlags().release2024; + const defaultYear = release2024 ? "2024" : "2023"; return ( <> @@ -38,6 +40,7 @@ const FormTemplates = () => { data-testid="generate-forms-options" defaultValue={defaultYear} > + {release2024 && <option value="2024">2024</option>} <option value="2023">2023</option> <option value="2022">2022</option> <option value="2021">2021</option> diff --git a/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx b/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx index 8e10d1bfa..9200e2da1 100644 --- a/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx +++ b/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx @@ -1,17 +1,45 @@ import React from "react"; -import PropTypes from "prop-types"; +import { useFlags } from "launchdarkly-react-client-sdk"; +//icons import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faArrowDown, faMinus, faFileAlt, } from "@fortawesome/free-solid-svg-icons"; +//types +import PropTypes from "prop-types"; const TemplateDownload = ({ getTemplate }) => ( <div className="ds-l-row"> <div className="updates ds-l-col--12"> - <h4>Updates from Central Office</h4> - <div className="update-date">Sep 2023</div> + <p className="update-title">Updates from Central Office</p> + {useFlags().release2024 && ( + <div className="preamble"> + <p> + Completing the Children’s Health Insurance Program (CHIP) Annual + Report is required under sections 2108(a) and 2108(e) of the Social + Security Act, and regulations at 42 CFR 457.750. + </p> + <p> + Each state must assess their CHIP operations and overall progress in + reducing the number of uninsured low-income children after each + federal fiscal year. + </p> + <p> + States must complete all relevant sections of the CHIP Annual Report + Template System (CARTS) and certify their report by January 1st. + After review and acceptance by CMS, CHIP annual reports are + published at{" "} + <a href="https://www.medicaid.gov/chip/reports-evaluations/index.html"> + https://www.medicaid.gov/chip/reports-evaluations/index.html + </a> + </p> + </div> + )} + <div className="update-date"> + {useFlags().release2024 ? "Oct 2024" : "Sept 2023"} + </div> <div className="update ds-l-row"> <div className="icon ds-l-col--2"> <div className="icon-inner"> @@ -20,7 +48,10 @@ const TemplateDownload = ({ getTemplate }) => ( </div> <div className="update-contents ds-l-col--10"> <div className="title"> - <h3>Your fiscal year 2023 template is ready for download</h3> + <h3> + Your fiscal year {useFlags().release2024 ? "2024" : "2023"}{" "} + template is ready for download + </h3> </div> <p> Download your template for the current reporting period below. diff --git a/services/ui-src/src/serviceWorker.js b/services/ui-src/src/serviceWorker.js index 03d9eb4e4..5e7236aaa 100644 --- a/services/ui-src/src/serviceWorker.js +++ b/services/ui-src/src/serviceWorker.js @@ -3,7 +3,7 @@ * register() is not called by default. */ -import { MODE, BASE_URL } from "./util/constants"; +import { MODE, BASE_URL } from "./util/metaEnv"; /* * This lets the app load faster on subsequent visits in production, and gives diff --git a/services/ui-src/src/setupTests.js b/services/ui-src/src/setupTests.js index 4c18d3b21..385ebbbb3 100644 --- a/services/ui-src/src/setupTests.js +++ b/services/ui-src/src/setupTests.js @@ -34,7 +34,7 @@ Object.defineProperty(window, "matchMedia", { Object.defineProperty(window, "crypto", { value: require("node:crypto") }); -jest.mock("./util/constants", () => ({ +jest.mock("./util/metaEnv", () => ({ MODE: "production", BASE_URL: "mdctcartsdev.cms.gov", })); diff --git a/services/ui-src/src/store/globalVariables.js b/services/ui-src/src/store/globalVariables.js index 5e3c5a246..5053e9e9e 100644 --- a/services/ui-src/src/store/globalVariables.js +++ b/services/ui-src/src/store/globalVariables.js @@ -43,7 +43,7 @@ export default function global(state = initialState, action) { // Triggers isFetching which activates Spinner.js (reactRouter.js) state.url = document.location.pathname.toString(); state.queryParams = document.location.search.toString(); - state.currentYear = 2023; + state.currentYear = 2024; /** * Current Year is being used exclusively to determine what range of ints should be marked as years when diff --git a/services/ui-src/src/store/storeIndex.js b/services/ui-src/src/store/storeIndex.js index 0f2a66ce8..a5b2b530a 100644 --- a/services/ui-src/src/store/storeIndex.js +++ b/services/ui-src/src/store/storeIndex.js @@ -13,7 +13,7 @@ import fiscalYearTemplate from "./fiscalYearTemplate"; import reportStatus from "./reportStatus"; import enrollmentCounts from "./enrollmentCounts"; import { initAuthManager } from "../hooks/authHooks"; -import { MODE } from "../util/constants"; +import { MODE } from "../util/metaEnv"; import { logger } from "redux-logger"; // Consolidate reducers export const reducer = combineReducers({ diff --git a/services/ui-src/src/styles/_footer.scss b/services/ui-src/src/styles/_footer.scss index 5570ddacd..075d215bb 100644 --- a/services/ui-src/src/styles/_footer.scss +++ b/services/ui-src/src/styles/_footer.scss @@ -5,7 +5,7 @@ background: $color-gray-lightest; font-size: 0.85rem; color: $color-gray; - margin-top: 2.2rem; + margin-top: 2rem; text-align: center; flex-shrink: 0; diff --git a/services/ui-src/src/styles/_main.scss b/services/ui-src/src/styles/_main.scss index 4b275d447..ea29fe05d 100644 --- a/services/ui-src/src/styles/_main.scss +++ b/services/ui-src/src/styles/_main.scss @@ -112,11 +112,10 @@ img { } .omb-info { - color: $color-hint; + color: $color-hint-dark; font-size: 0.85rem; line-height: 1.6rem; - margin: 64px 0; - text-align: center; + margin: 1rem 0; } .reports { @@ -260,10 +259,23 @@ img { margin-left: ($margin * 2); } + .preamble { + max-width: 730px; + margin-bottom: 2rem; + } + + .update-title { + font-size: 1.25rem; + font-weight: 700; + color: $brand-primary; + margin-top: 1.5rem; + margin-bottom: 2rem; + } + .update-date { - color: $color-hint-light; - text-align: right; - text-transform: uppercase; + color: $color-hint-dark; + font-size:1.1rem; + font-weight: bold; } .updates { @@ -274,15 +286,16 @@ img { margin-top: 0; } h4 { - font-size: 0.85rem; - text-transform: uppercase; + font-size: 1.25rem; + margin-top: 1.5rem; + margin-bottom: 2rem; } .update { border: 2px solid $color-gray-lightest; border-left: none; border-right: none; - padding: ($padding * 6) 0; + padding: 2rem 0; text-align: center; @media only screen and (min-width: 768px) { @@ -339,6 +352,10 @@ img { } } } + + .carts-report { + margin-top: 1rem; + } } .accordion-header { diff --git a/services/ui-src/src/styles/_variables.scss b/services/ui-src/src/styles/_variables.scss index 4aa56cecb..a759453d9 100644 --- a/services/ui-src/src/styles/_variables.scss +++ b/services/ui-src/src/styles/_variables.scss @@ -22,6 +22,7 @@ $brand-tertiary: $green-vogue; $color-font: $black; $color-hint: $shuttle-gray; +$color-hint-dark: #5a5a5a; $color-hint-light: #81858d; $color-gray: $masala; diff --git a/services/ui-src/src/util/constants.js b/services/ui-src/src/util/constants.js index c34bb3f1a..1cd267992 100644 --- a/services/ui-src/src/util/constants.js +++ b/services/ui-src/src/util/constants.js @@ -1,2 +1 @@ -// import.meta.env is threaded through here in order to mock it out for jest -export const { MODE, BASE_URL } = import.meta.env; +export const lteMask = "lessThanEleven"; diff --git a/services/ui-src/src/util/metaEnv.js b/services/ui-src/src/util/metaEnv.js new file mode 100644 index 000000000..c34bb3f1a --- /dev/null +++ b/services/ui-src/src/util/metaEnv.js @@ -0,0 +1,2 @@ +// import.meta.env is threaded through here in order to mock it out for jest +export const { MODE, BASE_URL } = import.meta.env; From 78fc5c455264966b95b17d64d8909d4b6d7df07f Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Wed, 2 Oct 2024 10:54:17 -0600 Subject: [PATCH 20/24] Redux: put functions formerly in mapState back in useSelector (#139784) --- .../ui-src/src/components/fields/Question.jsx | 28 ++---- .../src/components/fields/Question.test.jsx | 91 +++++++++++++++++++ .../components/fields/SynthesizedTable.jsx | 76 ++++++++-------- .../components/fields/SynthesizedValue.jsx | 46 +++++----- .../src/components/layout/FormNavigation.jsx | 9 +- .../ui-src/src/components/layout/Header.jsx | 28 +++--- .../ui-src/src/components/layout/Part.jsx | 83 ++++++++--------- .../ui-src/src/components/layout/Section.jsx | 5 +- .../src/components/layout/Subsection.jsx | 17 ++-- .../src/components/layout/TableOfContents.jsx | 91 +++++++++---------- 10 files changed, 275 insertions(+), 199 deletions(-) create mode 100644 services/ui-src/src/components/fields/Question.test.jsx diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index 88716bebc..e523fba8c 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -53,7 +53,6 @@ const Container = ({ children }) => ( <fieldset className="ds-c-fieldset">{children}</fieldset> ); Container.propTypes = { - question: PropTypes.object.isRequired, children: PropTypes.node.isRequired, }; @@ -70,24 +69,13 @@ const Question = ({ Component = questionTypes.get(question.type); } - const [stateUser, formData, formYear, reportStatus] = useSelector( - (state) => [ - state.stateUser, - state.formData, - state.global.formYear, - state.reportStatus, - ], - shallowEqual - ); + const readonly = useSelector((state) => { + const { stateUser, formData, reportStatus } = state; + const formYear = state.global.formYear; + return !selectIsFormEditable(reportStatus, formData, stateUser, formYear); + }, shallowEqual); const dispatch = useDispatch(); - const readonly = !selectIsFormEditable( - reportStatus, - formData, - stateUser, - formYear - ); - const prevYearDisabled = prevYear ? prevYear.disabled : false; const onChange = ({ target: { name: id, value } }) => { @@ -155,9 +143,9 @@ const Question = ({ /> {/* If there are subquestions, wrap them so they are indented with the - blue line. But don't do it for the subquestions of a fieldset. If - the fieldset is a subchild, it will already be indented; if it's - not, then its children shouldn't be indented either. */} + blue line. But don't do it for the subquestions of a fieldset. If + the fieldset is a subchild, it will already be indented; if it's + not, then its children shouldn't be indented either. */} {shouldRenderChildren && ( <div className="ds-c-choice__checkedChild"> {question.questions.map((q) => ( diff --git a/services/ui-src/src/components/fields/Question.test.jsx b/services/ui-src/src/components/fields/Question.test.jsx new file mode 100644 index 000000000..471da5555 --- /dev/null +++ b/services/ui-src/src/components/fields/Question.test.jsx @@ -0,0 +1,91 @@ +import React from "react"; +import { Provider } from "react-redux"; +import { screen, render } from "@testing-library/react"; +import configureMockStore from "redux-mock-store"; +import Question from "./Question"; + +const mockStore = configureMockStore(); +const store = mockStore({ + formData: [ + { + contents: { + section: { + year: 2023, + state: "AL", + }, + }, + }, + ], + stateUser: { + abbr: "CMS", + currentUser: { + role: "test role", + }, + }, + global: { + formYear: 2023, + }, + reportStatus: { + status: "in_progress", + AL2023: { + status: "in_progress", + username: "my_user@name.com", + lastChanged: new Date(), + }, + }, + enrollmentCounts: { + chipEnrollments: {}, + }, +}); + +const defaultProps = { + tableTitle: "Managed Care Costs", + question: { + questions: [], + fieldset_info: { + rows: [ + [ + { + contents: "Eligible children", + }, + { + actions: ["identity"], + targets: ["$..*[?(@ && @.id=='2023-05-a-03-01-a')].answer.entry"], + }, + { + actions: ["identity"], + targets: ["$..*[?(@ && @.id=='2023-05-a-03-01-b')].answer.entry"], + }, + ], + ], + headers: [ + { + contents: "", + }, + { + contents: "FFY 2023", + }, + { + contents: "FFY 2024", + }, + ], + }, + fieldset_type: "synthesized_table", + type: "fieldset", + }, +}; + +const QuestionComponentWithProps = () => { + return ( + <Provider store={store}> + <Question {...defaultProps} /> + </Provider> + ); +}; + +describe("Question component", () => { + test("render question", () => { + render(QuestionComponentWithProps()); + expect(screen.getByText("Eligible children")).toBeVisible(); + }); +}); diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index b178a4415..a7946512f 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -7,44 +7,10 @@ import { lteMask } from "../../util/constants"; import PropTypes from "prop-types"; const SynthesizedTable = ({ question, tableTitle, printView }) => { - const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = - useSelector( - (state) => [ - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData, - ], - shallowEqual - ); - - const rows = question.fieldset_info.rows.map((row) => { - let contents = row; - if (printView) { - contents = row.filter((cell) => cell?.mask !== lteMask); - } - return contents.map((cell) => { - const value = synthesizeValue( - cell, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ); - - return typeof value.contents === "number" && Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }); - }); - - const headers = printView - ? question.fieldset_info.headers.filter( - (header) => header?.mask !== lteMask - ) - : question.fieldset_info.headers; + const { headers, rows } = useSelector( + (state) => getTableContents(state, question, printView), + shallowEqual + ); return ( <div className="synthesized-table ds-u-margin-top--2"> @@ -105,4 +71,38 @@ SynthesizedTable.propTypes = { tableTitle: PropTypes.string.isOptional, }; +const getTableContents = (state, question, printView) => { + const { allStatesData, formData } = state; + const stateName = state.global.stateName; + const stateUserAbbr = state.stateUser.abbr; + const chipEnrollments = state.enrollmentCounts.chipEnrollments; + const { headers: questionHeaders, rows: questionRows } = + question.fieldset_info; + + const rows = questionRows.map((row) => { + let contents = row; + if (printView) { + contents = row.filter((cell) => cell?.mask !== lteMask); + } + return contents.map((cell) => { + const value = synthesizeValue( + cell, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ); + + return typeof value.contents === "number" && Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }); + }); + const headers = printView + ? questionHeaders.filter((header) => header?.mask !== lteMask) + : questionHeaders; + return { headers, rows }; +}; + export default SynthesizedTable; diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index b14035ad8..076877a40 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -9,34 +9,15 @@ import { lteMask } from "../../util/constants"; import PropTypes from "prop-types"; const SynthesizedValue = ({ question, printView, ...props }) => { - const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = - useSelector( - (state) => [ - state.allStatesData, - state.global.stateName, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - state.formData, - ], - shallowEqual - ); - - const showValue = !(printView && question.fieldset_info.mask === lteMask); - const renderValue = () => { - return synthesizeValue( - question.fieldset_info, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ).contents; - }; + const { value, showValue } = useSelector( + (state) => getValue(state, question, printView), + shallowEqual + ); return ( showValue && ( <div> - <strong>Computed:</strong> {renderValue()} + <strong>Computed:</strong> {value} {question.questions && question.questions.map((q) => ( <Question key={q.id} question={q} {...props} /> @@ -49,4 +30,21 @@ SynthesizedValue.propTypes = { question: PropTypes.object.isRequired, }; +const getValue = (state, question, printView) => { + const { allStatesData, formData } = state; + const stateName = state.global.stateName; + const stateUserAbbr = state.stateUser.abbr; + const chipEnrollments = state.enrollmentCounts.chipEnrollments; + const value = synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents; + const showValue = !(printView && question.fieldset_info.mask === lteMask); + return { value, showValue }; +}; + export default SynthesizedValue; diff --git a/services/ui-src/src/components/layout/FormNavigation.jsx b/services/ui-src/src/components/layout/FormNavigation.jsx index 967c5c242..1590e7bae 100644 --- a/services/ui-src/src/components/layout/FormNavigation.jsx +++ b/services/ui-src/src/components/layout/FormNavigation.jsx @@ -17,13 +17,14 @@ const FormNavigation = () => { const history = useHistory(); const location = useLocation(); - const [formData, role] = useSelector( - (state) => [state.formData, state.stateUser?.currentUser?.role], + const [sections, role] = useSelector( + (state) => [ + selectSectionsForNav(state.formData), + state.stateUser?.currentUser?.role, + ], shallowEqual ); - const sections = selectSectionsForNav(formData); - const items = []; sections.forEach((section) => { if (section.subsections.length < 2) { diff --git a/services/ui-src/src/components/layout/Header.jsx b/services/ui-src/src/components/layout/Header.jsx index d7ff51cd6..7a11c1f27 100644 --- a/services/ui-src/src/components/layout/Header.jsx +++ b/services/ui-src/src/components/layout/Header.jsx @@ -17,22 +17,18 @@ import appLogo from "../../assets/images/MDCT_CARTS_2x.png"; export const Header = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); - const [stateUser, formData, formYear, reportStatus] = useSelector( - (state) => [ - state.stateUser, - state.formData, - state.global.formYear, - state.reportStatus, - ], - shallowEqual - ); - const { currentUser } = stateUser; - const currentReportStatus = getCurrentReportStatus( - reportStatus, - formData, - stateUser, - formYear - ); + const { currentReportStatus, currentUser } = useSelector((state) => { + const { stateUser, formData, reportStatus } = state; + const formYear = state.global.formYear; + const currentReportStatus = getCurrentReportStatus( + reportStatus, + formData, + stateUser, + formYear + ); + const currentUser = stateUser.currentUser; + return { currentReportStatus, currentUser }; + }, shallowEqual); const location = useLocation(); const showAutoSaveOnReport = (location, currentUser, currentReportStatus) => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index d2d5e8022..6186f582f 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -12,50 +12,11 @@ import { shouldDisplay } from "../../util/shouldDisplay"; const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { const [, section] = partId.split("-"); - const [ - formData, - currentUserRole, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - ] = useSelector( - (state) => [ - state.formData, - state.stateUser.currentUser.role, - state.reportStatus, - state.allStatesData, - state.stateUser.abbr, - state.enrollmentCounts.chipEnrollments, - ], + const { contextData, questions, show, text, title } = useSelector( + (state) => getPartInfo(state, partId), shallowEqual ); - const part = selectFragment(formData, partId); - const partContextData = part.context_data; - - const contextData = partContextData; - const questions = selectQuestionsForPart( - formData, - currentUserRole, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partId - ); - const show = shouldDisplay( - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partContextData - ); - const text = part ? part.text : null; - const title = part ? part.title : null; - const getPartContent = () => { if (show) { return ( @@ -103,4 +64,44 @@ const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { </div> ); }; + +const getPartInfo = (state, partId) => { + const { formData, reportStatus, allStatesData } = state; + const currentUserRole = state.stateUser.currentUser.role; + const stateUserAbbr = state.stateUser.abbr; + const chipEnrollments = state.enrollmentCounts.chipEnrollments; + + const part = selectFragment(formData, partId); + const partContextData = part.context_data; + + const questions = selectQuestionsForPart( + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partId + ); + const show = shouldDisplay( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partContextData + ); + const text = part ? part.text : null; + const title = part ? part.title : null; + + return { + contextData: partContextData, + questions, + show, + text, + title, + }; +}; + export default Part; diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index b204e1b25..7934e7abc 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -9,8 +9,9 @@ import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; const Section = ({ subsectionId, sectionId, printView }) => { - const formData = useSelector((state) => state.formData); - const title = selectSectionTitle(formData, sectionId); + const title = useSelector((state) => + selectSectionTitle(state.formData, sectionId) + ); return ( <div className="section-basic-info ds-l-col--9 content"> diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index 6417beca6..c6d2a9571 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -9,13 +9,16 @@ import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; import PropTypes from "prop-types"; const Subsection = ({ subsectionId, printView }) => { - const formData = useSelector((state) => state.formData); - - const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); - - const partIds = subsection ? subsection.parts : []; - const title = subsection ? subsection.title : null; - const text = subsection ? subsection.text : null; + const { partIds, title, text } = useSelector((state) => { + const subsection = selectSubsectionTitleAndPartIDs( + state.formData, + subsectionId + ); + const partIds = subsection ? subsection.parts : []; + const title = subsection ? subsection.title : null; + const text = subsection ? subsection.text : null; + return { partIds, title, text }; + }); return ( <div id={subsectionId}> diff --git a/services/ui-src/src/components/layout/TableOfContents.jsx b/services/ui-src/src/components/layout/TableOfContents.jsx index d0ef0f601..118c9a7b5 100644 --- a/services/ui-src/src/components/layout/TableOfContents.jsx +++ b/services/ui-src/src/components/layout/TableOfContents.jsx @@ -7,47 +7,53 @@ import { VerticalNav } from "@cmsgov/design-system"; import { AppRoles } from "../../types"; const TableOfContents = () => { - const [userRole, formYear, formData] = useSelector( - (state) => [ - state.stateUser.currentUser.role, - state.global.formYear, - state.formData, - ], - shallowEqual + const { items, selectedId } = useSelector((state) => { + const userRole = state.stateUser.currentUser.role; + const formYear = state.global.formYear; + const sections = getSections(state.formData); + const items = getItems(sections, formYear, userRole); + const selectedId = items.find((item) => item.selected)?.id; + return { items, selectedId }; + }, shallowEqual); + + return ( + <div className="toc" data-testid="toc" aria-label="Table of Contents"> + <VerticalNav + selectedId={selectedId} + ariaNavLabel="Vertical Navigation Element" + items={items} + /> + </div> ); +}; +const getSections = (formData) => { + if (!formData) { + return []; + } + return formData.map( + ({ + contents: { + section: { id: sectionId, ordinal, subsections, title: sectionTitle }, + }, + }) => ({ + id: sectionId, + ordinal, + title: sectionTitle, + subsections: subsections.map( + ({ id: subsectionId, title: subsectionTitle }) => ({ + id: subsectionId, + title: subsectionTitle, + }) + ), + }) + ); +}; + +const getItems = (sections, formYear, userRole) => { const location = useLocation(); const history = useHistory(); - const sections = () => { - if (formData) { - const sections = formData; - return sections.map( - ({ - contents: { - section: { - id: sectionId, - ordinal, - subsections, - title: sectionTitle, - }, - }, - }) => ({ - id: sectionId, - ordinal, - title: sectionTitle, - subsections: subsections.map( - ({ id: subsectionId, title: subsectionTitle }) => ({ - id: subsectionId, - title: subsectionTitle, - }) - ), - }) - ); - } - return []; - }; - const idToUrl = (location, id) => { const endOfPath = id.replace(/-/g, "/"); if (location.pathname.startsWith("/views/sections")) { @@ -66,7 +72,7 @@ const TableOfContents = () => { history.push(url); }; - const items = sections() + const items = sections .map(({ id: sectionId, ordinal, subsections, title: sectionTitle }) => ({ id: sectionId, items: @@ -108,16 +114,7 @@ const TableOfContents = () => { }); } - const foundSelectedId = items.find((item) => item.selected)?.id; - return ( - <div className="toc" data-testid="toc" aria-label="Table of Contents"> - <VerticalNav - selectedId={foundSelectedId} - ariaNavLabel="Vertical Navigation Element" - items={items} - /> - </div> - ); + return items; }; export default TableOfContents; From 84b04d5b811c0deb601adbae6f7d67fb7fa5f496 Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:05:22 -0600 Subject: [PATCH 21/24] =?UTF-8?q?Revert=20"Redux:=20put=20functions=20form?= =?UTF-8?q?erly=20in=20mapState=20back=20in=20useSelector=E2=80=A6=20(#139?= =?UTF-8?q?788)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ui-src/src/components/fields/Question.jsx | 28 ++++-- .../src/components/fields/Question.test.jsx | 91 ------------------- .../components/fields/SynthesizedTable.jsx | 76 ++++++++-------- .../components/fields/SynthesizedValue.jsx | 46 +++++----- .../src/components/layout/FormNavigation.jsx | 9 +- .../ui-src/src/components/layout/Header.jsx | 28 +++--- .../ui-src/src/components/layout/Part.jsx | 83 +++++++++-------- .../ui-src/src/components/layout/Section.jsx | 5 +- .../src/components/layout/Subsection.jsx | 17 ++-- .../src/components/layout/TableOfContents.jsx | 91 ++++++++++--------- 10 files changed, 199 insertions(+), 275 deletions(-) delete mode 100644 services/ui-src/src/components/fields/Question.test.jsx diff --git a/services/ui-src/src/components/fields/Question.jsx b/services/ui-src/src/components/fields/Question.jsx index e523fba8c..88716bebc 100644 --- a/services/ui-src/src/components/fields/Question.jsx +++ b/services/ui-src/src/components/fields/Question.jsx @@ -53,6 +53,7 @@ const Container = ({ children }) => ( <fieldset className="ds-c-fieldset">{children}</fieldset> ); Container.propTypes = { + question: PropTypes.object.isRequired, children: PropTypes.node.isRequired, }; @@ -69,13 +70,24 @@ const Question = ({ Component = questionTypes.get(question.type); } - const readonly = useSelector((state) => { - const { stateUser, formData, reportStatus } = state; - const formYear = state.global.formYear; - return !selectIsFormEditable(reportStatus, formData, stateUser, formYear); - }, shallowEqual); + const [stateUser, formData, formYear, reportStatus] = useSelector( + (state) => [ + state.stateUser, + state.formData, + state.global.formYear, + state.reportStatus, + ], + shallowEqual + ); const dispatch = useDispatch(); + const readonly = !selectIsFormEditable( + reportStatus, + formData, + stateUser, + formYear + ); + const prevYearDisabled = prevYear ? prevYear.disabled : false; const onChange = ({ target: { name: id, value } }) => { @@ -143,9 +155,9 @@ const Question = ({ /> {/* If there are subquestions, wrap them so they are indented with the - blue line. But don't do it for the subquestions of a fieldset. If - the fieldset is a subchild, it will already be indented; if it's - not, then its children shouldn't be indented either. */} + blue line. But don't do it for the subquestions of a fieldset. If + the fieldset is a subchild, it will already be indented; if it's + not, then its children shouldn't be indented either. */} {shouldRenderChildren && ( <div className="ds-c-choice__checkedChild"> {question.questions.map((q) => ( diff --git a/services/ui-src/src/components/fields/Question.test.jsx b/services/ui-src/src/components/fields/Question.test.jsx deleted file mode 100644 index 471da5555..000000000 --- a/services/ui-src/src/components/fields/Question.test.jsx +++ /dev/null @@ -1,91 +0,0 @@ -import React from "react"; -import { Provider } from "react-redux"; -import { screen, render } from "@testing-library/react"; -import configureMockStore from "redux-mock-store"; -import Question from "./Question"; - -const mockStore = configureMockStore(); -const store = mockStore({ - formData: [ - { - contents: { - section: { - year: 2023, - state: "AL", - }, - }, - }, - ], - stateUser: { - abbr: "CMS", - currentUser: { - role: "test role", - }, - }, - global: { - formYear: 2023, - }, - reportStatus: { - status: "in_progress", - AL2023: { - status: "in_progress", - username: "my_user@name.com", - lastChanged: new Date(), - }, - }, - enrollmentCounts: { - chipEnrollments: {}, - }, -}); - -const defaultProps = { - tableTitle: "Managed Care Costs", - question: { - questions: [], - fieldset_info: { - rows: [ - [ - { - contents: "Eligible children", - }, - { - actions: ["identity"], - targets: ["$..*[?(@ && @.id=='2023-05-a-03-01-a')].answer.entry"], - }, - { - actions: ["identity"], - targets: ["$..*[?(@ && @.id=='2023-05-a-03-01-b')].answer.entry"], - }, - ], - ], - headers: [ - { - contents: "", - }, - { - contents: "FFY 2023", - }, - { - contents: "FFY 2024", - }, - ], - }, - fieldset_type: "synthesized_table", - type: "fieldset", - }, -}; - -const QuestionComponentWithProps = () => { - return ( - <Provider store={store}> - <Question {...defaultProps} /> - </Provider> - ); -}; - -describe("Question component", () => { - test("render question", () => { - render(QuestionComponentWithProps()); - expect(screen.getByText("Eligible children")).toBeVisible(); - }); -}); diff --git a/services/ui-src/src/components/fields/SynthesizedTable.jsx b/services/ui-src/src/components/fields/SynthesizedTable.jsx index a7946512f..b178a4415 100644 --- a/services/ui-src/src/components/fields/SynthesizedTable.jsx +++ b/services/ui-src/src/components/fields/SynthesizedTable.jsx @@ -7,10 +7,44 @@ import { lteMask } from "../../util/constants"; import PropTypes from "prop-types"; const SynthesizedTable = ({ question, tableTitle, printView }) => { - const { headers, rows } = useSelector( - (state) => getTableContents(state, question, printView), - shallowEqual - ); + const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = + useSelector( + (state) => [ + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData, + ], + shallowEqual + ); + + const rows = question.fieldset_info.rows.map((row) => { + let contents = row; + if (printView) { + contents = row.filter((cell) => cell?.mask !== lteMask); + } + return contents.map((cell) => { + const value = synthesizeValue( + cell, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ); + + return typeof value.contents === "number" && Number.isNaN(value.contents) + ? { contents: "Not Available" } + : value; + }); + }); + + const headers = printView + ? question.fieldset_info.headers.filter( + (header) => header?.mask !== lteMask + ) + : question.fieldset_info.headers; return ( <div className="synthesized-table ds-u-margin-top--2"> @@ -71,38 +105,4 @@ SynthesizedTable.propTypes = { tableTitle: PropTypes.string.isOptional, }; -const getTableContents = (state, question, printView) => { - const { allStatesData, formData } = state; - const stateName = state.global.stateName; - const stateUserAbbr = state.stateUser.abbr; - const chipEnrollments = state.enrollmentCounts.chipEnrollments; - const { headers: questionHeaders, rows: questionRows } = - question.fieldset_info; - - const rows = questionRows.map((row) => { - let contents = row; - if (printView) { - contents = row.filter((cell) => cell?.mask !== lteMask); - } - return contents.map((cell) => { - const value = synthesizeValue( - cell, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ); - - return typeof value.contents === "number" && Number.isNaN(value.contents) - ? { contents: "Not Available" } - : value; - }); - }); - const headers = printView - ? questionHeaders.filter((header) => header?.mask !== lteMask) - : questionHeaders; - return { headers, rows }; -}; - export default SynthesizedTable; diff --git a/services/ui-src/src/components/fields/SynthesizedValue.jsx b/services/ui-src/src/components/fields/SynthesizedValue.jsx index 076877a40..b14035ad8 100644 --- a/services/ui-src/src/components/fields/SynthesizedValue.jsx +++ b/services/ui-src/src/components/fields/SynthesizedValue.jsx @@ -9,15 +9,34 @@ import { lteMask } from "../../util/constants"; import PropTypes from "prop-types"; const SynthesizedValue = ({ question, printView, ...props }) => { - const { value, showValue } = useSelector( - (state) => getValue(state, question, printView), - shallowEqual - ); + const [allStatesData, stateName, stateUserAbbr, chipEnrollments, formData] = + useSelector( + (state) => [ + state.allStatesData, + state.global.stateName, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + state.formData, + ], + shallowEqual + ); + + const showValue = !(printView && question.fieldset_info.mask === lteMask); + const renderValue = () => { + return synthesizeValue( + question.fieldset_info, + allStatesData, + stateName, + stateUserAbbr, + chipEnrollments, + formData + ).contents; + }; return ( showValue && ( <div> - <strong>Computed:</strong> {value} + <strong>Computed:</strong> {renderValue()} {question.questions && question.questions.map((q) => ( <Question key={q.id} question={q} {...props} /> @@ -30,21 +49,4 @@ SynthesizedValue.propTypes = { question: PropTypes.object.isRequired, }; -const getValue = (state, question, printView) => { - const { allStatesData, formData } = state; - const stateName = state.global.stateName; - const stateUserAbbr = state.stateUser.abbr; - const chipEnrollments = state.enrollmentCounts.chipEnrollments; - const value = synthesizeValue( - question.fieldset_info, - allStatesData, - stateName, - stateUserAbbr, - chipEnrollments, - formData - ).contents; - const showValue = !(printView && question.fieldset_info.mask === lteMask); - return { value, showValue }; -}; - export default SynthesizedValue; diff --git a/services/ui-src/src/components/layout/FormNavigation.jsx b/services/ui-src/src/components/layout/FormNavigation.jsx index 1590e7bae..967c5c242 100644 --- a/services/ui-src/src/components/layout/FormNavigation.jsx +++ b/services/ui-src/src/components/layout/FormNavigation.jsx @@ -17,14 +17,13 @@ const FormNavigation = () => { const history = useHistory(); const location = useLocation(); - const [sections, role] = useSelector( - (state) => [ - selectSectionsForNav(state.formData), - state.stateUser?.currentUser?.role, - ], + const [formData, role] = useSelector( + (state) => [state.formData, state.stateUser?.currentUser?.role], shallowEqual ); + const sections = selectSectionsForNav(formData); + const items = []; sections.forEach((section) => { if (section.subsections.length < 2) { diff --git a/services/ui-src/src/components/layout/Header.jsx b/services/ui-src/src/components/layout/Header.jsx index 7a11c1f27..d7ff51cd6 100644 --- a/services/ui-src/src/components/layout/Header.jsx +++ b/services/ui-src/src/components/layout/Header.jsx @@ -17,18 +17,22 @@ import appLogo from "../../assets/images/MDCT_CARTS_2x.png"; export const Header = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); - const { currentReportStatus, currentUser } = useSelector((state) => { - const { stateUser, formData, reportStatus } = state; - const formYear = state.global.formYear; - const currentReportStatus = getCurrentReportStatus( - reportStatus, - formData, - stateUser, - formYear - ); - const currentUser = stateUser.currentUser; - return { currentReportStatus, currentUser }; - }, shallowEqual); + const [stateUser, formData, formYear, reportStatus] = useSelector( + (state) => [ + state.stateUser, + state.formData, + state.global.formYear, + state.reportStatus, + ], + shallowEqual + ); + const { currentUser } = stateUser; + const currentReportStatus = getCurrentReportStatus( + reportStatus, + formData, + stateUser, + formYear + ); const location = useLocation(); const showAutoSaveOnReport = (location, currentUser, currentReportStatus) => { diff --git a/services/ui-src/src/components/layout/Part.jsx b/services/ui-src/src/components/layout/Part.jsx index 6186f582f..d2d5e8022 100644 --- a/services/ui-src/src/components/layout/Part.jsx +++ b/services/ui-src/src/components/layout/Part.jsx @@ -12,11 +12,50 @@ import { shouldDisplay } from "../../util/shouldDisplay"; const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { const [, section] = partId.split("-"); - const { contextData, questions, show, text, title } = useSelector( - (state) => getPartInfo(state, partId), + const [ + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + ] = useSelector( + (state) => [ + state.formData, + state.stateUser.currentUser.role, + state.reportStatus, + state.allStatesData, + state.stateUser.abbr, + state.enrollmentCounts.chipEnrollments, + ], shallowEqual ); + const part = selectFragment(formData, partId); + const partContextData = part.context_data; + + const contextData = partContextData; + const questions = selectQuestionsForPart( + formData, + currentUserRole, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partId + ); + const show = shouldDisplay( + currentUserRole, + formData, + reportStatus, + allStatesData, + stateUserAbbr, + chipEnrollments, + partContextData + ); + const text = part ? part.text : null; + const title = part ? part.title : null; + const getPartContent = () => { if (show) { return ( @@ -64,44 +103,4 @@ const Part = ({ partId, partNumber, nestedSubsectionTitle, printView }) => { </div> ); }; - -const getPartInfo = (state, partId) => { - const { formData, reportStatus, allStatesData } = state; - const currentUserRole = state.stateUser.currentUser.role; - const stateUserAbbr = state.stateUser.abbr; - const chipEnrollments = state.enrollmentCounts.chipEnrollments; - - const part = selectFragment(formData, partId); - const partContextData = part.context_data; - - const questions = selectQuestionsForPart( - formData, - currentUserRole, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partId - ); - const show = shouldDisplay( - currentUserRole, - formData, - reportStatus, - allStatesData, - stateUserAbbr, - chipEnrollments, - partContextData - ); - const text = part ? part.text : null; - const title = part ? part.title : null; - - return { - contextData: partContextData, - questions, - show, - text, - title, - }; -}; - export default Part; diff --git a/services/ui-src/src/components/layout/Section.jsx b/services/ui-src/src/components/layout/Section.jsx index 7934e7abc..b204e1b25 100644 --- a/services/ui-src/src/components/layout/Section.jsx +++ b/services/ui-src/src/components/layout/Section.jsx @@ -9,9 +9,8 @@ import FormActions from "./FormActions"; import Autosave from "../fields/Autosave"; const Section = ({ subsectionId, sectionId, printView }) => { - const title = useSelector((state) => - selectSectionTitle(state.formData, sectionId) - ); + const formData = useSelector((state) => state.formData); + const title = selectSectionTitle(formData, sectionId); return ( <div className="section-basic-info ds-l-col--9 content"> diff --git a/services/ui-src/src/components/layout/Subsection.jsx b/services/ui-src/src/components/layout/Subsection.jsx index c6d2a9571..6417beca6 100644 --- a/services/ui-src/src/components/layout/Subsection.jsx +++ b/services/ui-src/src/components/layout/Subsection.jsx @@ -9,16 +9,13 @@ import { selectSubsectionTitleAndPartIDs } from "../../store/selectors"; import PropTypes from "prop-types"; const Subsection = ({ subsectionId, printView }) => { - const { partIds, title, text } = useSelector((state) => { - const subsection = selectSubsectionTitleAndPartIDs( - state.formData, - subsectionId - ); - const partIds = subsection ? subsection.parts : []; - const title = subsection ? subsection.title : null; - const text = subsection ? subsection.text : null; - return { partIds, title, text }; - }); + const formData = useSelector((state) => state.formData); + + const subsection = selectSubsectionTitleAndPartIDs(formData, subsectionId); + + const partIds = subsection ? subsection.parts : []; + const title = subsection ? subsection.title : null; + const text = subsection ? subsection.text : null; return ( <div id={subsectionId}> diff --git a/services/ui-src/src/components/layout/TableOfContents.jsx b/services/ui-src/src/components/layout/TableOfContents.jsx index 118c9a7b5..d0ef0f601 100644 --- a/services/ui-src/src/components/layout/TableOfContents.jsx +++ b/services/ui-src/src/components/layout/TableOfContents.jsx @@ -7,53 +7,47 @@ import { VerticalNav } from "@cmsgov/design-system"; import { AppRoles } from "../../types"; const TableOfContents = () => { - const { items, selectedId } = useSelector((state) => { - const userRole = state.stateUser.currentUser.role; - const formYear = state.global.formYear; - const sections = getSections(state.formData); - const items = getItems(sections, formYear, userRole); - const selectedId = items.find((item) => item.selected)?.id; - return { items, selectedId }; - }, shallowEqual); - - return ( - <div className="toc" data-testid="toc" aria-label="Table of Contents"> - <VerticalNav - selectedId={selectedId} - ariaNavLabel="Vertical Navigation Element" - items={items} - /> - </div> + const [userRole, formYear, formData] = useSelector( + (state) => [ + state.stateUser.currentUser.role, + state.global.formYear, + state.formData, + ], + shallowEqual ); -}; -const getSections = (formData) => { - if (!formData) { - return []; - } - return formData.map( - ({ - contents: { - section: { id: sectionId, ordinal, subsections, title: sectionTitle }, - }, - }) => ({ - id: sectionId, - ordinal, - title: sectionTitle, - subsections: subsections.map( - ({ id: subsectionId, title: subsectionTitle }) => ({ - id: subsectionId, - title: subsectionTitle, - }) - ), - }) - ); -}; - -const getItems = (sections, formYear, userRole) => { const location = useLocation(); const history = useHistory(); + const sections = () => { + if (formData) { + const sections = formData; + return sections.map( + ({ + contents: { + section: { + id: sectionId, + ordinal, + subsections, + title: sectionTitle, + }, + }, + }) => ({ + id: sectionId, + ordinal, + title: sectionTitle, + subsections: subsections.map( + ({ id: subsectionId, title: subsectionTitle }) => ({ + id: subsectionId, + title: subsectionTitle, + }) + ), + }) + ); + } + return []; + }; + const idToUrl = (location, id) => { const endOfPath = id.replace(/-/g, "/"); if (location.pathname.startsWith("/views/sections")) { @@ -72,7 +66,7 @@ const getItems = (sections, formYear, userRole) => { history.push(url); }; - const items = sections + const items = sections() .map(({ id: sectionId, ordinal, subsections, title: sectionTitle }) => ({ id: sectionId, items: @@ -114,7 +108,16 @@ const getItems = (sections, formYear, userRole) => { }); } - return items; + const foundSelectedId = items.find((item) => item.selected)?.id; + return ( + <div className="toc" data-testid="toc" aria-label="Table of Contents"> + <VerticalNav + selectedId={foundSelectedId} + ariaNavLabel="Vertical Navigation Element" + items={items} + /> + </div> + ); }; export default TableOfContents; From 77b91b2bdae914614c518336713f427f728ca3b7 Mon Sep 17 00:00:00 2001 From: Nick Summers <ntsummers1@proton.me> Date: Wed, 2 Oct 2024 15:05:32 -0400 Subject: [PATCH 22/24] Remove section 1's question 9 accidental carryover (#139787) --- .../data/seed/seed-section-base-2024.json | 227 ++++++++++++++---- services/ui-src/src/store/formData.js | 75 +++--- 2 files changed, 213 insertions(+), 89 deletions(-) diff --git a/services/database/data/seed/seed-section-base-2024.json b/services/database/data/seed/seed-section-base-2024.json index 736d35cb8..329b0e1ce 100644 --- a/services/database/data/seed/seed-section-base-2024.json +++ b/services/database/data/seed/seed-section-base-2024.json @@ -704,6 +704,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -725,6 +729,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -747,6 +755,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -769,6 +781,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -790,6 +806,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -812,6 +832,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -834,6 +858,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -856,6 +884,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -865,9 +897,8 @@ }, { "id": "2024-01-a-03-09", - "hint": "For example: removing a waiting period.", "type": "radio", - "label": "Have you made any changes to the substitution of coverage policies?", + "label": "Have you made any changes to the enrollment process for health plan selection?", "answer": { "entry": null, "options": [ @@ -878,27 +909,10 @@ { "label": "No", "value": "no" - } - ] - }, - "context_data": { - "bullet_text": "Subsitution of coverage policies" - } - }, - { - "id": "2024-01-a-03-10", - "type": "radio", - "label": "Have you made any changes to the enrollment process for health plan selection?", - "answer": { - "entry": null, - "options": [ - { - "label": "Yes", - "value": "yes" }, { - "label": "No", - "value": "no" + "label": "N/A", + "value": "n/a" } ] }, @@ -907,7 +921,7 @@ } }, { - "id": "2024-01-a-03-11", + "id": "2024-01-a-03-10", "hint": "For example: changing from the Medicaid Fair Hearing process to the review process used by all health insurance issuers statewide.", "type": "radio", "label": "Have you made any changes to the protections for applicants and enrollees?", @@ -921,6 +935,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -929,7 +947,7 @@ } }, { - "id": "2024-01-a-03-12", + "id": "2024-01-a-03-11", "hint": "For example: adding premium assistance or changing the population that receives premium assistance.", "type": "radio", "label": "Have you made any changes to premium assistance?", @@ -943,6 +961,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -951,7 +973,7 @@ } }, { - "id": "2024-01-a-03-13", + "id": "2024-01-a-03-12", "type": "radio", "label": "Have you made any changes to the methods and procedures for preventing, investigating, or referring fraud or abuse cases?", "answer": { @@ -964,6 +986,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -972,7 +998,7 @@ } }, { - "id": "2024-01-a-03-14", + "id": "2024-01-a-03-13", "type": "radio", "label": "Have you made any changes to eligibility for “lawfully residing pregnant individuals”?", "answer": { @@ -985,6 +1011,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -993,7 +1023,7 @@ } }, { - "id": "2024-01-a-03-15", + "id": "2024-01-a-03-14", "type": "radio", "label": "Have you made any changes to eligibility for “lawfully residing” children?", "answer": { @@ -1006,6 +1036,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1014,7 +1048,7 @@ } }, { - "id": "2024-01-a-03-16", + "id": "2024-01-a-03-15", "type": "radio", "label": "Have you made changes to any other policy or program areas?", "answer": { @@ -1027,6 +1061,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1038,15 +1076,7 @@ "type": "fieldset", "questions": [ { - "id": "2024-01-a-03-17", - "type": "text_multiline", - "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", - "answer": { - "entry": null - } - }, - { - "id": "2024-01-a-03-18", + "id": "2024-01-a-03-16", "type": "radio", "label": "Have you already submitted a State Plan Amendment (SPA) to reflect any changes that require a SPA?", "answer": { @@ -1059,9 +1089,21 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] } + }, + { + "id": "2024-01-a-03-17", + "type": "text_multiline", + "label": "Briefly describe why you made changes to your Medicaid expansion CHIP program (if applicable).", + "answer": { + "entry": null + } } ], "context_data": { @@ -1087,13 +1129,12 @@ "$..[?(@ && @.id=='2024-01-a-03-12')].answer.entry", "$..[?(@ && @.id=='2024-01-a-03-13')].answer.entry", "$..[?(@ && @.id=='2024-01-a-03-14')].answer.entry", - "$..[?(@ && @.id=='2024-01-a-03-15')].answer.entry", - "$..[?(@ && @.id=='2024-01-a-03-16')].answer.entry" + "$..[?(@ && @.id=='2024-01-a-03-15')].answer.entry" ] } }, - "interactive_conditional": "Show if any 2024-01-a-03 questions 1–16 has a yes answer, hide otherwise.", - "noninteractive_conditional": "Show if any 2024-01-a-03 questions 1–16 has a yes answer, hide otherwise." + "interactive_conditional": "Show if any 2024-01-a-03 questions 1–15 has a yes answer, hide otherwise.", + "noninteractive_conditional": "Show if any 2024-01-a-03 questions 1–15 has a yes answer, hide otherwise." } } ], @@ -1125,6 +1166,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1146,6 +1191,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1168,6 +1217,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1179,7 +1232,7 @@ "id": "2024-01-a-04-04", "hint": "For example: adding benefits or removing benefit limits.", "type": "radio", - "label": "Have you made any changes to the benefits available to enrolees?", + "label": "Have you made any changes to the benefits available to enrollees?", "answer": { "entry": null, "options": [ @@ -1190,6 +1243,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1211,6 +1268,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1233,6 +1294,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1255,6 +1320,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1266,7 +1335,7 @@ "id": "2024-01-a-04-08", "hint": "For example: changing amounts, populations, or the collection process.", "type": "radio", - "label": "Have you made any changes to your cost sharing requirements?", + "label": "Have you made any changes to cost sharing requirements?", "answer": { "entry": null, "options": [ @@ -1277,6 +1346,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1299,6 +1372,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1309,7 +1386,7 @@ { "id": "2024-01-a-04-10", "type": "radio", - "label": "Have you made any changes to an enrollment freeze and/or enrollment cap?", + "label": "Have you made any changes to the implementation of an enrollment freeze and/or enrollment cap?", "answer": { "entry": null, "options": [ @@ -1320,6 +1397,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1341,6 +1422,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1363,6 +1448,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1385,6 +1474,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1395,7 +1488,7 @@ { "id": "2024-01-a-04-14", "type": "radio", - "label": "Have you made any changes to the methods and procedures for preventing, investigating, or referring fraud or abuse cases?", + "label": "Have you made any changes to the methods/procedures for the prevention, investigation, or referral of fraud or abuse cases?", "answer": { "entry": null, "options": [ @@ -1406,6 +1499,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1428,6 +1525,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1450,6 +1551,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1471,6 +1576,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1492,6 +1601,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1513,6 +1626,10 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] }, @@ -1525,16 +1642,8 @@ "questions": [ { "id": "2024-01-a-04-20", - "type": "text_multiline", - "label": "Briefly describe why you made these changes to your separate CHIP program (if applicable).", - "answer": { - "entry": null - } - }, - { - "id": "2024-01-a-04-21", "type": "radio", - "label": "Have you already submitted a State Plan Amendment (SPA) to reflect any changes that require a SPA?", + "label": "Have you already submitted a SPA to reflect any of the changes addressed in this section that require a SPA?", "answer": { "entry": null, "options": [ @@ -1545,9 +1654,21 @@ { "label": "No", "value": "no" + }, + { + "label": "N/A", + "value": "n/a" } ] } + }, + { + "id": "2024-01-a-04-21", + "type": "text_multiline", + "label": "Briefly describe why you made changes to your separate CHIP program (if applicable).", + "answer": { + "entry": null + } } ], "context_data": { diff --git a/services/ui-src/src/store/formData.js b/services/ui-src/src/store/formData.js index b6d86bf5b..21f4db74a 100644 --- a/services/ui-src/src/store/formData.js +++ b/services/ui-src/src/store/formData.js @@ -47,45 +47,48 @@ export default (state = initialState, action) => { } } - var chgsection1 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; - for (let x in chgsection1) { - updatedData[1].contents.section.subsections[0].parts[2].questions[ - x - ].answer.options = [ - { - label: "Yes", - value: "yes", - }, - { label: "No", value: "no" }, - { label: "N/A", value: "n/a" }, + if (updatedData[1].year < 2024) { + var chgsection1 = [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ]; - } - updatedData[1].contents.section.subsections[0].parts[2].questions[16].questions[1].answer.options = - [ - { - label: "Yes", - value: "yes", - }, - { label: "No", value: "no" }, - { label: "N/A", value: "n/a" }, - ]; - - var chgsection2 = [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - ]; - for (let x in chgsection2) { - updatedData[1].contents.section.subsections[0].parts[3].questions[ - x - ].answer.options = [ - { - label: "Yes", - value: "yes", - }, - { label: "No", value: "no" }, - { label: "N/A", value: "n/a" }, + for (let x in chgsection1) { + updatedData[1].contents.section.subsections[0].parts[2].questions[ + x + ].answer.options = [ + { + label: "Yes", + value: "yes", + }, + { label: "No", value: "no" }, + { label: "N/A", value: "n/a" }, + ]; + } + updatedData[1].contents.section.subsections[0].parts[2].questions[16].questions[1].answer.options = + [ + { + label: "Yes", + value: "yes", + }, + { label: "No", value: "no" }, + { label: "N/A", value: "n/a" }, + ]; + + var chgsection2 = [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, ]; + for (let x in chgsection2) { + updatedData[1].contents.section.subsections[0].parts[3].questions[ + x + ].answer.options = [ + { + label: "Yes", + value: "yes", + }, + { label: "No", value: "no" }, + { label: "N/A", value: "n/a" }, + ]; + } } - return updatedData; case QUESTION_ANSWERED: { const fragment = selectQuestion({ formData: state }, action.fragmentId); From 5eaaa1d7535ff45a101fbb653bd8e76e15a63abf Mon Sep 17 00:00:00 2001 From: Garrett Rabian <57802560+gmrabian@users.noreply.github.com> Date: Thu, 3 Oct 2024 08:36:16 -0600 Subject: [PATCH 23/24] update aws-sdk dependencies (#139790) --- services/app-api/package.json | 10 +- services/app-api/yarn.lock | 1514 ++++++++++---------- services/carts-bigmac-streams/package.json | 6 +- services/carts-bigmac-streams/yarn.lock | 1096 +++++++------- services/database/package.json | 4 +- services/database/yarn.lock | 1050 +++++++------- services/ui-auth/package.json | 2 +- services/ui-auth/yarn.lock | 1013 ++++++------- 8 files changed, 2351 insertions(+), 2344 deletions(-) diff --git a/services/app-api/package.json b/services/app-api/package.json index bd0ddd9c1..ae995f1d1 100644 --- a/services/app-api/package.json +++ b/services/app-api/package.json @@ -27,11 +27,11 @@ "typescript": "^4.5.4" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.621.0", - "@aws-sdk/client-s3": "^3.621.0", - "@aws-sdk/client-ssm": "^3.621.0", - "@aws-sdk/lib-dynamodb": "^3.621.0", - "@aws-sdk/s3-request-presigner": "^3.621.0", + "@aws-sdk/client-dynamodb": "^3.662.0", + "@aws-sdk/client-s3": "^3.662.0", + "@aws-sdk/client-ssm": "^3.662.0", + "@aws-sdk/lib-dynamodb": "^3.662.0", + "@aws-sdk/s3-request-presigner": "^3.662.0", "aws-jwt-verify": "^3.1.0", "dompurify": "^3.1.4", "jsdom": "^24.1.0", diff --git a/services/app-api/yarn.lock b/services/app-api/yarn.lock index 01a60594a..12ab939d4 100644 --- a/services/app-api/yarn.lock +++ b/services/app-api/yarn.lock @@ -70,411 +70,412 @@ "@smithy/util-utf8" "^2.0.0" tslib "^2.6.2" -"@aws-sdk/client-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" - integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== +"@aws-sdk/client-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.662.0.tgz#462c8155eb2cc38f894a87c4f06d2371d4bf6b1b" + integrity sha512-d5t6hDQkVYqRvp6Cf6WygbseY8gln7Ca/tI4+1B6JXSl2UzffX5ovx2SOjNEPlyGGtZYIiOfqOnKnFlaj0+Gxg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-endpoint-discovery" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/client-sts" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-endpoint-discovery" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.1.6" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-s3@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.621.0.tgz#86a0e77913cd1e82308299835431887fe306c3a0" - integrity sha512-YhGkd2HQTM4HCYJIAVWvfbUMpOF7XUr1W/e2LN3CFP0WTF4zcCJKesJ2iNHrExqC0Ek1+qarMxiXBK95itfjYQ== +"@aws-sdk/client-s3@^3.662.0": + version "3.663.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.663.0.tgz#02ee62efd49a11aaae66e805dd446f3f2ea43fab" + integrity sha512-XWoy6wglrxFngdswGbccR7cwmafe3ycx2/vIRDuVnIeSYdj/PgYACBt5JEM5NEzW26kFtlJpeN9hUH1i6tyfuQ== dependencies: "@aws-crypto/sha1-browser" "5.2.0" "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-bucket-endpoint" "3.620.0" - "@aws-sdk/middleware-expect-continue" "3.620.0" - "@aws-sdk/middleware-flexible-checksums" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-location-constraint" "3.609.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-sdk-s3" "3.621.0" - "@aws-sdk/middleware-signing" "3.620.0" - "@aws-sdk/middleware-ssec" "3.609.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/signature-v4-multi-region" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@aws-sdk/xml-builder" "3.609.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/eventstream-serde-browser" "^3.0.5" - "@smithy/eventstream-serde-config-resolver" "^3.0.3" - "@smithy/eventstream-serde-node" "^3.0.4" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-blob-browser" "^3.1.2" - "@smithy/hash-node" "^3.0.3" - "@smithy/hash-stream-node" "^3.1.2" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/md5-js" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/client-sts" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-bucket-endpoint" "3.662.0" + "@aws-sdk/middleware-expect-continue" "3.662.0" + "@aws-sdk/middleware-flexible-checksums" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-location-constraint" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-sdk-s3" "3.662.0" + "@aws-sdk/middleware-ssec" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/signature-v4-multi-region" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@aws-sdk/xml-builder" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/eventstream-serde-browser" "^3.0.10" + "@smithy/eventstream-serde-config-resolver" "^3.0.7" + "@smithy/eventstream-serde-node" "^3.0.9" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-blob-browser" "^3.1.6" + "@smithy/hash-node" "^3.0.7" + "@smithy/hash-stream-node" "^3.1.6" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/md5-js" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-retry" "^3.0.3" - "@smithy/util-stream" "^3.1.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" + "@smithy/util-stream" "^3.1.9" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.1.6" tslib "^2.6.2" -"@aws-sdk/client-ssm@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.621.0.tgz#d5928d86c65c2cb072f8d3bdaa739d3ff06cd1e5" - integrity sha512-E4OM7HH9qU2TZGDrX2MlBlBr9gVgDm573Qa1CTFih58dUZyaPEOiZSYLUNOyw4nMyVLyDMR/5zQ4wAorNwKVPw== +"@aws-sdk/client-ssm@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.662.0.tgz#fa15013e4485a5e2a5dd726e45afd7eb08f60feb" + integrity sha512-69rDJozJRBuUjvejZceoG1Xdm0L7elsH7OIPVoNyHwN7CyPzIY1j0fm7+G+3GK9N4VdPC4m0xge5mNVfEeV7hQ== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/client-sts" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.1.6" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== +"@aws-sdk/client-sso-oidc@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.662.0.tgz#f2816f674b4125ff900435cc8b7fadc227455c81" + integrity sha512-YZrH0sftdmjvEIY8u0LCrfEhyaMVpN0+K0K9WsUrFRMZ7DK6nB9YD1f5EaKUN5UjNw5S7gbjSdI8neSCoELjhw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== +"@aws-sdk/client-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.662.0.tgz#43c9238799a2271e3652089bcddf105752fdacea" + integrity sha512-4j3+eNSnNblcIYCJrsRRdyXFjAWGpGa7s7pdIyDMLwtYA7AKNlnlyQV14jtezhMrN2j6qZ7zZmnwEyFGipgfWA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== +"@aws-sdk/client-sts@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.662.0.tgz#8d35b7d25c813e3b2ba0d8efd42d9e61823e088f" + integrity sha512-RjiXvfW3a36ybHuzYuZ6ZgddYiENiXLDGC3tlZMsKWuoVQNeoh2grx1wxUA6e4ajAIqJLXs5dAYTSXzGaAqHTA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== - dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" +"@aws-sdk/core@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.662.0.tgz#93764660c9fabbc10e77ddcde283f088e22bebc3" + integrity sha512-w64Fa4dsgM8vN7Z+QPR3n+aAl5GXThQRH8deT/iF1rLrzfq7V8xxACJ/CLVaxrZMZUPUUgG7DUAo95nXFWmGjA== + dependencies: + "@smithy/core" "^2.4.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/signature-v4" "^4.2.0" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" fast-xml-parser "4.4.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== +"@aws-sdk/credential-provider-env@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.662.0.tgz#fe58b29abefd0fa968f79c7e7d15381009945a75" + integrity sha512-Dgwb0c/FH4xT5QZZFdLTFmCkdG3woXIAgLx5HCoH9Ty5G7T8keHOU9Jm4Vpe2ZJXL7JJHlLakGS65+bgXTuLSQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" +"@aws-sdk/credential-provider-http@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.662.0.tgz#02e3e97e28ec1bb99bdd91ddc9df5d48e1a31b42" + integrity sha512-Wnle/uJI4Ku9ABJHof9sio28VlaSbF3jVQKTSVCJftvbKELlFOlY5aXSjtu0wwcJqDS5r78N5KM7aARUJES+DA== + dependencies: + "@aws-sdk/types" "3.662.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-ini@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.662.0.tgz#505e37298cc6e2909020c25d555bf6b6d3f4cbdc" + integrity sha512-jk+A5B0NRYG4KrjJ8ef1+r9bFjhpwUm/A9grJmp3JOwcHKXvI2Gy9BXNqfqqVgrK0Gns+WyhJZy6rsRaC+v1oQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.662.0.tgz#086aa57b4fbca4701566f9ac88d59aa67658a5f8" + integrity sha512-2O9wjxdLcU1b+bWVkp3YYbPHo15SU3pW4KfWTca5bB/C01i1eqiHnwsOFz/WKPYYKNj0FhXtJJjeDQLtNFYI8A== + dependencies: + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-ini" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== +"@aws-sdk/credential-provider-process@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.662.0.tgz#2c9fef18cffc827c26b599fb2a9dfb812ca1409e" + integrity sha512-1QUdtr/JiuvRjVgA8enpgCwjq7Eud8eVUT0i/vpWuFp5TV2FFq/8BD3GBkesTdy4Ylms6QVGf7J6INdfUWQEmw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== - dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.662.0.tgz#6d0c9f5f819da6b473d39d0cf4cd42cbbca3a524" + integrity sha512-zxze6pDPgwBwl7S3h4JDALCCz93pTAfulbCY8FqMEd7GvnAiofHpL9svyt4+gytXwwUSsQ6KxCMVLbi+8k8YIg== + dependencies: + "@aws-sdk/client-sso" "3.662.0" + "@aws-sdk/token-providers" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== +"@aws-sdk/credential-provider-web-identity@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.662.0.tgz#18246e29d5f8b242a0717ff7110680cc5816d163" + integrity sha512-GhPwxmHSFtwCckuT+34JG+U99qKfDWVYPLJOPI6b35+aLhfVqW5CHPmVjtM4WZqbxzsA0a3KAYA/U1ZaluI4SA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -485,208 +486,201 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" - integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== +"@aws-sdk/lib-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.662.0.tgz#425073c71c284cff3636faf8daa07e692c8b0504" + integrity sha512-DCmhc9hccIsMbYl8xINLtxYmsUlSVCUKcDA19Z+7901Jlu8OwzidwMBy4ZK8wAmy6/aG4agH67FY4i0Hee3z9g== dependencies: - "@aws-sdk/util-dynamodb" "3.621.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@aws-sdk/util-dynamodb" "3.662.0" + "@smithy/core" "^2.4.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-bucket-endpoint@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.620.0.tgz#c5dc0e98b6209a91479cad6c2c74fbc5a3429fab" - integrity sha512-eGLL0W6L3HDb3OACyetZYOWpHJ+gLo0TehQKeQyy2G8vTYXqNTeqYhuI6up9HVjBzU9eQiULVQETmgQs7TFaRg== +"@aws-sdk/middleware-bucket-endpoint@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.662.0.tgz#49c223b868a72a5d49deadfa799136b7c638381d" + integrity sha512-qBdQ7zqdanCPep7puYw1s6lH8lQ2uWP6+klp35cAYjCMbGiItclteXRQOuldkd9Oc7dtoYlTJBDKeAybJZShlw== dependencies: - "@aws-sdk/types" "3.609.0" + "@aws-sdk/types" "3.662.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" - integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== +"@aws-sdk/middleware-endpoint-discovery@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.662.0.tgz#ad1e99eeb5b13282d26f3032822ec41840eaa03c" + integrity sha512-os/gBtal8DDOZHUVQNymy8K/8JNC1tPqznsUoEkjoYaQoerT9PR3PPrc/oWTB9h1VLXZOwJ8HcCtsEbXUAddTg== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-expect-continue@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.620.0.tgz#6a362c0f0696dc6749108a33de9998e0fa6b50ec" - integrity sha512-QXeRFMLfyQ31nAHLbiTLtk0oHzG9QLMaof5jIfqcUwnOkO8YnQdeqzakrg1Alpy/VQ7aqzIi8qypkBe2KXZz0A== +"@aws-sdk/middleware-expect-continue@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.662.0.tgz#04f3df778ec20a7e508f4576c89cea489bfd53b4" + integrity sha512-kSSeblAz0bdE8golejbEp9tLoP1EcYGWqrAjv5kDwbo56J9vbBh12shxDULpDBNXXLBoK4DktHgJl3RqwXlK5g== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-flexible-checksums@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.620.0.tgz#42cd48cdc0ad9639545be000bf537969210ce8c5" - integrity sha512-ftz+NW7qka2sVuwnnO1IzBku5ccP+s5qZGeRTPgrKB7OzRW85gthvIo1vQR2w+OwHFk7WJbbhhWwbCbktnP4UA== +"@aws-sdk/middleware-flexible-checksums@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.662.0.tgz#18b04ce5ea0a354560019961c1d28ecf5b150695" + integrity sha512-aZEA0a0hYfOL2ah+ZlFAVr2HMWetNooyrDFq+iP04CmE674WCJBp71DdQrRvNQsW+PBkq7iHsgfYEQumYMqz9Q== dependencies: "@aws-crypto/crc32" "5.2.0" "@aws-crypto/crc32c" "5.2.0" - "@aws-sdk/types" "3.609.0" + "@aws-sdk/types" "3.662.0" "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.662.0.tgz#f3d647d294b19da17ef5845b87dc5c0788196a1e" + integrity sha512-Gkb0J1LTvD8LOS8uwoRI5weFXvvJwP1jfnYwzQrFgLymRFHJm5JtORQZtmw34dtdou+IBTUsH1mgI8b3QVVH3w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-location-constraint@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz#7ed82d71e5ddcd50683ef2bbde10d1cc2492057e" - integrity sha512-xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A== +"@aws-sdk/middleware-location-constraint@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.662.0.tgz#7abc6484bd517142f4a8e711480382e28bf2bbd9" + integrity sha512-+OAm1hKXGy+F/KJFAc8RKX/z74ZOPEqVzg70kzy/mdSNGzJwvEOfT+KwDVncZ01jk9jso1Q8DXGmxfWzZ/n4aw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.662.0.tgz#8c2ff7d543fe691a06020be853eeb9481409614d" + integrity sha512-aSpwVHtfMlqzpmnmmUgRNCaIcxXdRrGqGWG+VWXuYR1F6jJARDDCxGkSuKiPEOLX0h0BroUo4gqbM8ILXQ8rVw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== +"@aws-sdk/middleware-recursion-detection@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.662.0.tgz#5af684014a604d474e6bd763a5d2a3fbfff84d36" + integrity sha512-V/MYE+LOFIQDLnpWMHLxnKu+ELhD3pLOrWXVhKpVit6YcHxaOz6nvB40CPamSPDXenA11FGXKAGNHZ0loTpDQg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-sdk-s3@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.621.0.tgz#da9cc709fffa4d269bb472e8ca42f2a4d80a842b" - integrity sha512-CJrQrtKylcqvyPkRR16JmPZkHroCkWwLErQrg30ZcBPNNok8xbfX6cYqG16XDTnu4lSYzv2Yqc4w4oOBv8xerQ== +"@aws-sdk/middleware-sdk-s3@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.662.0.tgz#f4980918bc2295c9432cbe3940dfe4ab986bc86d" + integrity sha512-Ur5UGuS/bP5ftBxepOYJmTYES4Crh9TwIbBMUqsaal/XcdvQ7uYXK/PvlYg9P/bLpStmDBb1bxmnmjdsQBwSgw== dependencies: - "@aws-sdk/types" "3.609.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/types" "3.662.0" "@aws-sdk/util-arn-parser" "3.568.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/core" "^2.4.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/signature-v4" "^4.2.0" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-stream" "^3.1.9" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-signing@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.620.0.tgz#8aface959d610732b0a5ede6f2c48119b33c4f3f" - integrity sha512-gxI7rubiaanUXaLfJ4NybERa9MGPNg2Ycl/OqANsozrBnR3Pw8vqy3EuVImQOyn2pJ2IFvl8ZPoSMHf4pX56FQ== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - tslib "^2.6.2" - -"@aws-sdk/middleware-ssec@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz#b87a8bc6133f3f6bdc6801183d0f9dad3f93cf9f" - integrity sha512-GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg== +"@aws-sdk/middleware-ssec@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-ssec/-/middleware-ssec-3.662.0.tgz#e70ebcf2cf3ec9ac9f0e222b8d60467c6fccded0" + integrity sha512-7dxSUCeSLYFlMEr6BwNoYiF+4X7/JyIAyjOOI/hh9hyK8D8f3/xenACb67rPb59wUs6WgWZVg+hvWBC55a5KGg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.662.0.tgz#a428403ced5d6684f29d45dd0f39c6c4ef10ab7b" + integrity sha512-NT940BLSSys/A8W3zO3g2Kj+zpeydqGbSQgN6qz84jTskQjnrlamoq+Zl9Rrp8Cn8sC10UQ09kGg97lvjVOlmg== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.662.0.tgz#1dcb6850059baa54dcb6e4556ece7ec1a4ee9d1b" + integrity sha512-MDiWl4wZSVnnTELLb+jFSe0nj9HwxJPX2JnghXKkOXmbKEiE2/21DCQwU9mr9VUq2ZOQqaSnMFPr94iRu0AVTQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@aws-sdk/s3-request-presigner@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.621.0.tgz#0c6d033dd3b3ae17061407766466ce66362c6d92" - integrity sha512-7XCH5wy1guywSa4PHKrSiAqm/mYpuKURQWD9nGN9tl2DWec6OK7z+TTTCOml8lBX8Mg5Hx2GUdO3V8uRVYnEmw== - dependencies: - "@aws-sdk/signature-v4-multi-region" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-format-url" "3.609.0" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" +"@aws-sdk/s3-request-presigner@^3.662.0": + version "3.663.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.663.0.tgz#472920fc8deea330672a83f11e2da02c954c8f7d" + integrity sha512-Z29C20dDEFo8e+j8zrk826cguY/n1WMzGSGhv8/m49zqLCgrrkYkv2/peTv+jl46lLOhFigsToYn+G+46YBOdw== + dependencies: + "@aws-sdk/signature-v4-multi-region" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-format-url" "3.662.0" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/signature-v4-multi-region@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.621.0.tgz#d8bd2e8bab970acaecfaca3de85c6924b43f07ff" - integrity sha512-u+ulCaHFveqHaTxgiYrEAyfBVP6GRKjnmDut67CtjhjslshPWYpo/ndtlCW1zc0RDne3uUeK13Pqp7dp7p1d6g== +"@aws-sdk/signature-v4-multi-region@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.662.0.tgz#5bdcafb93fbceb8787d5c2ccc15ef9eb22f8f82e" + integrity sha512-nXjFNs/VCT4jh8JyfCDTzUKfnhQU4JTwc0fi6mpQIig88fScKSBNxN4zm1zyg196xf6CBKlQc9UVnMsJYtWYDA== dependencies: - "@aws-sdk/middleware-sdk-s3" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/middleware-sdk-s3" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/signature-v4" "^4.2.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.662.0.tgz#89c60983e13036cebc0e0310ae226e2254f5a741" + integrity sha512-OqtBPutNC9Am10P1W5IwqRvzCVQAHRxWxZnfDBh1FQjNmoboGWYSriKxbrCRYLFffusNuzo8KnOFOmg1sRlhJQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.662.0.tgz#323de11059df4fd7169a381c166a8aae03abe757" + integrity sha512-Ff9/KRmIm8iEzodxzISLj4/pB/0hX2nVw1RFeOBC65OuM6nHrAdWHHog/CVx25hS5JPU0uE3h6NlWRaBJ7AV5w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -704,31 +698,31 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" - integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== +"@aws-sdk/util-dynamodb@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.662.0.tgz#47b1747f14300384af66b6a07fb4ba7a01318194" + integrity sha512-V079cMhwUTu086eS1grS/F7WeOrfqAW2a2KSFKR/zxLwZPYIoMiCUeoqCgK0PL5DEqdO0EVDPuWe/glEiO52dw== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.662.0.tgz#a124838077ae230bba605310a73e43493e58e3d1" + integrity sha512-RQ/78yNUxZZZULFg7VxT7oObGOR/FBc0ojiFoCAKC20ycY8VvVX5Eof4gyxoVpwOP7EoZO3UlWSIqtaEV/X70w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" + "@smithy/util-endpoints" "^2.1.3" tslib "^2.6.2" -"@aws-sdk/util-format-url@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.609.0.tgz#f53907193bb636b52b61c81bbe6d7bd5ddc76c68" - integrity sha512-fuk29BI/oLQlJ7pfm6iJ4gkEpHdavffAALZwXh9eaY1vQ0ip0aKfRTiNudPoJjyyahnz5yJ1HkmlcDitlzsOrQ== +"@aws-sdk/util-format-url@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-format-url/-/util-format-url-3.662.0.tgz#dbf45c6ace10b4e9d949f68ef1cf0932732ce9fc" + integrity sha512-McyEyXsZMzuk/nqrVEbjCSmsKykJ7UI4lTDMdaqFdL0l5K/6VWgbFc3xOZcxEGBIvNucHiusQhqJXYHCAG65Dg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -738,32 +732,32 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.662.0.tgz#b17b847b38ffa88944939534069bf78a277723ed" + integrity sha512-5wQd+HbNTY1r1Gndxf93dAEFtKz1DqcalI4Ym40To+RIonSsYQNRomFoizYNgJ1P+Mkfsr4P1dy/MNTlkqTZuQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.662.0.tgz#7199eef53edb1c175e455c94596294541a5aaef4" + integrity sha512-vBRbZ9Hr1OGmdJPWj36X0fR8/VdI2JiwK6+oJRa6qfJ6AnhqCYZbCyeA6JIDeEu3M9iu1OLjenU8NdXhTz8c2w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/xml-builder@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz#eeb3d5cde000a23cfeeefe0354b6193440dc7d87" - integrity sha512-l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA== +"@aws-sdk/xml-builder@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.662.0.tgz#6cbe5aea6205fd2280ec043189985240628d1cb2" + integrity sha512-ikLkXn0igUpnJu2mCZjklvmcDGWT9OaLRv3JyC/cRkTaaSrblPjPM7KKsltxdMTLQ+v7fjCN0TsJpxphMfaOPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": @@ -1408,12 +1402,12 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918" integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ== -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@smithy/abort-controller@^3.1.5": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.5.tgz#ca7a86a3c6b20fabe59667143f58d9e198616d14" + integrity sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/chunked-blob-reader-native@^3.0.0": @@ -1431,133 +1425,135 @@ dependencies: tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.9.tgz#dcf4b7747ca481866f9bfac21469ebe2031a599e" + integrity sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== - dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" +"@smithy/core@^2.4.7": + version "2.4.7" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.4.7.tgz#c4dc9ab3ba5f4b36addf967ca5fce036ce3b767d" + integrity sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw== + dependencies: + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.4.tgz#e1a2bfc8a0066f673756ad8735247cf284b9735c" + integrity sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" tslib "^2.6.2" -"@smithy/eventstream-codec@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz#4a1c72b34400631b829241151984a1ad8c4f963c" - integrity sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw== +"@smithy/eventstream-codec@^3.1.6": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-3.1.6.tgz#70ca95aad82d5140522eb883fbc140f1f22dcb27" + integrity sha512-SBiOYPBH+5wOyPS7lfI150ePfGLhnp/eTu5RnV9xvhGvRiKfnl6HzRK9wehBph+il8FxS9KTeadx7Rcmf1GLPQ== dependencies: "@aws-crypto/crc32" "5.2.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-hex-encoding" "^3.0.0" tslib "^2.6.2" -"@smithy/eventstream-serde-browser@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz#3e971afd2b8a02a098af8decc4b9e3f35296d6a2" - integrity sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ== +"@smithy/eventstream-serde-browser@^3.0.10": + version "3.0.10" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.10.tgz#ffca366a4edee5097be5a710f87627a5b2da5dec" + integrity sha512-1i9aMY6Pl/SmA6NjvidxnfBLHMPzhKu2BP148pEt5VwhMdmXn36PE2kWKGa9Hj8b0XGtCTRucpCncylevCtI7g== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.4" - "@smithy/types" "^3.3.0" + "@smithy/eventstream-serde-universal" "^3.0.9" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/eventstream-serde-config-resolver@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz#f852e096d0ad112363b4685e1d441088d1fce67a" - integrity sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ== +"@smithy/eventstream-serde-config-resolver@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.7.tgz#1f352f384665f322e024a1396a7a2cca52fce9e3" + integrity sha512-eVzhGQBPEqXXYHvIUku0jMTxd4gDvenRzUQPTmKVWdRvp9JUCKrbAXGQRYiGxUYq9+cqQckRm0wq3kTWnNtDhw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/eventstream-serde-node@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz#6301752ca51b3ebabcd2dec112f1dacd990de4c1" - integrity sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg== +"@smithy/eventstream-serde-node@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.9.tgz#e985340093c2ca6587ae2fdd0663e6845fbe9463" + integrity sha512-JE0Guqvt0xsmfQ5y1EI342/qtJqznBv8cJqkHZV10PwC8GWGU5KNgFbQnsVCcX+xF+qIqwwfRmeWoJCjuOLmng== dependencies: - "@smithy/eventstream-serde-universal" "^3.0.4" - "@smithy/types" "^3.3.0" + "@smithy/eventstream-serde-universal" "^3.0.9" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/eventstream-serde-universal@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz#6754de5b94bdc286d8ef1d6bcf22d80f6ab68f30" - integrity sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A== +"@smithy/eventstream-serde-universal@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.9.tgz#1832b190a3018204e33487ba1f7f0f6e2fb0da34" + integrity sha512-bydfgSisfepCufw9kCEnWRxqxJFzX/o8ysXWv+W9F2FIyiaEwZ/D8bBKINbh4ONz3i05QJ1xE7A5OKYvgJsXaw== dependencies: - "@smithy/eventstream-codec" "^3.1.2" - "@smithy/types" "^3.3.0" + "@smithy/eventstream-codec" "^3.1.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.2.9": + version "3.2.9" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz#8d5199c162a37caa37a8b6848eefa9ca58221a0b" + integrity sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-blob-browser@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz#90281c1f183d93686fb4f26107f1819644d68829" - integrity sha512-hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg== +"@smithy/hash-blob-browser@^3.1.6": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.6.tgz#d61de344aa3cef0bc83e3ab8166558256262dfcd" + integrity sha512-BKNcMIaeZ9lB67sgo88iCF4YB35KT8X2dNJ8DqrtZNTgN6tUDYBKThzfGtos/mnZkGkW91AYHisESHmSiYQmKw== dependencies: "@smithy/chunked-blob-reader" "^3.0.0" "@smithy/chunked-blob-reader-native" "^3.0.0" - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.7.tgz#03b5a382fb588b8c2bac11b4fe7300aaf1661c88" + integrity sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-stream-node@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz#89f0290ae44b113863878e75b10c484ff48af71c" - integrity sha512-PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g== +"@smithy/hash-stream-node@^3.1.6": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-3.1.6.tgz#854ad354a865a1334baa2abc2f2247f2723de688" + integrity sha512-sFSSt7cmCpFWZPfVx7k80Bgb1K2VJ27VmMxH8X+dDhp7Wv8IBgID4K2VK5ehMJROF8hQgcj4WywnkHIwX/xlwQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== +"@smithy/invalid-dependency@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.7.tgz#b36f258d94498f3c72ab6020091a66fc7cc16eda" + integrity sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -1574,161 +1570,161 @@ dependencies: tslib "^2.6.2" -"@smithy/md5-js@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.3.tgz#55ee40aa24075b096c39f7910590c18ff7660c98" - integrity sha512-O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q== +"@smithy/md5-js@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-3.0.7.tgz#0a645dd9c139254353fd6e6a6b65154baeab7d2e" + integrity sha512-+wco9IN9uOW4tNGkZIqTR6IXyfO7Z8A+IOq82QCRn/f/xcmt7H1fXwmQVbfDSvbeFwfNnhv7s+u0G9PzPG6o2w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== +"@smithy/middleware-content-length@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.9.tgz#fb613d1a6b8c91e828d11c0d7a0a8576dba89b8b" + integrity sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== - dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" +"@smithy/middleware-endpoint@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.4.tgz#222c9fa49c8af6ebf8bea8ab220d92d9b8c90d3d" + integrity sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ== + dependencies: + "@smithy/middleware-serde" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" +"@smithy/middleware-retry@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.22.tgz#578ceafd72fd655cde35c35b462a8aad26fd07e2" + integrity sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA== + dependencies: + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-serde@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.7.tgz#03f0dda75edffc4cc90ea422349cbfb82368efa7" + integrity sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-stack@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.7.tgz#813fa7b47895ce0d085eac89c056d21b1e46e771" + integrity sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.8.tgz#2c1092040b4062eae0f7c9e121cc00ac6a77efee" + integrity sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.2.4.tgz#3c57c40d082c3bacac1e49955bd1240e8ccc40b2" + integrity sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.7": + version "3.1.7" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.7.tgz#8a304a4b9110a067a93c784e4c11e175f82da379" + integrity sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.1.4": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.4.tgz#6940d652b1825bda2422163ec9baab552669a338" + integrity sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.7.tgz#8c443c65f4249ff1637088db1166d18411d41555" + integrity sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.7.tgz#936206d1e6da9d862384dae730b4bad042d6a948" + integrity sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.7.tgz#5bab4ad802d30bd3fa52b8134f6c171582358226" + integrity sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.8.tgz#7a0bf5f20cfe8e0c4a36d8dcab8194d0d2ee958e" + integrity sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.2.0.tgz#291f5a0e756cc251377e1e8af2a1f494e6173029" + integrity sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.3.6": + version "3.3.6" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.3.6.tgz#882fcc4b5db35c284c7a7c6116b27be324c41202" + integrity sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -1738,20 +1734,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.5.0.tgz#9589e154c50d9c5d00feb7d818112ef8fc285d6e" + integrity sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.7.tgz#9d7d7e4e38514bf75ade6e8a30d2300f3db17d1b" + integrity sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -1800,37 +1796,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.22.tgz#e9141ed58109d572337a621d96131526aaf4f42f" + integrity sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== - dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" +"@smithy/util-defaults-mode-node@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.22.tgz#fc51f37aaa5ec03edec0da890a1ca1e3e3cdc70b" + integrity sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg== + dependencies: + "@smithy/config-resolver" "^3.0.9" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.1.3.tgz#7498151e9dc714bdd0c6339314dd2350fa4d250a" + integrity sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -1840,31 +1836,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.7.tgz#770d09749b6d170a1641384a2e961487447446fa" + integrity sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.7.tgz#694e0667574ffe9772f620b35d3c7286aced35e9" + integrity sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.1.9": + version "3.1.9" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.9.tgz#d39656eae27696bdc5a3ec7c2f6b89c32dccd1ca" + integrity sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1894,13 +1890,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== +"@smithy/util-waiter@^3.1.6": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.6.tgz#c65870d0c802e33b96112fac5c4471b3bf2eeecb" + integrity sha512-xs/KAwWOeCklq8aMlnpk25LgxEYHKOEodfjfKclDMLcBJEVEKzDLxZxBQyztcuPJ7F54213NJS8PxoiHNMdItQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@tootallnate/once@1": diff --git a/services/carts-bigmac-streams/package.json b/services/carts-bigmac-streams/package.json index c31df29f2..3ddb30a04 100644 --- a/services/carts-bigmac-streams/package.json +++ b/services/carts-bigmac-streams/package.json @@ -3,9 +3,9 @@ "version": "1.0.0", "description": "", "dependencies": { - "@aws-sdk/client-dynamodb": "^3.621.0", - "@aws-sdk/lib-dynamodb": "^3.621.0", - "@aws-sdk/util-dynamodb": "^3.621.0", + "@aws-sdk/client-dynamodb": "^3.662.0", + "@aws-sdk/lib-dynamodb": "^3.662.0", + "@aws-sdk/util-dynamodb": "^3.662.0", "kafkajs": "^1.15.0" } } diff --git a/services/carts-bigmac-streams/yarn.lock b/services/carts-bigmac-streams/yarn.lock index 9d243ee50..e94134efe 100644 --- a/services/carts-bigmac-streams/yarn.lock +++ b/services/carts-bigmac-streams/yarn.lock @@ -40,298 +40,299 @@ "@smithy/util-utf8" "^2.0.0" tslib "^2.6.2" -"@aws-sdk/client-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" - integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== +"@aws-sdk/client-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.662.0.tgz#462c8155eb2cc38f894a87c4f06d2371d4bf6b1b" + integrity sha512-d5t6hDQkVYqRvp6Cf6WygbseY8gln7Ca/tI4+1B6JXSl2UzffX5ovx2SOjNEPlyGGtZYIiOfqOnKnFlaj0+Gxg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-endpoint-discovery" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/client-sts" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-endpoint-discovery" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.1.6" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== +"@aws-sdk/client-sso-oidc@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.662.0.tgz#f2816f674b4125ff900435cc8b7fadc227455c81" + integrity sha512-YZrH0sftdmjvEIY8u0LCrfEhyaMVpN0+K0K9WsUrFRMZ7DK6nB9YD1f5EaKUN5UjNw5S7gbjSdI8neSCoELjhw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== +"@aws-sdk/client-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.662.0.tgz#43c9238799a2271e3652089bcddf105752fdacea" + integrity sha512-4j3+eNSnNblcIYCJrsRRdyXFjAWGpGa7s7pdIyDMLwtYA7AKNlnlyQV14jtezhMrN2j6qZ7zZmnwEyFGipgfWA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== +"@aws-sdk/client-sts@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.662.0.tgz#8d35b7d25c813e3b2ba0d8efd42d9e61823e088f" + integrity sha512-RjiXvfW3a36ybHuzYuZ6ZgddYiENiXLDGC3tlZMsKWuoVQNeoh2grx1wxUA6e4ajAIqJLXs5dAYTSXzGaAqHTA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== +"@aws-sdk/core@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.662.0.tgz#93764660c9fabbc10e77ddcde283f088e22bebc3" + integrity sha512-w64Fa4dsgM8vN7Z+QPR3n+aAl5GXThQRH8deT/iF1rLrzfq7V8xxACJ/CLVaxrZMZUPUUgG7DUAo95nXFWmGjA== dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/core" "^2.4.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/signature-v4" "^4.2.0" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" fast-xml-parser "4.4.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== - dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== - dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" +"@aws-sdk/credential-provider-env@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.662.0.tgz#fe58b29abefd0fa968f79c7e7d15381009945a75" + integrity sha512-Dgwb0c/FH4xT5QZZFdLTFmCkdG3woXIAgLx5HCoH9Ty5G7T8keHOU9Jm4Vpe2ZJXL7JJHlLakGS65+bgXTuLSQ== + dependencies: + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-http@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.662.0.tgz#02e3e97e28ec1bb99bdd91ddc9df5d48e1a31b42" + integrity sha512-Wnle/uJI4Ku9ABJHof9sio28VlaSbF3jVQKTSVCJftvbKELlFOlY5aXSjtu0wwcJqDS5r78N5KM7aARUJES+DA== + dependencies: + "@aws-sdk/types" "3.662.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-ini@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.662.0.tgz#505e37298cc6e2909020c25d555bf6b6d3f4cbdc" + integrity sha512-jk+A5B0NRYG4KrjJ8ef1+r9bFjhpwUm/A9grJmp3JOwcHKXvI2Gy9BXNqfqqVgrK0Gns+WyhJZy6rsRaC+v1oQ== + dependencies: + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.662.0.tgz#086aa57b4fbca4701566f9ac88d59aa67658a5f8" + integrity sha512-2O9wjxdLcU1b+bWVkp3YYbPHo15SU3pW4KfWTca5bB/C01i1eqiHnwsOFz/WKPYYKNj0FhXtJJjeDQLtNFYI8A== + dependencies: + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-ini" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-process@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.662.0.tgz#2c9fef18cffc827c26b599fb2a9dfb812ca1409e" + integrity sha512-1QUdtr/JiuvRjVgA8enpgCwjq7Eud8eVUT0i/vpWuFp5TV2FFq/8BD3GBkesTdy4Ylms6QVGf7J6INdfUWQEmw== + dependencies: + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.662.0.tgz#6d0c9f5f819da6b473d39d0cf4cd42cbbca3a524" + integrity sha512-zxze6pDPgwBwl7S3h4JDALCCz93pTAfulbCY8FqMEd7GvnAiofHpL9svyt4+gytXwwUSsQ6KxCMVLbi+8k8YIg== + dependencies: + "@aws-sdk/client-sso" "3.662.0" + "@aws-sdk/token-providers" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" + +"@aws-sdk/credential-provider-web-identity@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.662.0.tgz#18246e29d5f8b242a0717ff7110680cc5816d163" + integrity sha512-GhPwxmHSFtwCckuT+34JG+U99qKfDWVYPLJOPI6b35+aLhfVqW5CHPmVjtM4WZqbxzsA0a3KAYA/U1ZaluI4SA== + dependencies: + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.572.0": @@ -342,97 +343,98 @@ mnemonist "0.38.3" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" - integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== +"@aws-sdk/lib-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.662.0.tgz#425073c71c284cff3636faf8daa07e692c8b0504" + integrity sha512-DCmhc9hccIsMbYl8xINLtxYmsUlSVCUKcDA19Z+7901Jlu8OwzidwMBy4ZK8wAmy6/aG4agH67FY4i0Hee3z9g== dependencies: - "@aws-sdk/util-dynamodb" "3.621.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@aws-sdk/util-dynamodb" "3.662.0" + "@smithy/core" "^2.4.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" - integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== +"@aws-sdk/middleware-endpoint-discovery@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.662.0.tgz#ad1e99eeb5b13282d26f3032822ec41840eaa03c" + integrity sha512-os/gBtal8DDOZHUVQNymy8K/8JNC1tPqznsUoEkjoYaQoerT9PR3PPrc/oWTB9h1VLXZOwJ8HcCtsEbXUAddTg== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.662.0.tgz#f3d647d294b19da17ef5845b87dc5c0788196a1e" + integrity sha512-Gkb0J1LTvD8LOS8uwoRI5weFXvvJwP1jfnYwzQrFgLymRFHJm5JtORQZtmw34dtdou+IBTUsH1mgI8b3QVVH3w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.662.0.tgz#8c2ff7d543fe691a06020be853eeb9481409614d" + integrity sha512-aSpwVHtfMlqzpmnmmUgRNCaIcxXdRrGqGWG+VWXuYR1F6jJARDDCxGkSuKiPEOLX0h0BroUo4gqbM8ILXQ8rVw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== +"@aws-sdk/middleware-recursion-detection@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.662.0.tgz#5af684014a604d474e6bd763a5d2a3fbfff84d36" + integrity sha512-V/MYE+LOFIQDLnpWMHLxnKu+ELhD3pLOrWXVhKpVit6YcHxaOz6nvB40CPamSPDXenA11FGXKAGNHZ0loTpDQg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.662.0.tgz#a428403ced5d6684f29d45dd0f39c6c4ef10ab7b" + integrity sha512-NT940BLSSys/A8W3zO3g2Kj+zpeydqGbSQgN6qz84jTskQjnrlamoq+Zl9Rrp8Cn8sC10UQ09kGg97lvjVOlmg== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.662.0.tgz#1dcb6850059baa54dcb6e4556ece7ec1a4ee9d1b" + integrity sha512-MDiWl4wZSVnnTELLb+jFSe0nj9HwxJPX2JnghXKkOXmbKEiE2/21DCQwU9mr9VUq2ZOQqaSnMFPr94iRu0AVTQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.662.0.tgz#89c60983e13036cebc0e0310ae226e2254f5a741" + integrity sha512-OqtBPutNC9Am10P1W5IwqRvzCVQAHRxWxZnfDBh1FQjNmoboGWYSriKxbrCRYLFffusNuzo8KnOFOmg1sRlhJQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.662.0.tgz#323de11059df4fd7169a381c166a8aae03abe757" + integrity sha512-Ff9/KRmIm8iEzodxzISLj4/pB/0hX2nVw1RFeOBC65OuM6nHrAdWHHog/CVx25hS5JPU0uE3h6NlWRaBJ7AV5w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -443,21 +445,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.621.0", "@aws-sdk/util-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" - integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== +"@aws-sdk/util-dynamodb@3.662.0", "@aws-sdk/util-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.662.0.tgz#47b1747f14300384af66b6a07fb4ba7a01318194" + integrity sha512-V079cMhwUTu086eS1grS/F7WeOrfqAW2a2KSFKR/zxLwZPYIoMiCUeoqCgK0PL5DEqdO0EVDPuWe/glEiO52dw== dependencies: tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.662.0.tgz#a124838077ae230bba605310a73e43493e58e3d1" + integrity sha512-RQ/78yNUxZZZULFg7VxT7oObGOR/FBc0ojiFoCAKC20ycY8VvVX5Eof4gyxoVpwOP7EoZO3UlWSIqtaEV/X70w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" + "@smithy/util-endpoints" "^2.1.3" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -467,97 +469,99 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.662.0.tgz#b17b847b38ffa88944939534069bf78a277723ed" + integrity sha512-5wQd+HbNTY1r1Gndxf93dAEFtKz1DqcalI4Ym40To+RIonSsYQNRomFoizYNgJ1P+Mkfsr4P1dy/MNTlkqTZuQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.662.0.tgz#7199eef53edb1c175e455c94596294541a5aaef4" + integrity sha512-vBRbZ9Hr1OGmdJPWj36X0fR8/VdI2JiwK6+oJRa6qfJ6AnhqCYZbCyeA6JIDeEu3M9iu1OLjenU8NdXhTz8c2w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@smithy/abort-controller@^3.1.5": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.5.tgz#ca7a86a3c6b20fabe59667143f58d9e198616d14" + integrity sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.9.tgz#dcf4b7747ca481866f9bfac21469ebe2031a599e" + integrity sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== +"@smithy/core@^2.4.7": + version "2.4.7" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.4.7.tgz#c4dc9ab3ba5f4b36addf967ca5fce036ce3b767d" + integrity sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.4.tgz#e1a2bfc8a0066f673756ad8735247cf284b9735c" + integrity sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.2.9": + version "3.2.9" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz#8d5199c162a37caa37a8b6848eefa9ca58221a0b" + integrity sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.7.tgz#03b5a382fb588b8c2bac11b4fe7300aaf1661c88" + integrity sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== +"@smithy/invalid-dependency@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.7.tgz#b36f258d94498f3c72ab6020091a66fc7cc16eda" + integrity sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -574,152 +578,152 @@ dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== - dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== +"@smithy/middleware-content-length@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.9.tgz#fb613d1a6b8c91e828d11c0d7a0a8576dba89b8b" + integrity sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA== dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" +"@smithy/middleware-endpoint@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.4.tgz#222c9fa49c8af6ebf8bea8ab220d92d9b8c90d3d" + integrity sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ== + dependencies: + "@smithy/middleware-serde" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" + "@smithy/util-middleware" "^3.0.7" + tslib "^2.6.2" + +"@smithy/middleware-retry@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.22.tgz#578ceafd72fd655cde35c35b462a8aad26fd07e2" + integrity sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA== + dependencies: + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-serde@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.7.tgz#03f0dda75edffc4cc90ea422349cbfb82368efa7" + integrity sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-stack@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.7.tgz#813fa7b47895ce0d085eac89c056d21b1e46e771" + integrity sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.8.tgz#2c1092040b4062eae0f7c9e121cc00ac6a77efee" + integrity sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.2.4.tgz#3c57c40d082c3bacac1e49955bd1240e8ccc40b2" + integrity sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.7": + version "3.1.7" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.7.tgz#8a304a4b9110a067a93c784e4c11e175f82da379" + integrity sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.1.4": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.4.tgz#6940d652b1825bda2422163ec9baab552669a338" + integrity sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.7.tgz#8c443c65f4249ff1637088db1166d18411d41555" + integrity sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.7.tgz#936206d1e6da9d862384dae730b4bad042d6a948" + integrity sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.7.tgz#5bab4ad802d30bd3fa52b8134f6c171582358226" + integrity sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.8.tgz#7a0bf5f20cfe8e0c4a36d8dcab8194d0d2ee958e" + integrity sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.2.0.tgz#291f5a0e756cc251377e1e8af2a1f494e6173029" + integrity sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.3.6": + version "3.3.6" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.3.6.tgz#882fcc4b5db35c284c7a7c6116b27be324c41202" + integrity sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -729,20 +733,20 @@ dependencies: tslib "^2.6.2" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.5.0.tgz#9589e154c50d9c5d00feb7d818112ef8fc285d6e" + integrity sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.7.tgz#9d7d7e4e38514bf75ade6e8a30d2300f3db17d1b" + integrity sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -791,37 +795,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.22.tgz#e9141ed58109d572337a621d96131526aaf4f42f" + integrity sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== +"@smithy/util-defaults-mode-node@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.22.tgz#fc51f37aaa5ec03edec0da890a1ca1e3e3cdc70b" + integrity sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg== dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.1.3.tgz#7498151e9dc714bdd0c6339314dd2350fa4d250a" + integrity sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -831,31 +835,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.7.tgz#770d09749b6d170a1641384a2e961487447446fa" + integrity sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.7.tgz#694e0667574ffe9772f620b35d3c7286aced35e9" + integrity sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.1.9": + version "3.1.9" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.9.tgz#d39656eae27696bdc5a3ec7c2f6b89c32dccd1ca" + integrity sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -885,13 +889,13 @@ "@smithy/util-buffer-from" "^3.0.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== +"@smithy/util-waiter@^3.1.6": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.6.tgz#c65870d0c802e33b96112fac5c4471b3bf2eeecb" + integrity sha512-xs/KAwWOeCklq8aMlnpk25LgxEYHKOEodfjfKclDMLcBJEVEKzDLxZxBQyztcuPJ7F54213NJS8PxoiHNMdItQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/types" "^3.5.0" tslib "^2.6.2" bowser@^2.11.0: diff --git a/services/database/package.json b/services/database/package.json index 1464e68c3..551e6b44a 100644 --- a/services/database/package.json +++ b/services/database/package.json @@ -13,8 +13,8 @@ "serverless-dynamodb": "^0.2.53" }, "dependencies": { - "@aws-sdk/client-dynamodb": "^3.621.0", - "@aws-sdk/lib-dynamodb": "^3.621.0", + "@aws-sdk/client-dynamodb": "^3.662.0", + "@aws-sdk/lib-dynamodb": "^3.662.0", "pg": "^8.11.4" } } diff --git a/services/database/yarn.lock b/services/database/yarn.lock index 12d910970..cdf1920f7 100644 --- a/services/database/yarn.lock +++ b/services/database/yarn.lock @@ -136,53 +136,53 @@ tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.621.0.tgz#de0a23830a742f42ed031abb745d3787b0d4e759" - integrity sha512-aczOoVyufYwBCc/zZKJOP/xwbnojKQJ6Y8O7ZAZnxMPRyZXKXpoAxmlxLfOU6GUzXqzXdvj+Ir3VBd7MWB4KuQ== +"@aws-sdk/client-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-dynamodb/-/client-dynamodb-3.662.0.tgz#462c8155eb2cc38f894a87c4f06d2371d4bf6b1b" + integrity sha512-d5t6hDQkVYqRvp6Cf6WygbseY8gln7Ca/tI4+1B6JXSl2UzffX5ovx2SOjNEPlyGGtZYIiOfqOnKnFlaj0+Gxg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-endpoint-discovery" "3.620.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/client-sts" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-endpoint-discovery" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" - "@smithy/util-waiter" "^3.1.2" + "@smithy/util-waiter" "^3.1.6" tslib "^2.6.2" uuid "^9.0.1" @@ -232,48 +232,48 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== +"@aws-sdk/client-sso-oidc@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.662.0.tgz#f2816f674b4125ff900435cc8b7fadc227455c81" + integrity sha512-YZrH0sftdmjvEIY8u0LCrfEhyaMVpN0+K0K9WsUrFRMZ7DK6nB9YD1f5EaKUN5UjNw5S7gbjSdI8neSCoELjhw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -321,47 +321,47 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== +"@aws-sdk/client-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.662.0.tgz#43c9238799a2271e3652089bcddf105752fdacea" + integrity sha512-4j3+eNSnNblcIYCJrsRRdyXFjAWGpGa7s7pdIyDMLwtYA7AKNlnlyQV14jtezhMrN2j6qZ7zZmnwEyFGipgfWA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -411,49 +411,49 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== +"@aws-sdk/client-sts@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.662.0.tgz#8d35b7d25c813e3b2ba0d8efd42d9e61823e088f" + integrity sha512-RjiXvfW3a36ybHuzYuZ6ZgddYiENiXLDGC3tlZMsKWuoVQNeoh2grx1wxUA6e4ajAIqJLXs5dAYTSXzGaAqHTA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -470,18 +470,19 @@ fast-xml-parser "4.2.5" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== +"@aws-sdk/core@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.662.0.tgz#93764660c9fabbc10e77ddcde283f088e22bebc3" + integrity sha512-w64Fa4dsgM8vN7Z+QPR3n+aAl5GXThQRH8deT/iF1rLrzfq7V8xxACJ/CLVaxrZMZUPUUgG7DUAo95nXFWmGjA== dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/core" "^2.4.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/signature-v4" "^4.2.0" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" fast-xml-parser "4.4.1" tslib "^2.6.2" @@ -495,14 +496,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== +"@aws-sdk/credential-provider-env@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.662.0.tgz#fe58b29abefd0fa968f79c7e7d15381009945a75" + integrity sha512-Dgwb0c/FH4xT5QZZFdLTFmCkdG3woXIAgLx5HCoH9Ty5G7T8keHOU9Jm4Vpe2ZJXL7JJHlLakGS65+bgXTuLSQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/credential-provider-http@3.568.0": @@ -520,19 +521,19 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== +"@aws-sdk/credential-provider-http@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.662.0.tgz#02e3e97e28ec1bb99bdd91ddc9df5d48e1a31b42" + integrity sha512-Wnle/uJI4Ku9ABJHof9sio28VlaSbF3jVQKTSVCJftvbKELlFOlY5aXSjtu0wwcJqDS5r78N5KM7aARUJES+DA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@aws-sdk/types" "3.662.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" "@aws-sdk/credential-provider-ini@3.568.0": @@ -551,21 +552,21 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== +"@aws-sdk/credential-provider-ini@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.662.0.tgz#505e37298cc6e2909020c25d555bf6b6d3f4cbdc" + integrity sha512-jk+A5B0NRYG4KrjJ8ef1+r9bFjhpwUm/A9grJmp3JOwcHKXvI2Gy9BXNqfqqVgrK0Gns+WyhJZy6rsRaC+v1oQ== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/credential-provider-node@3.569.0": @@ -586,22 +587,22 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== +"@aws-sdk/credential-provider-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.662.0.tgz#086aa57b4fbca4701566f9ac88d59aa67658a5f8" + integrity sha512-2O9wjxdLcU1b+bWVkp3YYbPHo15SU3pW4KfWTca5bB/C01i1eqiHnwsOFz/WKPYYKNj0FhXtJJjeDQLtNFYI8A== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-ini" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/credential-provider-process@3.568.0": @@ -615,15 +616,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== +"@aws-sdk/credential-provider-process@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.662.0.tgz#2c9fef18cffc827c26b599fb2a9dfb812ca1409e" + integrity sha512-1QUdtr/JiuvRjVgA8enpgCwjq7Eud8eVUT0i/vpWuFp5TV2FFq/8BD3GBkesTdy4Ylms6QVGf7J6INdfUWQEmw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/credential-provider-sso@3.568.0": @@ -639,17 +640,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== +"@aws-sdk/credential-provider-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.662.0.tgz#6d0c9f5f819da6b473d39d0cf4cd42cbbca3a524" + integrity sha512-zxze6pDPgwBwl7S3h4JDALCCz93pTAfulbCY8FqMEd7GvnAiofHpL9svyt4+gytXwwUSsQ6KxCMVLbi+8k8YIg== dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/client-sso" "3.662.0" + "@aws-sdk/token-providers" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/credential-provider-web-identity@3.568.0": @@ -662,14 +663,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== +"@aws-sdk/credential-provider-web-identity@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.662.0.tgz#18246e29d5f8b242a0717ff7110680cc5816d163" + integrity sha512-GhPwxmHSFtwCckuT+34JG+U99qKfDWVYPLJOPI6b35+aLhfVqW5CHPmVjtM4WZqbxzsA0a3KAYA/U1ZaluI4SA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/endpoint-cache@3.568.0": @@ -698,14 +699,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/lib-dynamodb@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.621.0.tgz#f8c320af1b286f2827d3be97aaffc571fa4bbfeb" - integrity sha512-RJJwaR15BLSTtegf2kgJjlJofvxeR+0Jm0rnEbJmRZ/HZhjow1LawrMbCR0YxfcWKUMsDw9tp8BDkLlrH1+RJQ== +"@aws-sdk/lib-dynamodb@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-dynamodb/-/lib-dynamodb-3.662.0.tgz#425073c71c284cff3636faf8daa07e692c8b0504" + integrity sha512-DCmhc9hccIsMbYl8xINLtxYmsUlSVCUKcDA19Z+7901Jlu8OwzidwMBy4ZK8wAmy6/aG4agH67FY4i0Hee3z9g== dependencies: - "@aws-sdk/util-dynamodb" "3.621.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@aws-sdk/util-dynamodb" "3.662.0" + "@smithy/core" "^2.4.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/middleware-endpoint-discovery@3.568.0": @@ -720,16 +722,16 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-endpoint-discovery@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.620.0.tgz#45acd6cf2a77ceaf736f2758274c383838c8584a" - integrity sha512-T6kuydHBF4BPP5CVH53Fze7c2b9rqxWP88XrGtmNMXXdY4sXur1v/itGdS2l3gqRjxKo0LsmjmuQm9zL4vGneQ== +"@aws-sdk/middleware-endpoint-discovery@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint-discovery/-/middleware-endpoint-discovery-3.662.0.tgz#ad1e99eeb5b13282d26f3032822ec41840eaa03c" + integrity sha512-os/gBtal8DDOZHUVQNymy8K/8JNC1tPqznsUoEkjoYaQoerT9PR3PPrc/oWTB9h1VLXZOwJ8HcCtsEbXUAddTg== dependencies: "@aws-sdk/endpoint-cache" "3.572.0" - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/middleware-host-header@3.567.0": @@ -742,14 +744,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.662.0.tgz#f3d647d294b19da17ef5845b87dc5c0788196a1e" + integrity sha512-Gkb0J1LTvD8LOS8uwoRI5weFXvvJwP1jfnYwzQrFgLymRFHJm5JtORQZtmw34dtdou+IBTUsH1mgI8b3QVVH3w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/middleware-logger@3.568.0": @@ -761,13 +763,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.662.0.tgz#8c2ff7d543fe691a06020be853eeb9481409614d" + integrity sha512-aSpwVHtfMlqzpmnmmUgRNCaIcxXdRrGqGWG+VWXuYR1F6jJARDDCxGkSuKiPEOLX0h0BroUo4gqbM8ILXQ8rVw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/middleware-recursion-detection@3.567.0": @@ -780,14 +782,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== +"@aws-sdk/middleware-recursion-detection@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.662.0.tgz#5af684014a604d474e6bd763a5d2a3fbfff84d36" + integrity sha512-V/MYE+LOFIQDLnpWMHLxnKu+ELhD3pLOrWXVhKpVit6YcHxaOz6nvB40CPamSPDXenA11FGXKAGNHZ0loTpDQg== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/middleware-user-agent@3.567.0": @@ -801,15 +803,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.662.0.tgz#a428403ced5d6684f29d45dd0f39c6c4ef10ab7b" + integrity sha512-NT940BLSSys/A8W3zO3g2Kj+zpeydqGbSQgN6qz84jTskQjnrlamoq+Zl9Rrp8Cn8sC10UQ09kGg97lvjVOlmg== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/region-config-resolver@3.567.0": @@ -824,16 +826,16 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.662.0.tgz#1dcb6850059baa54dcb6e4556ece7ec1a4ee9d1b" + integrity sha512-MDiWl4wZSVnnTELLb+jFSe0nj9HwxJPX2JnghXKkOXmbKEiE2/21DCQwU9mr9VUq2ZOQqaSnMFPr94iRu0AVTQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" "@aws-sdk/token-providers@3.568.0": @@ -847,15 +849,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.662.0.tgz#89c60983e13036cebc0e0310ae226e2254f5a741" + integrity sha512-OqtBPutNC9Am10P1W5IwqRvzCVQAHRxWxZnfDBh1FQjNmoboGWYSriKxbrCRYLFffusNuzo8KnOFOmg1sRlhJQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/types@3.567.0": @@ -866,12 +868,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.662.0.tgz#323de11059df4fd7169a381c166a8aae03abe757" + integrity sha512-Ff9/KRmIm8iEzodxzISLj4/pB/0hX2nVw1RFeOBC65OuM6nHrAdWHHog/CVx25hS5JPU0uE3h6NlWRaBJ7AV5w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -889,10 +891,10 @@ dependencies: tslib "^2.6.2" -"@aws-sdk/util-dynamodb@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.621.0.tgz#a0d6501e5ab9aca695dc794963adf46a475ee5f3" - integrity sha512-/3qEmZ52FdP4+3AUsUX0/wKcCF3jvAG+avVKuSCUYIdKgSIYKSeYfH8F3/r6DE3czaFevBwHRiuKHEihCMApGw== +"@aws-sdk/util-dynamodb@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-dynamodb/-/util-dynamodb-3.662.0.tgz#47b1747f14300384af66b6a07fb4ba7a01318194" + integrity sha512-V079cMhwUTu086eS1grS/F7WeOrfqAW2a2KSFKR/zxLwZPYIoMiCUeoqCgK0PL5DEqdO0EVDPuWe/glEiO52dw== dependencies: tslib "^2.6.2" @@ -906,14 +908,14 @@ "@smithy/util-endpoints" "^1.2.0" tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.662.0.tgz#a124838077ae230bba605310a73e43493e58e3d1" + integrity sha512-RQ/78yNUxZZZULFg7VxT7oObGOR/FBc0ojiFoCAKC20ycY8VvVX5Eof4gyxoVpwOP7EoZO3UlWSIqtaEV/X70w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" + "@smithy/util-endpoints" "^2.1.3" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -933,13 +935,13 @@ bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.662.0.tgz#b17b847b38ffa88944939534069bf78a277723ed" + integrity sha512-5wQd+HbNTY1r1Gndxf93dAEFtKz1DqcalI4Ym40To+RIonSsYQNRomFoizYNgJ1P+Mkfsr4P1dy/MNTlkqTZuQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" @@ -953,14 +955,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.662.0.tgz#7199eef53edb1c175e455c94596294541a5aaef4" + integrity sha512-vBRbZ9Hr1OGmdJPWj36X0fR8/VdI2JiwK6+oJRa6qfJ6AnhqCYZbCyeA6JIDeEu3M9iu1OLjenU8NdXhTz8c2w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/util-utf8-browser@^3.0.0": @@ -978,12 +980,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@smithy/abort-controller@^3.1.5": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.5.tgz#ca7a86a3c6b20fabe59667143f58d9e198616d14" + integrity sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/config-resolver@^2.2.0": @@ -997,15 +999,15 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.9.tgz#dcf4b7747ca481866f9bfac21469ebe2031a599e" + integrity sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" "@smithy/core@^1.4.2": @@ -1022,18 +1024,20 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== +"@smithy/core@^2.4.7": + version "2.4.7" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.4.7.tgz#c4dc9ab3ba5f4b36addf967ca5fce036ce3b767d" + integrity sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" "@smithy/credential-provider-imds@^2.3.0": @@ -1047,15 +1051,15 @@ "@smithy/url-parser" "^2.2.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.4.tgz#e1a2bfc8a0066f673756ad8735247cf284b9735c" + integrity sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" tslib "^2.6.2" "@smithy/fetch-http-handler@^2.5.0": @@ -1069,14 +1073,14 @@ "@smithy/util-base64" "^2.3.0" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.2.9": + version "3.2.9" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz#8d5199c162a37caa37a8b6848eefa9ca58221a0b" + integrity sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" @@ -1090,12 +1094,12 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.7.tgz#03b5a382fb588b8c2bac11b4fe7300aaf1661c88" + integrity sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1108,12 +1112,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== +"@smithy/invalid-dependency@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.7.tgz#b36f258d94498f3c72ab6020091a66fc7cc16eda" + integrity sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -1139,13 +1143,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== +"@smithy/middleware-content-length@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.9.tgz#fb613d1a6b8c91e828d11c0d7a0a8576dba89b8b" + integrity sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/middleware-endpoint@^2.5.1": @@ -1161,17 +1165,17 @@ "@smithy/util-middleware" "^2.2.0" tslib "^2.6.2" -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== +"@smithy/middleware-endpoint@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.4.tgz#222c9fa49c8af6ebf8bea8ab220d92d9b8c90d3d" + integrity sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ== dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" "@smithy/middleware-retry@^2.3.1": @@ -1189,18 +1193,18 @@ tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== +"@smithy/middleware-retry@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.22.tgz#578ceafd72fd655cde35c35b462a8aad26fd07e2" + integrity sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" tslib "^2.6.2" uuid "^9.0.1" @@ -1212,12 +1216,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-serde@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.7.tgz#03f0dda75edffc4cc90ea422349cbfb82368efa7" + integrity sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/middleware-stack@^2.2.0": @@ -1228,12 +1232,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-stack@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.7.tgz#813fa7b47895ce0d085eac89c056d21b1e46e771" + integrity sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/node-config-provider@^2.3.0": @@ -1246,14 +1250,14 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.8.tgz#2c1092040b4062eae0f7c9e121cc00ac6a77efee" + integrity sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/node-http-handler@^2.5.0": @@ -1267,15 +1271,15 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.2.4.tgz#3c57c40d082c3bacac1e49955bd1240e8ccc40b2" + integrity sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/property-provider@^2.2.0": @@ -1286,12 +1290,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.7": + version "3.1.7" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.7.tgz#8a304a4b9110a067a93c784e4c11e175f82da379" + integrity sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/protocol-http@^3.3.0": @@ -1302,12 +1306,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.1.4": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.4.tgz#6940d652b1825bda2422163ec9baab552669a338" + integrity sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/querystring-builder@^2.2.0": @@ -1319,12 +1323,12 @@ "@smithy/util-uri-escape" "^2.2.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.7.tgz#8c443c65f4249ff1637088db1166d18411d41555" + integrity sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" @@ -1336,12 +1340,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.7.tgz#936206d1e6da9d862384dae730b4bad042d6a948" + integrity sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/service-error-classification@^2.1.5": @@ -1351,12 +1355,12 @@ dependencies: "@smithy/types" "^2.12.0" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.7.tgz#5bab4ad802d30bd3fa52b8134f6c171582358226" + integrity sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/shared-ini-file-loader@^2.4.0": version "2.4.0" @@ -1366,12 +1370,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.8.tgz#7a0bf5f20cfe8e0c4a36d8dcab8194d0d2ee958e" + integrity sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/signature-v4@^2.3.0": @@ -1387,16 +1391,16 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.2.0.tgz#291f5a0e756cc251377e1e8af2a1f494e6173029" + integrity sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" @@ -1413,16 +1417,16 @@ "@smithy/util-stream" "^2.2.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.3.6": + version "3.3.6" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.3.6.tgz#882fcc4b5db35c284c7a7c6116b27be324c41202" + integrity sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" "@smithy/types@^2.12.0": @@ -1439,10 +1443,10 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.5.0.tgz#9589e154c50d9c5d00feb7d818112ef8fc285d6e" + integrity sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q== dependencies: tslib "^2.6.2" @@ -1455,13 +1459,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.7.tgz#9d7d7e4e38514bf75ade6e8a30d2300f3db17d1b" + integrity sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-base64@^2.3.0": @@ -1551,14 +1555,14 @@ bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.22.tgz#e9141ed58109d572337a621d96131526aaf4f42f" + integrity sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" @@ -1575,17 +1579,17 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== +"@smithy/util-defaults-mode-node@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.22.tgz#fc51f37aaa5ec03edec0da890a1ca1e3e3cdc70b" + integrity sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg== dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-endpoints@^1.2.0": @@ -1597,13 +1601,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.1.3.tgz#7498151e9dc714bdd0c6339314dd2350fa4d250a" + integrity sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^2.2.0": @@ -1628,12 +1632,12 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.7.tgz#770d09749b6d170a1641384a2e961487447446fa" + integrity sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-retry@^2.2.0": @@ -1645,13 +1649,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.7.tgz#694e0667574ffe9772f620b35d3c7286aced35e9" + integrity sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-stream@^2.2.0": @@ -1668,14 +1672,14 @@ "@smithy/util-utf8" "^2.3.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.1.9": + version "3.1.9" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.9.tgz#d39656eae27696bdc5a3ec7c2f6b89c32dccd1ca" + integrity sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" @@ -1721,13 +1725,13 @@ "@smithy/types" "^2.12.0" tslib "^2.6.2" -"@smithy/util-waiter@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.2.tgz#2d40c3312f3537feee763459a19acafab4c75cf3" - integrity sha512-4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw== +"@smithy/util-waiter@^3.1.6": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.6.tgz#c65870d0c802e33b96112fac5c4471b3bf2eeecb" + integrity sha512-xs/KAwWOeCklq8aMlnpk25LgxEYHKOEodfjfKclDMLcBJEVEKzDLxZxBQyztcuPJ7F54213NJS8PxoiHNMdItQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/types" "^3.5.0" tslib "^2.6.2" ansi-colors@4.1.1: diff --git a/services/ui-auth/package.json b/services/ui-auth/package.json index 38f0cd96a..7f2a41227 100644 --- a/services/ui-auth/package.json +++ b/services/ui-auth/package.json @@ -10,6 +10,6 @@ "license": "CC0-1.0", "devDependencies": {}, "dependencies": { - "@aws-sdk/client-cognito-identity-provider": "^3.621.0" + "@aws-sdk/client-cognito-identity-provider": "^3.662.0" } } diff --git a/services/ui-auth/yarn.lock b/services/ui-auth/yarn.lock index ac8172516..728207873 100644 --- a/services/ui-auth/yarn.lock +++ b/services/ui-auth/yarn.lock @@ -40,366 +40,367 @@ "@smithy/util-utf8" "^2.0.0" tslib "^2.6.2" -"@aws-sdk/client-cognito-identity-provider@^3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.621.0.tgz#7e5d85943fff1cfb0379866c2c3b3c91fd3f4ffa" - integrity sha512-Tu2m18zW87gJwme6J74p/ZrfC5eJ3kv4yXpCAkfOz1JBO0vfxdoZIkkZ94G5tuCpiS5kljwS6GXpsKOojpVXcg== +"@aws-sdk/client-cognito-identity-provider@^3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity-provider/-/client-cognito-identity-provider-3.662.0.tgz#8699f4f37fb23fef07729a86ab934998c19e059d" + integrity sha512-GqKKoVIBwkGqIxFJh5gJY7aMZhijjJkk/hmI1eIuS4vex7LpS941uYH/3CpyuI0u3hq+ABjwul2W6dDNleVq4Q== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/client-sts" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/client-sts" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso-oidc@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.621.0.tgz#3fa3d468fbebbd93a5f75c1d51b63cc7af3ef17b" - integrity sha512-mMjk3mFUwV2Y68POf1BQMTF+F6qxt5tPu6daEUCNGC9Cenk3h2YXQQoS4/eSyYzuBiYk3vx49VgleRvdvkg8rg== +"@aws-sdk/client-sso-oidc@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.662.0.tgz#f2816f674b4125ff900435cc8b7fadc227455c81" + integrity sha512-YZrH0sftdmjvEIY8u0LCrfEhyaMVpN0+K0K9WsUrFRMZ7DK6nB9YD1f5EaKUN5UjNw5S7gbjSdI8neSCoELjhw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.621.0.tgz#c0eefeb9adcbc6bb7c91c32070404c8c91846825" - integrity sha512-xpKfikN4u0BaUYZA9FGUMkkDmfoIP0Q03+A86WjqDWhcOoqNA1DkHsE4kZ+r064ifkPUfcNuUvlkVTEoBZoFjA== +"@aws-sdk/client-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.662.0.tgz#43c9238799a2271e3652089bcddf105752fdacea" + integrity sha512-4j3+eNSnNblcIYCJrsRRdyXFjAWGpGa7s7pdIyDMLwtYA7AKNlnlyQV14jtezhMrN2j6qZ7zZmnwEyFGipgfWA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/client-sts@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.621.0.tgz#2994f601790893901704c5df56c837e89f279952" - integrity sha512-707uiuReSt+nAx6d0c21xLjLm2lxeKc7padxjv92CIrIocnQSlJPxSCM7r5zBhwiahJA6MNQwmTl2xznU67KgA== +"@aws-sdk/client-sts@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.662.0.tgz#8d35b7d25c813e3b2ba0d8efd42d9e61823e088f" + integrity sha512-RjiXvfW3a36ybHuzYuZ6ZgddYiENiXLDGC3tlZMsKWuoVQNeoh2grx1wxUA6e4ajAIqJLXs5dAYTSXzGaAqHTA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/client-sso-oidc" "3.621.0" - "@aws-sdk/core" "3.621.0" - "@aws-sdk/credential-provider-node" "3.621.0" - "@aws-sdk/middleware-host-header" "3.620.0" - "@aws-sdk/middleware-logger" "3.609.0" - "@aws-sdk/middleware-recursion-detection" "3.620.0" - "@aws-sdk/middleware-user-agent" "3.620.0" - "@aws-sdk/region-config-resolver" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@aws-sdk/util-user-agent-browser" "3.609.0" - "@aws-sdk/util-user-agent-node" "3.614.0" - "@smithy/config-resolver" "^3.0.5" - "@smithy/core" "^2.3.1" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/hash-node" "^3.0.3" - "@smithy/invalid-dependency" "^3.0.3" - "@smithy/middleware-content-length" "^3.0.5" - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@aws-sdk/client-sso-oidc" "3.662.0" + "@aws-sdk/core" "3.662.0" + "@aws-sdk/credential-provider-node" "3.662.0" + "@aws-sdk/middleware-host-header" "3.662.0" + "@aws-sdk/middleware-logger" "3.662.0" + "@aws-sdk/middleware-recursion-detection" "3.662.0" + "@aws-sdk/middleware-user-agent" "3.662.0" + "@aws-sdk/region-config-resolver" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@aws-sdk/util-user-agent-browser" "3.662.0" + "@aws-sdk/util-user-agent-node" "3.662.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/core" "^2.4.7" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/hash-node" "^3.0.7" + "@smithy/invalid-dependency" "^3.0.7" + "@smithy/middleware-content-length" "^3.0.9" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" "@smithy/util-base64" "^3.0.0" "@smithy/util-body-length-browser" "^3.0.0" "@smithy/util-body-length-node" "^3.0.0" - "@smithy/util-defaults-mode-browser" "^3.0.13" - "@smithy/util-defaults-mode-node" "^3.0.13" - "@smithy/util-endpoints" "^2.0.5" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" + "@smithy/util-defaults-mode-browser" "^3.0.22" + "@smithy/util-defaults-mode-node" "^3.0.22" + "@smithy/util-endpoints" "^2.1.3" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@aws-sdk/core@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.621.0.tgz#e38c56c3ce0c819ca1185eaabcb98412429aaca3" - integrity sha512-CtOwWmDdEiINkGXD93iGfXjN0WmCp9l45cDWHHGa8lRgEDyhuL7bwd/pH5aSzj0j8SiQBG2k0S7DHbd5RaqvbQ== +"@aws-sdk/core@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.662.0.tgz#93764660c9fabbc10e77ddcde283f088e22bebc3" + integrity sha512-w64Fa4dsgM8vN7Z+QPR3n+aAl5GXThQRH8deT/iF1rLrzfq7V8xxACJ/CLVaxrZMZUPUUgG7DUAo95nXFWmGjA== dependencies: - "@smithy/core" "^2.3.1" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/signature-v4" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/core" "^2.4.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/signature-v4" "^4.2.0" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" fast-xml-parser "4.4.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.620.1.tgz#d4692c49a65ebc11dae3f7f8b053fee9268a953c" - integrity sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg== +"@aws-sdk/credential-provider-env@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.662.0.tgz#fe58b29abefd0fa968f79c7e7d15381009945a75" + integrity sha512-Dgwb0c/FH4xT5QZZFdLTFmCkdG3woXIAgLx5HCoH9Ty5G7T8keHOU9Jm4Vpe2ZJXL7JJHlLakGS65+bgXTuLSQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.621.0.tgz#5f944bf548f203d842cf71a5792f73c205544627" - integrity sha512-/jc2tEsdkT1QQAI5Dvoci50DbSxtJrevemwFsm0B73pwCcOQZ5ZwwSdVqGsPutzYzUVx3bcXg3LRL7jLACqRIg== + +"@aws-sdk/credential-provider-http@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.662.0.tgz#02e3e97e28ec1bb99bdd91ddc9df5d48e1a31b42" + integrity sha512-Wnle/uJI4Ku9ABJHof9sio28VlaSbF3jVQKTSVCJftvbKELlFOlY5aXSjtu0wwcJqDS5r78N5KM7aARUJES+DA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@aws-sdk/types" "3.662.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.621.0.tgz#bda2365f88fee40e3ae067b08bf484106c339222" - integrity sha512-0EWVnSc+JQn5HLnF5Xv405M8n4zfdx9gyGdpnCmAmFqEDHA8LmBdxJdpUk1Ovp/I5oPANhjojxabIW5f1uU0RA== +"@aws-sdk/credential-provider-ini@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.662.0.tgz#505e37298cc6e2909020c25d555bf6b6d3f4cbdc" + integrity sha512-jk+A5B0NRYG4KrjJ8ef1+r9bFjhpwUm/A9grJmp3JOwcHKXvI2Gy9BXNqfqqVgrK0Gns+WyhJZy6rsRaC+v1oQ== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.621.0.tgz#9cc5052760a9f9d70d70f12ddbdbf0d59bf13a47" - integrity sha512-4JqpccUgz5Snanpt2+53hbOBbJQrSFq7E1sAAbgY6BKVQUsW5qyXqnjvSF32kDeKa5JpBl3bBWLZl04IadcPHw== +"@aws-sdk/credential-provider-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.662.0.tgz#086aa57b4fbca4701566f9ac88d59aa67658a5f8" + integrity sha512-2O9wjxdLcU1b+bWVkp3YYbPHo15SU3pW4KfWTca5bB/C01i1eqiHnwsOFz/WKPYYKNj0FhXtJJjeDQLtNFYI8A== dependencies: - "@aws-sdk/credential-provider-env" "3.620.1" - "@aws-sdk/credential-provider-http" "3.621.0" - "@aws-sdk/credential-provider-ini" "3.621.0" - "@aws-sdk/credential-provider-process" "3.620.1" - "@aws-sdk/credential-provider-sso" "3.621.0" - "@aws-sdk/credential-provider-web-identity" "3.621.0" - "@aws-sdk/types" "3.609.0" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/credential-provider-env" "3.662.0" + "@aws-sdk/credential-provider-http" "3.662.0" + "@aws-sdk/credential-provider-ini" "3.662.0" + "@aws-sdk/credential-provider-process" "3.662.0" + "@aws-sdk/credential-provider-sso" "3.662.0" + "@aws-sdk/credential-provider-web-identity" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.620.1": - version "3.620.1" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.620.1.tgz#10387cf85400420bb4bbda9cc56937dcc6d6d0ee" - integrity sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg== +"@aws-sdk/credential-provider-process@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.662.0.tgz#2c9fef18cffc827c26b599fb2a9dfb812ca1409e" + integrity sha512-1QUdtr/JiuvRjVgA8enpgCwjq7Eud8eVUT0i/vpWuFp5TV2FFq/8BD3GBkesTdy4Ylms6QVGf7J6INdfUWQEmw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.621.0.tgz#710f413708cb372f9f94e8eb9726cf263ffd83e3" - integrity sha512-Kza0jcFeA/GEL6xJlzR2KFf1PfZKMFnxfGzJzl5yN7EjoGdMijl34KaRyVnfRjnCWcsUpBWKNIDk9WZVMY9yiw== +"@aws-sdk/credential-provider-sso@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.662.0.tgz#6d0c9f5f819da6b473d39d0cf4cd42cbbca3a524" + integrity sha512-zxze6pDPgwBwl7S3h4JDALCCz93pTAfulbCY8FqMEd7GvnAiofHpL9svyt4+gytXwwUSsQ6KxCMVLbi+8k8YIg== dependencies: - "@aws-sdk/client-sso" "3.621.0" - "@aws-sdk/token-providers" "3.614.0" - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/client-sso" "3.662.0" + "@aws-sdk/token-providers" "3.662.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.621.0": - version "3.621.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.621.0.tgz#b25878c0a05dad60cd5f91e7e5a31a145c2f14be" - integrity sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w== +"@aws-sdk/credential-provider-web-identity@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.662.0.tgz#18246e29d5f8b242a0717ff7110680cc5816d163" + integrity sha512-GhPwxmHSFtwCckuT+34JG+U99qKfDWVYPLJOPI6b35+aLhfVqW5CHPmVjtM4WZqbxzsA0a3KAYA/U1ZaluI4SA== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.620.0.tgz#b561d419a08a984ba364c193376b482ff5224d74" - integrity sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg== +"@aws-sdk/middleware-host-header@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.662.0.tgz#f3d647d294b19da17ef5845b87dc5c0788196a1e" + integrity sha512-Gkb0J1LTvD8LOS8uwoRI5weFXvvJwP1jfnYwzQrFgLymRFHJm5JtORQZtmw34dtdou+IBTUsH1mgI8b3QVVH3w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz#ed44d201f091b8bac908cbf14724c7a4d492553f" - integrity sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ== +"@aws-sdk/middleware-logger@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.662.0.tgz#8c2ff7d543fe691a06020be853eeb9481409614d" + integrity sha512-aSpwVHtfMlqzpmnmmUgRNCaIcxXdRrGqGWG+VWXuYR1F6jJARDDCxGkSuKiPEOLX0h0BroUo4gqbM8ILXQ8rVw== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-recursion-detection@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.620.0.tgz#f8270dfff843fd756be971e5673f89c6a24c6513" - integrity sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w== - dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" + tslib "^2.6.2" + +"@aws-sdk/middleware-recursion-detection@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.662.0.tgz#5af684014a604d474e6bd763a5d2a3fbfff84d36" + integrity sha512-V/MYE+LOFIQDLnpWMHLxnKu+ELhD3pLOrWXVhKpVit6YcHxaOz6nvB40CPamSPDXenA11FGXKAGNHZ0loTpDQg== + dependencies: + "@aws-sdk/types" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.620.0": - version "3.620.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.620.0.tgz#1fe3104f04f576a942cf0469bfbd73c38eef3d9e" - integrity sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A== +"@aws-sdk/middleware-user-agent@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.662.0.tgz#a428403ced5d6684f29d45dd0f39c6c4ef10ab7b" + integrity sha512-NT940BLSSys/A8W3zO3g2Kj+zpeydqGbSQgN6qz84jTskQjnrlamoq+Zl9Rrp8Cn8sC10UQ09kGg97lvjVOlmg== dependencies: - "@aws-sdk/types" "3.609.0" - "@aws-sdk/util-endpoints" "3.614.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@aws-sdk/util-endpoints" "3.662.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz#9cebb31a5bcfea2a41891fff7f28d0164cde179a" - integrity sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g== +"@aws-sdk/region-config-resolver@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.662.0.tgz#1dcb6850059baa54dcb6e4556ece7ec1a4ee9d1b" + integrity sha512-MDiWl4wZSVnnTELLb+jFSe0nj9HwxJPX2JnghXKkOXmbKEiE2/21DCQwU9mr9VUq2ZOQqaSnMFPr94iRu0AVTQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@aws-sdk/token-providers@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz#88da04f6d4ce916b0b0f6e045676d04201fb47fd" - integrity sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw== +"@aws-sdk/token-providers@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.662.0.tgz#89c60983e13036cebc0e0310ae226e2254f5a741" + integrity sha512-OqtBPutNC9Am10P1W5IwqRvzCVQAHRxWxZnfDBh1FQjNmoboGWYSriKxbrCRYLFffusNuzo8KnOFOmg1sRlhJQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@aws-sdk/types@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.609.0.tgz#06b39d799c9f197a7b43670243e8e78a3bf7d6a5" - integrity sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q== +"@aws-sdk/types@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.662.0.tgz#323de11059df4fd7169a381c166a8aae03abe757" + integrity sha512-Ff9/KRmIm8iEzodxzISLj4/pB/0hX2nVw1RFeOBC65OuM6nHrAdWHHog/CVx25hS5JPU0uE3h6NlWRaBJ7AV5w== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@aws-sdk/types@^3.222.0": @@ -410,14 +411,14 @@ "@smithy/types" "^2.5.0" tslib "^2.5.0" -"@aws-sdk/util-endpoints@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz#6564b0ffd7dc3728221e9f9821f5aab1cc58468e" - integrity sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw== +"@aws-sdk/util-endpoints@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.662.0.tgz#a124838077ae230bba605310a73e43493e58e3d1" + integrity sha512-RQ/78yNUxZZZULFg7VxT7oObGOR/FBc0ojiFoCAKC20ycY8VvVX5Eof4gyxoVpwOP7EoZO3UlWSIqtaEV/X70w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" - "@smithy/util-endpoints" "^2.0.5" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" + "@smithy/util-endpoints" "^2.1.3" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": @@ -427,97 +428,99 @@ dependencies: tslib "^2.5.0" -"@aws-sdk/util-user-agent-browser@3.609.0": - version "3.609.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz#aa15421b2e32ae8bc589dac2bd6e8969832ce588" - integrity sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA== +"@aws-sdk/util-user-agent-browser@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.662.0.tgz#b17b847b38ffa88944939534069bf78a277723ed" + integrity sha512-5wQd+HbNTY1r1Gndxf93dAEFtKz1DqcalI4Ym40To+RIonSsYQNRomFoizYNgJ1P+Mkfsr4P1dy/MNTlkqTZuQ== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.614.0": - version "3.614.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz#1e3f49a80f841a3f21647baed2adce01aac5beb5" - integrity sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA== +"@aws-sdk/util-user-agent-node@3.662.0": + version "3.662.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.662.0.tgz#7199eef53edb1c175e455c94596294541a5aaef4" + integrity sha512-vBRbZ9Hr1OGmdJPWj36X0fR8/VdI2JiwK6+oJRa6qfJ6AnhqCYZbCyeA6JIDeEu3M9iu1OLjenU8NdXhTz8c2w== dependencies: - "@aws-sdk/types" "3.609.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@aws-sdk/types" "3.662.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/abort-controller@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.1.tgz#291210611ff6afecfc198d0ca72d5771d8461d16" - integrity sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ== +"@smithy/abort-controller@^3.1.5": + version "3.1.5" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.5.tgz#ca7a86a3c6b20fabe59667143f58d9e198616d14" + integrity sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/config-resolver@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.5.tgz#727978bba7ace754c741c259486a19d3083431fd" - integrity sha512-SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA== +"@smithy/config-resolver@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.9.tgz#dcf4b7747ca481866f9bfac21469ebe2031a599e" + integrity sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" "@smithy/util-config-provider" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" tslib "^2.6.2" -"@smithy/core@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.3.1.tgz#99cb8eda23009fd7df736c82072dafcf4eb4ff5d" - integrity sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w== +"@smithy/core@^2.4.7": + version "2.4.7" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.4.7.tgz#c4dc9ab3ba5f4b36addf967ca5fce036ce3b767d" + integrity sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-retry" "^3.0.13" - "@smithy/middleware-serde" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-retry" "^3.0.22" + "@smithy/middleware-serde" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-body-length-browser" "^3.0.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/credential-provider-imds@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz#0e0e7ddaff1a8633cb927aee1056c0ab506b7ecf" - integrity sha512-0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA== +"@smithy/credential-provider-imds@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.4.tgz#e1a2bfc8a0066f673756ad8735247cf284b9735c" + integrity sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" tslib "^2.6.2" -"@smithy/fetch-http-handler@^3.2.4": - version "3.2.4" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.4.tgz#c754de7e0ff2541b73ac9ba7cc955940114b3d62" - integrity sha512-kBprh5Gs5h7ug4nBWZi1FZthdqSM+T7zMmsZxx0IBvWUn7dK3diz2SHn7Bs4dQGFDk8plDv375gzenDoNwrXjg== +"@smithy/fetch-http-handler@^3.2.9": + version "3.2.9" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz#8d5199c162a37caa37a8b6848eefa9ca58221a0b" + integrity sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A== dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" tslib "^2.6.2" -"@smithy/hash-node@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.3.tgz#82c5cb7b0f1a29ee7319081853d2d158c07dff24" - integrity sha512-2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw== +"@smithy/hash-node@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.7.tgz#03b5a382fb588b8c2bac11b4fe7300aaf1661c88" + integrity sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz#8d9fd70e3a94b565a4eba4ffbdc95238e1930528" - integrity sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw== +"@smithy/invalid-dependency@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.7.tgz#b36f258d94498f3c72ab6020091a66fc7cc16eda" + integrity sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -534,152 +537,152 @@ dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^3.0.5": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz#1680aa4fb2a1c0505756103c9a5c2916307d9035" - integrity sha512-ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw== - dependencies: - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz#9b8a496d87a68ec43f3f1a0139868d6765a88119" - integrity sha512-5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw== +"@smithy/middleware-content-length@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.9.tgz#fb613d1a6b8c91e828d11c0d7a0a8576dba89b8b" + integrity sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA== dependencies: - "@smithy/middleware-serde" "^3.0.3" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" - "@smithy/url-parser" "^3.0.3" - "@smithy/util-middleware" "^3.0.3" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/middleware-retry@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.13.tgz#3bdd662aff01f360fcbaa166500bbc575dc9d1d0" - integrity sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw== - dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/protocol-http" "^4.1.0" - "@smithy/service-error-classification" "^3.0.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" - "@smithy/util-middleware" "^3.0.3" - "@smithy/util-retry" "^3.0.3" +"@smithy/middleware-endpoint@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.4.tgz#222c9fa49c8af6ebf8bea8ab220d92d9b8c90d3d" + integrity sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ== + dependencies: + "@smithy/middleware-serde" "^3.0.7" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" + "@smithy/url-parser" "^3.0.7" + "@smithy/util-middleware" "^3.0.7" + tslib "^2.6.2" + +"@smithy/middleware-retry@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.22.tgz#578ceafd72fd655cde35c35b462a8aad26fd07e2" + integrity sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA== + dependencies: + "@smithy/node-config-provider" "^3.1.8" + "@smithy/protocol-http" "^4.1.4" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" + "@smithy/util-middleware" "^3.0.7" + "@smithy/util-retry" "^3.0.7" tslib "^2.6.2" uuid "^9.0.1" -"@smithy/middleware-serde@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz#74d974460f74d99f38c861e6862984543a880a66" - integrity sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA== +"@smithy/middleware-serde@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.7.tgz#03f0dda75edffc4cc90ea422349cbfb82368efa7" + integrity sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/middleware-stack@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz#91845c7e61e6f137fa912b623b6def719a4f6ce7" - integrity sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA== +"@smithy/middleware-stack@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.7.tgz#813fa7b47895ce0d085eac89c056d21b1e46e771" + integrity sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/node-config-provider@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz#05647bed666aa8036a1ad72323c1942e5d421be1" - integrity sha512-YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ== +"@smithy/node-config-provider@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.8.tgz#2c1092040b4062eae0f7c9e121cc00ac6a77efee" + integrity sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/shared-ini-file-loader" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/shared-ini-file-loader" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/node-http-handler@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz#be4195e45639e690d522cd5f11513ea822ff9d5f" - integrity sha512-+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg== +"@smithy/node-http-handler@^3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.2.4.tgz#3c57c40d082c3bacac1e49955bd1240e8ccc40b2" + integrity sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ== dependencies: - "@smithy/abort-controller" "^3.1.1" - "@smithy/protocol-http" "^4.1.0" - "@smithy/querystring-builder" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/abort-controller" "^3.1.5" + "@smithy/protocol-http" "^4.1.4" + "@smithy/querystring-builder" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/property-provider@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.3.tgz#afd57ea82a3f6c79fbda95e3cb85c0ee0a79f39a" - integrity sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g== +"@smithy/property-provider@^3.1.7": + version "3.1.7" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.7.tgz#8a304a4b9110a067a93c784e4c11e175f82da379" + integrity sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/protocol-http@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.0.tgz#23519d8f45bf4f33960ea5415847bc2b620a010b" - integrity sha512-dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA== +"@smithy/protocol-http@^4.1.4": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.4.tgz#6940d652b1825bda2422163ec9baab552669a338" + integrity sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/querystring-builder@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz#6b0e566f885bb84938d077c69e8f8555f686af13" - integrity sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw== +"@smithy/querystring-builder@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.7.tgz#8c443c65f4249ff1637088db1166d18411d41555" + integrity sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" "@smithy/util-uri-escape" "^3.0.0" tslib "^2.6.2" -"@smithy/querystring-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz#272a6b83f88dfcbbec8283d72a6bde850cc00091" - integrity sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ== +"@smithy/querystring-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.7.tgz#936206d1e6da9d862384dae730b4bad042d6a948" + integrity sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/service-error-classification@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz#73484255060a094aa9372f6cd972dcaf97e3ce80" - integrity sha512-Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ== +"@smithy/service-error-classification@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.7.tgz#5bab4ad802d30bd3fa52b8134f6c171582358226" + integrity sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" -"@smithy/shared-ini-file-loader@^3.1.4": - version "3.1.4" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz#7dceaf5a5307a2ee347ace8aba17312a1a3ede15" - integrity sha512-qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ== +"@smithy/shared-ini-file-loader@^3.1.8": + version "3.1.8" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.8.tgz#7a0bf5f20cfe8e0c4a36d8dcab8194d0d2ee958e" + integrity sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/signature-v4@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.1.0.tgz#251ff43dc1f4ad66776122732fea9e56efc56443" - integrity sha512-aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag== +"@smithy/signature-v4@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.2.0.tgz#291f5a0e756cc251377e1e8af2a1f494e6173029" + integrity sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ== dependencies: "@smithy/is-array-buffer" "^3.0.0" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" "@smithy/util-hex-encoding" "^3.0.0" - "@smithy/util-middleware" "^3.0.3" + "@smithy/util-middleware" "^3.0.7" "@smithy/util-uri-escape" "^3.0.0" "@smithy/util-utf8" "^3.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^3.1.11": - version "3.1.11" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.1.11.tgz#f12a7a0acaa7db3ead488ddf12ef4681daec11a7" - integrity sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ== +"@smithy/smithy-client@^3.3.6": + version "3.3.6" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.3.6.tgz#882fcc4b5db35c284c7a7c6116b27be324c41202" + integrity sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw== dependencies: - "@smithy/middleware-endpoint" "^3.1.0" - "@smithy/middleware-stack" "^3.0.3" - "@smithy/protocol-http" "^4.1.0" - "@smithy/types" "^3.3.0" - "@smithy/util-stream" "^3.1.3" + "@smithy/middleware-endpoint" "^3.1.4" + "@smithy/middleware-stack" "^3.0.7" + "@smithy/protocol-http" "^4.1.4" + "@smithy/types" "^3.5.0" + "@smithy/util-stream" "^3.1.9" tslib "^2.6.2" "@smithy/types@^2.5.0": @@ -689,20 +692,20 @@ dependencies: tslib "^2.5.0" -"@smithy/types@^3.3.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.3.0.tgz#fae037c733d09bc758946a01a3de0ef6e210b16b" - integrity sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA== +"@smithy/types@^3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.5.0.tgz#9589e154c50d9c5d00feb7d818112ef8fc285d6e" + integrity sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.3.tgz#e8a060d9810b24b1870385fc2b02485b8a6c5955" - integrity sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A== +"@smithy/url-parser@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.7.tgz#9d7d7e4e38514bf75ade6e8a30d2300f3db17d1b" + integrity sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA== dependencies: - "@smithy/querystring-parser" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/querystring-parser" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-base64@^3.0.0": @@ -751,37 +754,37 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.13.tgz#f574bbb89d60f5dcc443f106087d317b370634d0" - integrity sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw== +"@smithy/util-defaults-mode-browser@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.22.tgz#e9141ed58109d572337a621d96131526aaf4f42f" + integrity sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q== dependencies: - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^3.0.13": - version "3.0.13" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.13.tgz#cdd3a08bb5af4d17c2b0a951af9936ce7f3bae93" - integrity sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g== +"@smithy/util-defaults-mode-node@^3.0.22": + version "3.0.22" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.22.tgz#fc51f37aaa5ec03edec0da890a1ca1e3e3cdc70b" + integrity sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg== dependencies: - "@smithy/config-resolver" "^3.0.5" - "@smithy/credential-provider-imds" "^3.2.0" - "@smithy/node-config-provider" "^3.1.4" - "@smithy/property-provider" "^3.1.3" - "@smithy/smithy-client" "^3.1.11" - "@smithy/types" "^3.3.0" + "@smithy/config-resolver" "^3.0.9" + "@smithy/credential-provider-imds" "^3.2.4" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/property-provider" "^3.1.7" + "@smithy/smithy-client" "^3.3.6" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-endpoints@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz#e3a7a4d1c41250bfd2b2d890d591273a7d8934be" - integrity sha512-ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg== +"@smithy/util-endpoints@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.1.3.tgz#7498151e9dc714bdd0c6339314dd2350fa4d250a" + integrity sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw== dependencies: - "@smithy/node-config-provider" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/node-config-provider" "^3.1.8" + "@smithy/types" "^3.5.0" tslib "^2.6.2" "@smithy/util-hex-encoding@^3.0.0": @@ -791,31 +794,31 @@ dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.3.tgz#07bf9602682f5a6c55bc2f0384303f85fc68c87e" - integrity sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw== +"@smithy/util-middleware@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.7.tgz#770d09749b6d170a1641384a2e961487447446fa" + integrity sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA== dependencies: - "@smithy/types" "^3.3.0" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-retry@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.3.tgz#9b2ac0dbb1c81f69812a8affa4d772bebfc0e049" - integrity sha512-AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w== +"@smithy/util-retry@^3.0.7": + version "3.0.7" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.7.tgz#694e0667574ffe9772f620b35d3c7286aced35e9" + integrity sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug== dependencies: - "@smithy/service-error-classification" "^3.0.3" - "@smithy/types" "^3.3.0" + "@smithy/service-error-classification" "^3.0.7" + "@smithy/types" "^3.5.0" tslib "^2.6.2" -"@smithy/util-stream@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.3.tgz#699ee2397cc1d474e46d2034039d5263812dca64" - integrity sha512-FIv/bRhIlAxC0U7xM1BCnF2aDRPq0UaelqBHkM2lsCp26mcBbgI0tCVTv+jGdsQLUmAMybua/bjDsSu8RQHbmw== +"@smithy/util-stream@^3.1.9": + version "3.1.9" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.9.tgz#d39656eae27696bdc5a3ec7c2f6b89c32dccd1ca" + integrity sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ== dependencies: - "@smithy/fetch-http-handler" "^3.2.4" - "@smithy/node-http-handler" "^3.1.4" - "@smithy/types" "^3.3.0" + "@smithy/fetch-http-handler" "^3.2.9" + "@smithy/node-http-handler" "^3.2.4" + "@smithy/types" "^3.5.0" "@smithy/util-base64" "^3.0.0" "@smithy/util-buffer-from" "^3.0.0" "@smithy/util-hex-encoding" "^3.0.0" From 9ad04ff645179f19b48ec79ce4da4f0c2631da2a Mon Sep 17 00:00:00 2001 From: Bangbay Siboliban <bangbay@bluetiger.digital> Date: Wed, 9 Oct 2024 14:43:24 -0400 Subject: [PATCH 24/24] Fix typo and upload 2024 template (#139794) --- services/app-api/handlers/apiNames.txt | 2 +- .../handlers/fiscalYearTemplate/get.ts | 10 +- .../fiscalYearTemplate/tests/get.test.ts | 22 +++ services/app-api/serverless.yml | 2 +- services/app-api/types.ts | 6 +- .../data/seed-local/seed-section.json | 20 +-- .../data/seed/seed-section-base-2022.json | 2 +- .../data/seed/seed-section-base-2023.json | 2 +- .../data/seed/seed-section-base-2024.json | 2 +- services/ui-src/src/actions/download.js | 8 +- .../sections/homepage/TemplateDownload.jsx | 141 +++++++++--------- .../homepage/TemplateDownload.test.jsx | 13 +- 12 files changed, 140 insertions(+), 90 deletions(-) diff --git a/services/app-api/handlers/apiNames.txt b/services/app-api/handlers/apiNames.txt index 2da59eca5..66c087faf 100644 --- a/services/app-api/handlers/apiNames.txt +++ b/services/app-api/handlers/apiNames.txt @@ -2,7 +2,7 @@ POST /formTemplates - create the sections for a given year for all known states -- fiscalYearTemplate -GET /fiscalYearTemplate - get the download link for the Fiscal Year Report Template +GET /fiscalYearTemplate/{year} - get the download link for the Fiscal Year Report Template -- state GET /state - return info on all states and territories diff --git a/services/app-api/handlers/fiscalYearTemplate/get.ts b/services/app-api/handlers/fiscalYearTemplate/get.ts index 5b03b77a7..c209886f5 100644 --- a/services/app-api/handlers/fiscalYearTemplate/get.ts +++ b/services/app-api/handlers/fiscalYearTemplate/get.ts @@ -2,8 +2,14 @@ import handler from "../../libs/handler-lib"; import s3 from "../../libs/s3-lib"; import { ReportPdfs } from "../../types"; -export const getFiscalYearTemplateLink = handler(async (_context) => { - const filename = ReportPdfs[2024]; +export const getFiscalYearTemplateLink = handler(async (event, _context) => { + if (!event.pathParameters?.year) { + throw new Error("Be sure to include year in the path"); + } + + const { year } = event.pathParameters; + + const filename = ReportPdfs[year]; const url = await s3.getSignedDownloadUrl( { Bucket: diff --git a/services/app-api/handlers/fiscalYearTemplate/tests/get.test.ts b/services/app-api/handlers/fiscalYearTemplate/tests/get.test.ts index 84780ed17..0c9297f91 100644 --- a/services/app-api/handlers/fiscalYearTemplate/tests/get.test.ts +++ b/services/app-api/handlers/fiscalYearTemplate/tests/get.test.ts @@ -18,10 +18,32 @@ describe("Test Get Fiscal Year Template Handlers", () => { ...testEvent, }; + event.pathParameters = { year: "2024" }; + const res = await getFiscalYearTemplateLink(event, null); expect(res.statusCode).toBe(200); expect(JSON.parse(res.body)).toEqual({ psurl: "mock url", }); }); + + test("fetching fiscal year template without params should return server error", async () => { + const event: APIGatewayProxyEvent = { + ...testEvent, + }; + + event.pathParameters = null; + + const res = await getFiscalYearTemplateLink(event, null); + expect(res.statusCode).toBe(500); + }); + + test("fetching fiscal year template without year should return server error", async () => { + const event: APIGatewayProxyEvent = { + ...testEvent, + }; + + const res = await getFiscalYearTemplateLink(event, null); + expect(res.statusCode).toBe(500); + }); }); diff --git a/services/app-api/serverless.yml b/services/app-api/serverless.yml index fad325490..6c46bbf31 100644 --- a/services/app-api/serverless.yml +++ b/services/app-api/serverless.yml @@ -139,7 +139,7 @@ functions: handler: handlers/fiscalYearTemplate/get.getFiscalYearTemplateLink events: - http: - path: fiscalYearTemplate + path: fiscalYearTemplate/{year} method: get cors: true authorizer: aws_iam diff --git a/services/app-api/types.ts b/services/app-api/types.ts index 511529453..385bbb7a7 100644 --- a/services/app-api/types.ts +++ b/services/app-api/types.ts @@ -149,7 +149,11 @@ export const enum RequestMethods { /** * Preseving historic filenames in case we need to make them available on demand or switch between available forms. */ -export const ReportPdfs = { +interface ReportPdfsInterface { + [key: string]: string; +} + +export const ReportPdfs: ReportPdfsInterface = { 2021: "FFY_2021_CARTS_Template.pdf", 2022: "FFY_2022_CARTS_Template.pdf", 2023: "FFY_2023_CARTS_Template.pdf", diff --git a/services/database/data/seed-local/seed-section.json b/services/database/data/seed-local/seed-section.json index c0a87b848..124883ef4 100644 --- a/services/database/data/seed-local/seed-section.json +++ b/services/database/data/seed-local/seed-section.json @@ -8116,7 +8116,7 @@ "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", "answer": { - "entry": "Increase the use of preventative care" + "entry": "Increase the use of preventive care" } }, { @@ -18302,7 +18302,7 @@ "label": "What is the next objective listed in your CHIP State Plan?", "type": "text_multiline", "answer": { - "entry": "Increase the use of preventative care" + "entry": "Increase the use of preventive care" }, "hint": "You can edit the suggested objective to match what’s in your CHIP State Plan." }, @@ -29659,7 +29659,7 @@ "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", "answer": { - "entry": "Increase the use of preventative care " + "entry": "Increase the use of preventive care " } }, { @@ -29672,7 +29672,7 @@ "questions": [ { "id": "2021-04-a-01-01-03-02-01-01", - "hint": "For example: In an effort to increase the use of preventative care, our goal is to increase the number of children who receive one or more well child visits by 5%.", + "hint": "For example: In an effort to increase the use of preventive care, our goal is to increase the number of children who receive one or more well child visits by 5%.", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", "answer": { @@ -29850,7 +29850,7 @@ "questions": [ { "id": "2021-04-a-01-01-03-02-02-01", - "hint": "For example: In an effort to increase the use of preventative care, our goal is to increase the number of children who receive one or more well child visits by 5%.", + "hint": "For example: In an effort to increase the use of preventive care, our goal is to increase the number of children who receive one or more well child visits by 5%.", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", "answer": { @@ -30030,7 +30030,7 @@ "questions": [ { "id": "2021-04-a-01-01-03-02-03-01", - "hint": "For example: In an effort to increase the use of preventative care, our goal is to increase the number of children who receive one or more well child visits by 5%.", + "hint": "For example: In an effort to increase the use of preventive care, our goal is to increase the number of children who receive one or more well child visits by 5%.", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", "answer": { @@ -41398,7 +41398,7 @@ "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", "answer": { - "entry": "Increase the use of preventative care " + "entry": "Increase the use of preventive care " } }, { @@ -41411,7 +41411,7 @@ "questions": [ { "id": "2020-04-a-01-01-03-02-01-01", - "hint": "For example: In an effort to increase the use of preventative care, our goal is to increase the number of children who receive one or more well child visits by 5%.", + "hint": "For example: In an effort to increase the use of preventive care, our goal is to increase the number of children who receive one or more well child visits by 5%.", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", "answer": { @@ -41589,7 +41589,7 @@ "questions": [ { "id": "2020-04-a-01-01-03-02-02-01", - "hint": "For example: In an effort to increase the use of preventative care, our goal is to increase the number of children who receive one or more well child visits by 5%.", + "hint": "For example: In an effort to increase the use of preventive care, our goal is to increase the number of children who receive one or more well child visits by 5%.", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", "answer": { @@ -41769,7 +41769,7 @@ "questions": [ { "id": "2020-04-a-01-01-03-02-03-01", - "hint": "For example: In an effort to increase the use of preventative care, our goal is to increase the number of children who receive one or more well child visits by 5%.", + "hint": "For example: In an effort to increase the use of preventive care, our goal is to increase the number of children who receive one or more well child visits by 5%.", "type": "text_multiline", "label": "Briefly describe your goal for this objective.", "answer": { diff --git a/services/database/data/seed/seed-section-base-2022.json b/services/database/data/seed/seed-section-base-2022.json index 8711ba10b..667b0612d 100644 --- a/services/database/data/seed/seed-section-base-2022.json +++ b/services/database/data/seed/seed-section-base-2022.json @@ -9327,7 +9327,7 @@ "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", "answer": { - "entry": "Increase the use of preventative care" + "entry": "Increase the use of preventive care" } }, { diff --git a/services/database/data/seed/seed-section-base-2023.json b/services/database/data/seed/seed-section-base-2023.json index f8d6c8d01..bb6ecda4a 100644 --- a/services/database/data/seed/seed-section-base-2023.json +++ b/services/database/data/seed/seed-section-base-2023.json @@ -9257,7 +9257,7 @@ "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", "answer": { - "entry": "Increase the use of preventative care" + "entry": "Increase the use of preventive care" } }, { diff --git a/services/database/data/seed/seed-section-base-2024.json b/services/database/data/seed/seed-section-base-2024.json index 329b0e1ce..592276e7b 100644 --- a/services/database/data/seed/seed-section-base-2024.json +++ b/services/database/data/seed/seed-section-base-2024.json @@ -8560,7 +8560,7 @@ "type": "text_multiline", "label": "What is the next objective listed in your CHIP State Plan?", "answer": { - "entry": "Increase the use of preventative care" + "entry": "Increase the use of preventive care" } }, { diff --git a/services/ui-src/src/actions/download.js b/services/ui-src/src/actions/download.js index 04d55ddeb..9bfddc88a 100644 --- a/services/ui-src/src/actions/download.js +++ b/services/ui-src/src/actions/download.js @@ -5,11 +5,15 @@ export const GET_TEMPLATE = "GET_TEMPLATE"; export const GET_TEMPLATE_SUCCESS = "GET_TEMPLATE_SUCCESS"; export const GET_TEMPLATE_FAILURE = "GET_TEMPLATE_FAILURE"; -export const getFiscalYearTemplate = () => async (dispatch) => { +export const getFiscalYearTemplate = (year) => async (dispatch) => { dispatch({ type: GET_TEMPLATE, data: "" }); try { const opts = await requestOptions(); - const data = await apiLib.get("carts-api", `/fiscalYearTemplate`, opts); + const data = await apiLib.get( + "carts-api", + `/fiscalYearTemplate/${year}`, + opts + ); dispatch({ type: GET_TEMPLATE_SUCCESS, diff --git a/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx b/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx index 9200e2da1..e1e013c1e 100644 --- a/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx +++ b/services/ui-src/src/components/sections/homepage/TemplateDownload.jsx @@ -10,82 +10,85 @@ import { //types import PropTypes from "prop-types"; -const TemplateDownload = ({ getTemplate }) => ( - <div className="ds-l-row"> - <div className="updates ds-l-col--12"> - <p className="update-title">Updates from Central Office</p> - {useFlags().release2024 && ( - <div className="preamble"> - <p> - Completing the Children’s Health Insurance Program (CHIP) Annual - Report is required under sections 2108(a) and 2108(e) of the Social - Security Act, and regulations at 42 CFR 457.750. - </p> - <p> - Each state must assess their CHIP operations and overall progress in - reducing the number of uninsured low-income children after each - federal fiscal year. - </p> - <p> - States must complete all relevant sections of the CHIP Annual Report - Template System (CARTS) and certify their report by January 1st. - After review and acceptance by CMS, CHIP annual reports are - published at{" "} - <a href="https://www.medicaid.gov/chip/reports-evaluations/index.html"> - https://www.medicaid.gov/chip/reports-evaluations/index.html - </a> - </p> - </div> - )} - <div className="update-date"> - {useFlags().release2024 ? "Oct 2024" : "Sept 2023"} - </div> - <div className="update ds-l-row"> - <div className="icon ds-l-col--2"> - <div className="icon-inner"> - <FontAwesomeIcon icon={faFileAlt} /> +const TemplateDownload = ({ getTemplate }) => { + const currentYear = useFlags().release2024 ? "2024" : "2023"; + + return ( + <div className="ds-l-row"> + <div className="updates ds-l-col--12"> + <p className="update-title">Updates from Central Office</p> + {useFlags().release2024 && ( + <div className="preamble"> + <p> + Completing the Children’s Health Insurance Program (CHIP) Annual + Report is required under sections 2108(a) and 2108(e) of the + Social Security Act, and regulations at 42 CFR 457.750. + </p> + <p> + Each state must assess their CHIP operations and overall progress + in reducing the number of uninsured low-income children after each + federal fiscal year. + </p> + <p> + States must complete all relevant sections of the CHIP Annual + Report Template System (CARTS) and certify their report by January + 1st. After review and acceptance by CMS, CHIP annual reports are + published at{" "} + <a href="https://www.medicaid.gov/chip/reports-evaluations/index.html"> + https://www.medicaid.gov/chip/reports-evaluations/index.html + </a> + </p> </div> + )} + <div className="update-date"> + {useFlags().release2024 ? "Oct 2024" : "Sept 2023"} </div> - <div className="update-contents ds-l-col--10"> - <div className="title"> - <h3> - Your fiscal year {useFlags().release2024 ? "2024" : "2023"}{" "} - template is ready for download - </h3> + <div className="update ds-l-row"> + <div className="icon ds-l-col--2"> + <div className="icon-inner"> + <FontAwesomeIcon icon={faFileAlt} /> + </div> </div> - <p> - Download your template for the current reporting period below. - Please contact{" "} - <a href="mailto:mdct_help@cms.hhs.gov?subject=CARTS Help request"> - mdct_help@cms.hhs.gov - </a>{" "} - with any questions. - </p> - <div className="download"> - <button - className="ds-c-button ds-c-button--primary" - onClick={() => getTemplate()} - > - <span className="button-display">Download template</span> - <span className="fa-layers fa-fw"> - <FontAwesomeIcon - icon={faArrowDown} - transform="up-2 right-2" - position - /> - <FontAwesomeIcon - icon={faMinus} - transform="down-10 right-2" - size="sm" - /> - </span> - </button> + <div className="update-contents ds-l-col--10"> + <div className="title"> + <h3> + Your fiscal year {currentYear} template is ready for download + </h3> + </div> + <p> + Download your template for the current reporting period below. + Please contact{" "} + <a href="mailto:mdct_help@cms.hhs.gov?subject=CARTS Help request"> + mdct_help@cms.hhs.gov + </a>{" "} + with any questions. + </p> + <div className="download"> + <button + className="ds-c-button ds-c-button--primary" + onClick={() => getTemplate(currentYear)} + > + <span className="button-display">Download template</span> + <span className="fa-layers fa-fw"> + <FontAwesomeIcon + icon={faArrowDown} + transform="up-2 right-2" + position + /> + <FontAwesomeIcon + icon={faMinus} + transform="down-10 right-2" + size="sm" + /> + </span> + </button> + </div> </div> </div> </div> </div> - </div> -); + ); +}; TemplateDownload.propTypes = { getTemplate: PropTypes.func.isRequired, diff --git a/services/ui-src/src/components/sections/homepage/TemplateDownload.test.jsx b/services/ui-src/src/components/sections/homepage/TemplateDownload.test.jsx index 839c64e78..5567f3ddf 100644 --- a/services/ui-src/src/components/sections/homepage/TemplateDownload.test.jsx +++ b/services/ui-src/src/components/sections/homepage/TemplateDownload.test.jsx @@ -3,8 +3,10 @@ import TemplateDownload from "./TemplateDownload"; import { shallow } from "enzyme"; import { axe } from "jest-axe"; -import { render } from "@testing-library/react"; +import { render, screen } from "@testing-library/react"; +import userEventLib from "@testing-library/user-event"; +const userEvent = userEventLib.setup({ applyAccept: false }); const myMock = jest.fn(); const defaultProps = { getTemplate: myMock }; const wrapper = <TemplateDownload {...defaultProps} />; @@ -13,6 +15,15 @@ describe("<TemplateDownload />", () => { it("should render correctly", () => { expect(shallow(wrapper).exists()).toBe(true); }); + + it("should have download template link", async () => { + render(wrapper); + + const downloadTemplateButton = screen.getByRole("button"); + await userEvent.click(downloadTemplateButton); + + expect(defaultProps.getTemplate).toBeCalledWith("2023"); + }); }); describe("Test <TemplateDownload /> accessibility", () => {