pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/py-moto



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Feb  7 22:07:53 UTC 2025

Modified Files:
        pkgsrc/net/py-moto: Makefile PLIST distinfo

Log Message:
py-moto: updated to 5.0.28

5.0.28

* General:
    * Bootstrapping a CDK project is now supported

* New Services:
    * S3 Tables:
        * create_namespace()
        * create_table()
        * create_table_bucket()
        * delete_namespace()
        * delete_table()
        * delete_table_bucket()
        * get_metadata_location()
        * get_table()
        * get_table_bucket()
        * list_namespaces()
        * list_table_buckets()
        * list_tables()
        * rename_table()
        * update_metadata_location()

* Miscellaneous:
    * DynamoDB: delete_item() now returns ConsumedCapacity
    * DynamoDB: transact_write_items() now returns a ReturnValuesOnConditionCheckFailure for all operations
    * ECR: Lifecycle Policies() now support the tagPatternList-parameter
    * S3: get_object() now returns the ETag when returning a 304 (Not Modified)
    * SecretsManager: get_secret_value() no longer throws an error after calling rotate_secret(RotateImmediately=False)
    * SecretsManager: list_secrets() now filters values with special chars correctly
    * Organizations: list_roots() now returns the roots of the parent organization, if called from within a child organization


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/net/py-moto/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/py-moto/PLIST
cvs rdiff -u -r1.9 -r1.10 pkgsrc/net/py-moto/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/py-moto/Makefile
diff -u pkgsrc/net/py-moto/Makefile:1.15 pkgsrc/net/py-moto/Makefile:1.16
--- pkgsrc/net/py-moto/Makefile:1.15    Mon Nov 11 07:28:49 2024
+++ pkgsrc/net/py-moto/Makefile Fri Feb  7 22:07:53 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2024/11/11 07:28:49 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2025/02/07 22:07:53 adam Exp $
 
-DISTNAME=      moto-4.1.14
+DISTNAME=      moto-5.0.28
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    net devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=m/moto/}
@@ -12,19 +12,21 @@ LICENSE=    apache-2.0
 
 TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=40.6.0:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-boto3>=1.9.201:../../net/py-boto3
-DEPENDS+=      ${PYPKGPREFIX}-botocore>=1.12.201:../../net/py-botocore
+DEPENDS+=      ${PYPKGPREFIX}-botocore>=1.35.47:../../net/py-botocore
 DEPENDS+=      ${PYPKGPREFIX}-dateutil>=2.1:../../time/py-dateutil
 DEPENDS+=      ${PYPKGPREFIX}-jinja2>=2.10.1:../../textproc/py-jinja2
 DEPENDS+=      ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
 DEPENDS+=      ${PYPKGPREFIX}-requests>=2.5:../../devel/py-requests
-DEPENDS+=      ${PYPKGPREFIX}-responses>=0.13.0:../../net/py-responses
+DEPENDS+=      ${PYPKGPREFIX}-responses>=0.25.6:../../net/py-responses
 DEPENDS+=      ${PYPKGPREFIX}-werkzeug>=2.2.2:../../www/py-werkzeug
 DEPENDS+=      ${PYPKGPREFIX}-xmltodict-[0-9]*:../../textproc/py-xmltodict
+# proxy
+DEPENDS+=      ${PYPKGPREFIX}-multipart-[0-9]*:../../www/py-multipart
+# server
+DEPENDS+=      ${PYPKGPREFIX}-flask>=2.2.2:../../www/py-flask
+DEPENDS+=      ${PYPKGPREFIX}-flask-cors-[0-9]*:../../www/py-flask-cors
+DEPENDS+=      ${PYPKGPREFIX}-pyaml>=5.1:../../textproc/py-pyaml
 # unlisted but used
-DEPENDS+=      ${PYPKGPREFIX}-flask-[0-9]*:../../www/py-flask
-DEPENDS+=      ${PYPKGPREFIX}-pyaml-[0-9]*:../../textproc/py-pyaml
-# unlisted but used
-TEST_DEPENDS+= ${PYPKGPREFIX}-flask-cors-[0-9]*:../../www/py-flask-cors
 TEST_DEPENDS+= ${PYPKGPREFIX}-freezegun-[0-9]*:../../devel/py-freezegun
 TEST_DEPENDS+= ${PYPKGPREFIX}-openapi-spec-validator>=0.2.8:../../textproc/py-openapi-spec-validator
 TEST_DEPENDS+= ${PYPKGPREFIX}-sure>=1.2.24:../../devel/py-sure
@@ -33,13 +35,13 @@ TEST_DEPENDS+=      ${PYPKGPREFIX}-sure>=1.2.
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
-
 post-install:
+.for bin in moto_proxy moto_server
        cd ${DESTDIR}${PREFIX}/bin && \
-       ${MV} moto_server moto_server-${PYVERSSUFFIX} || ${TRUE}
+       ${MV} ${bin} ${bin}-${PYVERSSUFFIX} || ${TRUE}
+.endfor
 
-.include "../../lang/python/wheel.mk"
 PYTHON_VERSIONED_DEPENDENCIES+=        cryptography
 .include "../../lang/python/versioned_dependencies.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/net/py-moto/PLIST
diff -u pkgsrc/net/py-moto/PLIST:1.7 pkgsrc/net/py-moto/PLIST:1.8
--- pkgsrc/net/py-moto/PLIST:1.7        Sat Jan 27 19:05:56 2024
+++ pkgsrc/net/py-moto/PLIST    Fri Feb  7 22:07:53 2025
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.7 2024/01/27 19:05:56 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2025/02/07 22:07:53 adam Exp $
+bin/moto_proxy-${PYVERSSUFFIX}
 bin/moto_server-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS.md
 ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
@@ -91,6 +92,18 @@ ${PYSITELIB}/moto/apigateway/urls.pyo
 ${PYSITELIB}/moto/apigateway/utils.py
 ${PYSITELIB}/moto/apigateway/utils.pyc
 ${PYSITELIB}/moto/apigateway/utils.pyo
+${PYSITELIB}/moto/apigatewaymanagementapi/__init__.py
+${PYSITELIB}/moto/apigatewaymanagementapi/__init__.pyc
+${PYSITELIB}/moto/apigatewaymanagementapi/__init__.pyo
+${PYSITELIB}/moto/apigatewaymanagementapi/models.py
+${PYSITELIB}/moto/apigatewaymanagementapi/models.pyc
+${PYSITELIB}/moto/apigatewaymanagementapi/models.pyo
+${PYSITELIB}/moto/apigatewaymanagementapi/responses.py
+${PYSITELIB}/moto/apigatewaymanagementapi/responses.pyc
+${PYSITELIB}/moto/apigatewaymanagementapi/responses.pyo
+${PYSITELIB}/moto/apigatewaymanagementapi/urls.py
+${PYSITELIB}/moto/apigatewaymanagementapi/urls.pyc
+${PYSITELIB}/moto/apigatewaymanagementapi/urls.pyo
 ${PYSITELIB}/moto/apigatewayv2/__init__.py
 ${PYSITELIB}/moto/apigatewayv2/__init__.pyc
 ${PYSITELIB}/moto/apigatewayv2/__init__.pyo
@@ -139,6 +152,42 @@ ${PYSITELIB}/moto/applicationautoscaling
 ${PYSITELIB}/moto/applicationautoscaling/utils.py
 ${PYSITELIB}/moto/applicationautoscaling/utils.pyc
 ${PYSITELIB}/moto/applicationautoscaling/utils.pyo
+${PYSITELIB}/moto/appmesh/__init__.py
+${PYSITELIB}/moto/appmesh/__init__.pyc
+${PYSITELIB}/moto/appmesh/__init__.pyo
+${PYSITELIB}/moto/appmesh/dataclasses/mesh.py
+${PYSITELIB}/moto/appmesh/dataclasses/mesh.pyc
+${PYSITELIB}/moto/appmesh/dataclasses/mesh.pyo
+${PYSITELIB}/moto/appmesh/dataclasses/route.py
+${PYSITELIB}/moto/appmesh/dataclasses/route.pyc
+${PYSITELIB}/moto/appmesh/dataclasses/route.pyo
+${PYSITELIB}/moto/appmesh/dataclasses/shared.py
+${PYSITELIB}/moto/appmesh/dataclasses/shared.pyc
+${PYSITELIB}/moto/appmesh/dataclasses/shared.pyo
+${PYSITELIB}/moto/appmesh/dataclasses/virtual_node.py
+${PYSITELIB}/moto/appmesh/dataclasses/virtual_node.pyc
+${PYSITELIB}/moto/appmesh/dataclasses/virtual_node.pyo
+${PYSITELIB}/moto/appmesh/dataclasses/virtual_router.py
+${PYSITELIB}/moto/appmesh/dataclasses/virtual_router.pyc
+${PYSITELIB}/moto/appmesh/dataclasses/virtual_router.pyo
+${PYSITELIB}/moto/appmesh/exceptions.py
+${PYSITELIB}/moto/appmesh/exceptions.pyc
+${PYSITELIB}/moto/appmesh/exceptions.pyo
+${PYSITELIB}/moto/appmesh/models.py
+${PYSITELIB}/moto/appmesh/models.pyc
+${PYSITELIB}/moto/appmesh/models.pyo
+${PYSITELIB}/moto/appmesh/responses.py
+${PYSITELIB}/moto/appmesh/responses.pyc
+${PYSITELIB}/moto/appmesh/responses.pyo
+${PYSITELIB}/moto/appmesh/urls.py
+${PYSITELIB}/moto/appmesh/urls.pyc
+${PYSITELIB}/moto/appmesh/urls.pyo
+${PYSITELIB}/moto/appmesh/utils/common.py
+${PYSITELIB}/moto/appmesh/utils/common.pyc
+${PYSITELIB}/moto/appmesh/utils/common.pyo
+${PYSITELIB}/moto/appmesh/utils/spec_parsing.py
+${PYSITELIB}/moto/appmesh/utils/spec_parsing.pyc
+${PYSITELIB}/moto/appmesh/utils/spec_parsing.pyo
 ${PYSITELIB}/moto/appsync/__init__.py
 ${PYSITELIB}/moto/appsync/__init__.pyc
 ${PYSITELIB}/moto/appsync/__init__.pyo
@@ -208,12 +257,36 @@ ${PYSITELIB}/moto/awslambda/urls.pyo
 ${PYSITELIB}/moto/awslambda/utils.py
 ${PYSITELIB}/moto/awslambda/utils.pyc
 ${PYSITELIB}/moto/awslambda/utils.pyo
+${PYSITELIB}/moto/awslambda_simple/__init__.py
+${PYSITELIB}/moto/awslambda_simple/__init__.pyc
+${PYSITELIB}/moto/awslambda_simple/__init__.pyo
+${PYSITELIB}/moto/awslambda_simple/models.py
+${PYSITELIB}/moto/awslambda_simple/models.pyc
+${PYSITELIB}/moto/awslambda_simple/models.pyo
+${PYSITELIB}/moto/awslambda_simple/responses.py
+${PYSITELIB}/moto/awslambda_simple/responses.pyc
+${PYSITELIB}/moto/awslambda_simple/responses.pyo
 ${PYSITELIB}/moto/backend_index.py
 ${PYSITELIB}/moto/backend_index.pyc
 ${PYSITELIB}/moto/backend_index.pyo
 ${PYSITELIB}/moto/backends.py
 ${PYSITELIB}/moto/backends.pyc
 ${PYSITELIB}/moto/backends.pyo
+${PYSITELIB}/moto/backup/__init__.py
+${PYSITELIB}/moto/backup/__init__.pyc
+${PYSITELIB}/moto/backup/__init__.pyo
+${PYSITELIB}/moto/backup/exceptions.py
+${PYSITELIB}/moto/backup/exceptions.pyc
+${PYSITELIB}/moto/backup/exceptions.pyo
+${PYSITELIB}/moto/backup/models.py
+${PYSITELIB}/moto/backup/models.pyc
+${PYSITELIB}/moto/backup/models.pyo
+${PYSITELIB}/moto/backup/responses.py
+${PYSITELIB}/moto/backup/responses.pyc
+${PYSITELIB}/moto/backup/responses.pyo
+${PYSITELIB}/moto/backup/urls.py
+${PYSITELIB}/moto/backup/urls.pyc
+${PYSITELIB}/moto/backup/urls.pyo
 ${PYSITELIB}/moto/batch/__init__.py
 ${PYSITELIB}/moto/batch/__init__.pyc
 ${PYSITELIB}/moto/batch/__init__.pyo
@@ -241,9 +314,36 @@ ${PYSITELIB}/moto/batch_simple/models.py
 ${PYSITELIB}/moto/batch_simple/responses.py
 ${PYSITELIB}/moto/batch_simple/responses.pyc
 ${PYSITELIB}/moto/batch_simple/responses.pyo
-${PYSITELIB}/moto/batch_simple/urls.py
-${PYSITELIB}/moto/batch_simple/urls.pyc
-${PYSITELIB}/moto/batch_simple/urls.pyo
+${PYSITELIB}/moto/bedrock/__init__.py
+${PYSITELIB}/moto/bedrock/__init__.pyc
+${PYSITELIB}/moto/bedrock/__init__.pyo
+${PYSITELIB}/moto/bedrock/exceptions.py
+${PYSITELIB}/moto/bedrock/exceptions.pyc
+${PYSITELIB}/moto/bedrock/exceptions.pyo
+${PYSITELIB}/moto/bedrock/models.py
+${PYSITELIB}/moto/bedrock/models.pyc
+${PYSITELIB}/moto/bedrock/models.pyo
+${PYSITELIB}/moto/bedrock/responses.py
+${PYSITELIB}/moto/bedrock/responses.pyc
+${PYSITELIB}/moto/bedrock/responses.pyo
+${PYSITELIB}/moto/bedrock/urls.py
+${PYSITELIB}/moto/bedrock/urls.pyc
+${PYSITELIB}/moto/bedrock/urls.pyo
+${PYSITELIB}/moto/bedrockagent/__init__.py
+${PYSITELIB}/moto/bedrockagent/__init__.pyc
+${PYSITELIB}/moto/bedrockagent/__init__.pyo
+${PYSITELIB}/moto/bedrockagent/exceptions.py
+${PYSITELIB}/moto/bedrockagent/exceptions.pyc
+${PYSITELIB}/moto/bedrockagent/exceptions.pyo
+${PYSITELIB}/moto/bedrockagent/models.py
+${PYSITELIB}/moto/bedrockagent/models.pyc
+${PYSITELIB}/moto/bedrockagent/models.pyo
+${PYSITELIB}/moto/bedrockagent/responses.py
+${PYSITELIB}/moto/bedrockagent/responses.pyc
+${PYSITELIB}/moto/bedrockagent/responses.pyo
+${PYSITELIB}/moto/bedrockagent/urls.py
+${PYSITELIB}/moto/bedrockagent/urls.pyc
+${PYSITELIB}/moto/bedrockagent/urls.pyo
 ${PYSITELIB}/moto/budgets/__init__.py
 ${PYSITELIB}/moto/budgets/__init__.pyc
 ${PYSITELIB}/moto/budgets/__init__.pyo
@@ -421,8 +521,8 @@ ${PYSITELIB}/moto/cognitoidp/exceptions.
 ${PYSITELIB}/moto/cognitoidp/models.py
 ${PYSITELIB}/moto/cognitoidp/models.pyc
 ${PYSITELIB}/moto/cognitoidp/models.pyo
-${PYSITELIB}/moto/cognitoidp/resources/jwks-private.json
-${PYSITELIB}/moto/cognitoidp/resources/jwks-public.json
+${PYSITELIB}/moto/cognitoidp/resources/jwks-private.json.gz
+${PYSITELIB}/moto/cognitoidp/resources/jwks-public.json.gz
 ${PYSITELIB}/moto/cognitoidp/responses.py
 ${PYSITELIB}/moto/cognitoidp/responses.pyc
 ${PYSITELIB}/moto/cognitoidp/responses.pyo
@@ -456,7 +556,7 @@ ${PYSITELIB}/moto/config/exceptions.pyo
 ${PYSITELIB}/moto/config/models.py
 ${PYSITELIB}/moto/config/models.pyc
 ${PYSITELIB}/moto/config/models.pyo
-${PYSITELIB}/moto/config/resources/aws_managed_rules.json
+${PYSITELIB}/moto/config/resources/aws_managed_rules.json.gz
 ${PYSITELIB}/moto/config/responses.py
 ${PYSITELIB}/moto/config/responses.pyc
 ${PYSITELIB}/moto/config/responses.pyo
@@ -478,9 +578,15 @@ ${PYSITELIB}/moto/core/common_models.pyo
 ${PYSITELIB}/moto/core/common_types.py
 ${PYSITELIB}/moto/core/common_types.pyc
 ${PYSITELIB}/moto/core/common_types.pyo
+${PYSITELIB}/moto/core/config.py
+${PYSITELIB}/moto/core/config.pyc
+${PYSITELIB}/moto/core/config.pyo
 ${PYSITELIB}/moto/core/custom_responses_mock.py
 ${PYSITELIB}/moto/core/custom_responses_mock.pyc
 ${PYSITELIB}/moto/core/custom_responses_mock.pyo
+${PYSITELIB}/moto/core/decorator.py
+${PYSITELIB}/moto/core/decorator.pyc
+${PYSITELIB}/moto/core/decorator.pyo
 ${PYSITELIB}/moto/core/exceptions.py
 ${PYSITELIB}/moto/core/exceptions.pyc
 ${PYSITELIB}/moto/core/exceptions.pyo
@@ -499,6 +605,9 @@ ${PYSITELIB}/moto/core/responses_custom_
 ${PYSITELIB}/moto/core/utils.py
 ${PYSITELIB}/moto/core/utils.pyc
 ${PYSITELIB}/moto/core/utils.pyo
+${PYSITELIB}/moto/core/versions.py
+${PYSITELIB}/moto/core/versions.pyc
+${PYSITELIB}/moto/core/versions.pyo
 ${PYSITELIB}/moto/databrew/__init__.py
 ${PYSITELIB}/moto/databrew/__init__.pyc
 ${PYSITELIB}/moto/databrew/__init__.pyo
@@ -562,6 +671,24 @@ ${PYSITELIB}/moto/dax/urls.pyo
 ${PYSITELIB}/moto/dax/utils.py
 ${PYSITELIB}/moto/dax/utils.pyc
 ${PYSITELIB}/moto/dax/utils.pyo
+${PYSITELIB}/moto/directconnect/__init__.py
+${PYSITELIB}/moto/directconnect/__init__.pyc
+${PYSITELIB}/moto/directconnect/__init__.pyo
+${PYSITELIB}/moto/directconnect/enums.py
+${PYSITELIB}/moto/directconnect/enums.pyc
+${PYSITELIB}/moto/directconnect/enums.pyo
+${PYSITELIB}/moto/directconnect/exceptions.py
+${PYSITELIB}/moto/directconnect/exceptions.pyc
+${PYSITELIB}/moto/directconnect/exceptions.pyo
+${PYSITELIB}/moto/directconnect/models.py
+${PYSITELIB}/moto/directconnect/models.pyc
+${PYSITELIB}/moto/directconnect/models.pyo
+${PYSITELIB}/moto/directconnect/responses.py
+${PYSITELIB}/moto/directconnect/responses.pyc
+${PYSITELIB}/moto/directconnect/responses.pyo
+${PYSITELIB}/moto/directconnect/urls.py
+${PYSITELIB}/moto/directconnect/urls.pyc
+${PYSITELIB}/moto/directconnect/urls.pyo
 ${PYSITELIB}/moto/dms/__init__.py
 ${PYSITELIB}/moto/dms/__init__.pyc
 ${PYSITELIB}/moto/dms/__init__.pyo
@@ -601,6 +728,21 @@ ${PYSITELIB}/moto/ds/utils.pyo
 ${PYSITELIB}/moto/ds/validations.py
 ${PYSITELIB}/moto/ds/validations.pyc
 ${PYSITELIB}/moto/ds/validations.pyo
+${PYSITELIB}/moto/dsql/__init__.py
+${PYSITELIB}/moto/dsql/__init__.pyc
+${PYSITELIB}/moto/dsql/__init__.pyo
+${PYSITELIB}/moto/dsql/exceptions.py
+${PYSITELIB}/moto/dsql/exceptions.pyc
+${PYSITELIB}/moto/dsql/exceptions.pyo
+${PYSITELIB}/moto/dsql/models.py
+${PYSITELIB}/moto/dsql/models.pyc
+${PYSITELIB}/moto/dsql/models.pyo
+${PYSITELIB}/moto/dsql/responses.py
+${PYSITELIB}/moto/dsql/responses.pyc
+${PYSITELIB}/moto/dsql/responses.pyo
+${PYSITELIB}/moto/dsql/urls.py
+${PYSITELIB}/moto/dsql/urls.pyc
+${PYSITELIB}/moto/dsql/urls.pyo
 ${PYSITELIB}/moto/dynamodb/__init__.py
 ${PYSITELIB}/moto/dynamodb/__init__.pyc
 ${PYSITELIB}/moto/dynamodb/__init__.pyo
@@ -622,6 +764,12 @@ ${PYSITELIB}/moto/dynamodb/models/dynamo
 ${PYSITELIB}/moto/dynamodb/models/table.py
 ${PYSITELIB}/moto/dynamodb/models/table.pyc
 ${PYSITELIB}/moto/dynamodb/models/table.pyo
+${PYSITELIB}/moto/dynamodb/models/table_export.py
+${PYSITELIB}/moto/dynamodb/models/table_export.pyc
+${PYSITELIB}/moto/dynamodb/models/table_export.pyo
+${PYSITELIB}/moto/dynamodb/models/table_import.py
+${PYSITELIB}/moto/dynamodb/models/table_import.pyc
+${PYSITELIB}/moto/dynamodb/models/table_import.pyo
 ${PYSITELIB}/moto/dynamodb/models/utilities.py
 ${PYSITELIB}/moto/dynamodb/models/utilities.pyc
 ${PYSITELIB}/moto/dynamodb/models/utilities.pyo
@@ -659,6 +807,9 @@ ${PYSITELIB}/moto/dynamodb/responses.pyo
 ${PYSITELIB}/moto/dynamodb/urls.py
 ${PYSITELIB}/moto/dynamodb/urls.pyc
 ${PYSITELIB}/moto/dynamodb/urls.pyo
+${PYSITELIB}/moto/dynamodb/utils.py
+${PYSITELIB}/moto/dynamodb/utils.pyc
+${PYSITELIB}/moto/dynamodb/utils.pyo
 ${PYSITELIB}/moto/dynamodb_v20111205/__init__.py
 ${PYSITELIB}/moto/dynamodb_v20111205/__init__.pyc
 ${PYSITELIB}/moto/dynamodb_v20111205/__init__.pyo
@@ -815,138 +966,154 @@ ${PYSITELIB}/moto/ec2/models/windows.pyo
 ${PYSITELIB}/moto/ec2/regions.py
 ${PYSITELIB}/moto/ec2/regions.pyc
 ${PYSITELIB}/moto/ec2/regions.pyo
-${PYSITELIB}/moto/ec2/resources/amis.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/af-south-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-east-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-northeast-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-northeast-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-northeast-3.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-south-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-south-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-southeast-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-southeast-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-southeast-3.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ca-central-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-central-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-central-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-north-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-south-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-south-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-west-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-west-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-west-3.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/me-central-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/me-south-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/sa-east-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-east-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-east-2.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-west-1.json
-${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/af-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/me-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/me-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/sa-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/af-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ca-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/me-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/me-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/sa-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/af-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-northeast-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-northeast-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-south-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ca-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-north-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-south-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-west-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-west-3.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/me-central-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/me-south-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/sa-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-east-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-east-2.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-west-1.json
-${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-west-2.json
-${PYSITELIB}/moto/ec2/resources/instance_types.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/af-south-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-east-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-3.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-south-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-south-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-3.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/ca-central-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-central-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-central-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-north-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-south-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-south-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-3.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/me-central-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/me-south-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/sa-east-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/us-east-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/us-east-2.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/us-west-1.json
-${PYSITELIB}/moto/ec2/resources/latest_amis/us-west-2.json
+${PYSITELIB}/moto/ec2/resources/amis.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/af-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/ca-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-central-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-north-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/eu-west-3.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/me-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/me-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/sa-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-east-2.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/ecs/optimized_amis/us-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/af-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-4.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-5.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/il-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/me-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/me-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/sa-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/af-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-4.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-5.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ca-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/ca-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/il-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/me-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/me-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/sa-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/af-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-4.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ap-southeast-5.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ca-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/ca-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-north-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/eu-west-3.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/il-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/me-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/me-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/sa-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-east-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_type_offerings/region/us-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/instance_types.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/af-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-4.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ap-southeast-5.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ca-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/ca-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-central-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-north-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-south-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/eu-west-3.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/il-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/me-central-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/me-south-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/sa-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-east-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-east-2.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-west-1.json.gz
+${PYSITELIB}/moto/ec2/resources/latest_amis/us-west-2.json.gz
 ${PYSITELIB}/moto/ec2/responses/__init__.py
 ${PYSITELIB}/moto/ec2/responses/__init__.pyc
 ${PYSITELIB}/moto/ec2/responses/__init__.pyo
@@ -1172,6 +1339,9 @@ ${PYSITELIB}/moto/elasticache/responses.
 ${PYSITELIB}/moto/elasticache/urls.py
 ${PYSITELIB}/moto/elasticache/urls.pyc
 ${PYSITELIB}/moto/elasticache/urls.pyo
+${PYSITELIB}/moto/elasticache/utils.py
+${PYSITELIB}/moto/elasticache/utils.pyc
+${PYSITELIB}/moto/elasticache/utils.pyo
 ${PYSITELIB}/moto/elasticbeanstalk/__init__.py
 ${PYSITELIB}/moto/elasticbeanstalk/__init__.pyc
 ${PYSITELIB}/moto/elasticbeanstalk/__init__.pyo
@@ -1301,9 +1471,6 @@ ${PYSITELIB}/moto/es/exceptions.pyo
 ${PYSITELIB}/moto/es/models.py
 ${PYSITELIB}/moto/es/models.pyc
 ${PYSITELIB}/moto/es/models.pyo
-${PYSITELIB}/moto/es/responses.py
-${PYSITELIB}/moto/es/responses.pyc
-${PYSITELIB}/moto/es/responses.pyo
 ${PYSITELIB}/moto/es/urls.py
 ${PYSITELIB}/moto/es/urls.pyc
 ${PYSITELIB}/moto/es/urls.pyo
@@ -1358,6 +1525,24 @@ ${PYSITELIB}/moto/forecast/responses.pyo
 ${PYSITELIB}/moto/forecast/urls.py
 ${PYSITELIB}/moto/forecast/urls.pyc
 ${PYSITELIB}/moto/forecast/urls.pyo
+${PYSITELIB}/moto/fsx/__init__.py
+${PYSITELIB}/moto/fsx/__init__.pyc
+${PYSITELIB}/moto/fsx/__init__.pyo
+${PYSITELIB}/moto/fsx/exceptions.py
+${PYSITELIB}/moto/fsx/exceptions.pyc
+${PYSITELIB}/moto/fsx/exceptions.pyo
+${PYSITELIB}/moto/fsx/models.py
+${PYSITELIB}/moto/fsx/models.pyc
+${PYSITELIB}/moto/fsx/models.pyo
+${PYSITELIB}/moto/fsx/responses.py
+${PYSITELIB}/moto/fsx/responses.pyc
+${PYSITELIB}/moto/fsx/responses.pyo
+${PYSITELIB}/moto/fsx/urls.py
+${PYSITELIB}/moto/fsx/urls.pyc
+${PYSITELIB}/moto/fsx/urls.pyo
+${PYSITELIB}/moto/fsx/utils.py
+${PYSITELIB}/moto/fsx/utils.pyc
+${PYSITELIB}/moto/fsx/utils.pyo
 ${PYSITELIB}/moto/glacier/__init__.py
 ${PYSITELIB}/moto/glacier/__init__.pyc
 ${PYSITELIB}/moto/glacier/__init__.pyo
@@ -1472,6 +1657,18 @@ ${PYSITELIB}/moto/identitystore/response
 ${PYSITELIB}/moto/identitystore/urls.py
 ${PYSITELIB}/moto/identitystore/urls.pyc
 ${PYSITELIB}/moto/identitystore/urls.pyo
+${PYSITELIB}/moto/inspector2/__init__.py
+${PYSITELIB}/moto/inspector2/__init__.pyc
+${PYSITELIB}/moto/inspector2/__init__.pyo
+${PYSITELIB}/moto/inspector2/models.py
+${PYSITELIB}/moto/inspector2/models.pyc
+${PYSITELIB}/moto/inspector2/models.pyo
+${PYSITELIB}/moto/inspector2/responses.py
+${PYSITELIB}/moto/inspector2/responses.pyc
+${PYSITELIB}/moto/inspector2/responses.pyo
+${PYSITELIB}/moto/inspector2/urls.py
+${PYSITELIB}/moto/inspector2/urls.pyc
+${PYSITELIB}/moto/inspector2/urls.pyo
 ${PYSITELIB}/moto/instance_metadata/__init__.py
 ${PYSITELIB}/moto/instance_metadata/__init__.pyc
 ${PYSITELIB}/moto/instance_metadata/__init__.pyo
@@ -1517,6 +1714,36 @@ ${PYSITELIB}/moto/iotdata/responses.pyo
 ${PYSITELIB}/moto/iotdata/urls.py
 ${PYSITELIB}/moto/iotdata/urls.pyc
 ${PYSITELIB}/moto/iotdata/urls.pyo
+${PYSITELIB}/moto/ivs/__init__.py
+${PYSITELIB}/moto/ivs/__init__.pyc
+${PYSITELIB}/moto/ivs/__init__.pyo
+${PYSITELIB}/moto/ivs/exceptions.py
+${PYSITELIB}/moto/ivs/exceptions.pyc
+${PYSITELIB}/moto/ivs/exceptions.pyo
+${PYSITELIB}/moto/ivs/models.py
+${PYSITELIB}/moto/ivs/models.pyc
+${PYSITELIB}/moto/ivs/models.pyo
+${PYSITELIB}/moto/ivs/responses.py
+${PYSITELIB}/moto/ivs/responses.pyc
+${PYSITELIB}/moto/ivs/responses.pyo
+${PYSITELIB}/moto/ivs/urls.py
+${PYSITELIB}/moto/ivs/urls.pyc
+${PYSITELIB}/moto/ivs/urls.pyo
+${PYSITELIB}/moto/kafka/__init__.py
+${PYSITELIB}/moto/kafka/__init__.pyc
+${PYSITELIB}/moto/kafka/__init__.pyo
+${PYSITELIB}/moto/kafka/exceptions.py
+${PYSITELIB}/moto/kafka/exceptions.pyc
+${PYSITELIB}/moto/kafka/exceptions.pyo
+${PYSITELIB}/moto/kafka/models.py
+${PYSITELIB}/moto/kafka/models.pyc
+${PYSITELIB}/moto/kafka/models.pyo
+${PYSITELIB}/moto/kafka/responses.py
+${PYSITELIB}/moto/kafka/responses.pyc
+${PYSITELIB}/moto/kafka/responses.pyo
+${PYSITELIB}/moto/kafka/urls.py
+${PYSITELIB}/moto/kafka/urls.pyc
+${PYSITELIB}/moto/kafka/urls.pyo
 ${PYSITELIB}/moto/kinesis/__init__.py
 ${PYSITELIB}/moto/kinesis/__init__.pyc
 ${PYSITELIB}/moto/kinesis/__init__.pyo
@@ -1607,6 +1834,12 @@ ${PYSITELIB}/moto/logs/__init__.pyo
 ${PYSITELIB}/moto/logs/exceptions.py
 ${PYSITELIB}/moto/logs/exceptions.pyc
 ${PYSITELIB}/moto/logs/exceptions.pyo
+${PYSITELIB}/moto/logs/logs_query/__init__.py
+${PYSITELIB}/moto/logs/logs_query/__init__.pyc
+${PYSITELIB}/moto/logs/logs_query/__init__.pyo
+${PYSITELIB}/moto/logs/logs_query/query_parser.py
+${PYSITELIB}/moto/logs/logs_query/query_parser.pyc
+${PYSITELIB}/moto/logs/logs_query/query_parser.pyo
 ${PYSITELIB}/moto/logs/metric_filters.py
 ${PYSITELIB}/moto/logs/metric_filters.pyc
 ${PYSITELIB}/moto/logs/metric_filters.pyo
@@ -1715,6 +1948,21 @@ ${PYSITELIB}/moto/mediastoredata/respons
 ${PYSITELIB}/moto/mediastoredata/urls.py
 ${PYSITELIB}/moto/mediastoredata/urls.pyc
 ${PYSITELIB}/moto/mediastoredata/urls.pyo
+${PYSITELIB}/moto/memorydb/__init__.py
+${PYSITELIB}/moto/memorydb/__init__.pyc
+${PYSITELIB}/moto/memorydb/__init__.pyo
+${PYSITELIB}/moto/memorydb/exceptions.py
+${PYSITELIB}/moto/memorydb/exceptions.pyc
+${PYSITELIB}/moto/memorydb/exceptions.pyo
+${PYSITELIB}/moto/memorydb/models.py
+${PYSITELIB}/moto/memorydb/models.pyc
+${PYSITELIB}/moto/memorydb/models.pyo
+${PYSITELIB}/moto/memorydb/responses.py
+${PYSITELIB}/moto/memorydb/responses.pyc
+${PYSITELIB}/moto/memorydb/responses.pyo
+${PYSITELIB}/moto/memorydb/urls.py
+${PYSITELIB}/moto/memorydb/urls.pyc
+${PYSITELIB}/moto/memorydb/urls.pyo
 ${PYSITELIB}/moto/meteringmarketplace/__init__.py
 ${PYSITELIB}/moto/meteringmarketplace/__init__.pyc
 ${PYSITELIB}/moto/meteringmarketplace/__init__.pyo
@@ -1763,6 +2011,26 @@ ${PYSITELIB}/moto/moto_api/_internal/sta
 ${PYSITELIB}/moto/moto_api/_internal/urls.py
 ${PYSITELIB}/moto/moto_api/_internal/urls.pyc
 ${PYSITELIB}/moto/moto_api/_internal/urls.pyo
+${PYSITELIB}/moto/moto_proxy/__init__.py
+${PYSITELIB}/moto/moto_proxy/__init__.pyc
+${PYSITELIB}/moto/moto_proxy/__init__.pyo
+${PYSITELIB}/moto/moto_proxy/ca.crt
+${PYSITELIB}/moto/moto_proxy/ca.key
+${PYSITELIB}/moto/moto_proxy/cert.key
+${PYSITELIB}/moto/moto_proxy/certificate_creator.py
+${PYSITELIB}/moto/moto_proxy/certificate_creator.pyc
+${PYSITELIB}/moto/moto_proxy/certificate_creator.pyo
+${PYSITELIB}/moto/moto_proxy/certs/__init__.py
+${PYSITELIB}/moto/moto_proxy/certs/__init__.pyc
+${PYSITELIB}/moto/moto_proxy/certs/__init__.pyo
+${PYSITELIB}/moto/moto_proxy/certs/req.conf.tmpl
+${PYSITELIB}/moto/moto_proxy/proxy3.py
+${PYSITELIB}/moto/moto_proxy/proxy3.pyc
+${PYSITELIB}/moto/moto_proxy/proxy3.pyo
+${PYSITELIB}/moto/moto_proxy/setup_https_intercept.sh
+${PYSITELIB}/moto/moto_proxy/utils.py
+${PYSITELIB}/moto/moto_proxy/utils.pyc
+${PYSITELIB}/moto/moto_proxy/utils.pyo
 ${PYSITELIB}/moto/moto_server/templates/dashboard.html
 ${PYSITELIB}/moto/moto_server/threaded_moto_server.py
 ${PYSITELIB}/moto/moto_server/threaded_moto_server.pyc
@@ -1791,21 +2059,21 @@ ${PYSITELIB}/moto/mq/responses.pyo
 ${PYSITELIB}/moto/mq/urls.py
 ${PYSITELIB}/moto/mq/urls.pyc
 ${PYSITELIB}/moto/mq/urls.pyo
-${PYSITELIB}/moto/neptune/__init__.py
-${PYSITELIB}/moto/neptune/__init__.pyc
-${PYSITELIB}/moto/neptune/__init__.pyo
-${PYSITELIB}/moto/neptune/exceptions.py
-${PYSITELIB}/moto/neptune/exceptions.pyc
-${PYSITELIB}/moto/neptune/exceptions.pyo
-${PYSITELIB}/moto/neptune/models.py
-${PYSITELIB}/moto/neptune/models.pyc
-${PYSITELIB}/moto/neptune/models.pyo
-${PYSITELIB}/moto/neptune/responses.py
-${PYSITELIB}/moto/neptune/responses.pyc
-${PYSITELIB}/moto/neptune/responses.pyo
-${PYSITELIB}/moto/neptune/urls.py
-${PYSITELIB}/moto/neptune/urls.pyc
-${PYSITELIB}/moto/neptune/urls.pyo
+${PYSITELIB}/moto/networkmanager/__init__.py
+${PYSITELIB}/moto/networkmanager/__init__.pyc
+${PYSITELIB}/moto/networkmanager/__init__.pyo
+${PYSITELIB}/moto/networkmanager/exceptions.py
+${PYSITELIB}/moto/networkmanager/exceptions.pyc
+${PYSITELIB}/moto/networkmanager/exceptions.pyo
+${PYSITELIB}/moto/networkmanager/models.py
+${PYSITELIB}/moto/networkmanager/models.pyc
+${PYSITELIB}/moto/networkmanager/models.pyo
+${PYSITELIB}/moto/networkmanager/responses.py
+${PYSITELIB}/moto/networkmanager/responses.pyc
+${PYSITELIB}/moto/networkmanager/responses.pyo
+${PYSITELIB}/moto/networkmanager/urls.py
+${PYSITELIB}/moto/networkmanager/urls.pyc
+${PYSITELIB}/moto/networkmanager/urls.pyo
 ${PYSITELIB}/moto/opensearch/__init__.py
 ${PYSITELIB}/moto/opensearch/__init__.pyc
 ${PYSITELIB}/moto/opensearch/__init__.pyo
@@ -1824,6 +2092,21 @@ ${PYSITELIB}/moto/opensearch/responses.p
 ${PYSITELIB}/moto/opensearch/urls.py
 ${PYSITELIB}/moto/opensearch/urls.pyc
 ${PYSITELIB}/moto/opensearch/urls.pyo
+${PYSITELIB}/moto/opensearchserverless/__init__.py
+${PYSITELIB}/moto/opensearchserverless/__init__.pyc
+${PYSITELIB}/moto/opensearchserverless/__init__.pyo
+${PYSITELIB}/moto/opensearchserverless/exceptions.py
+${PYSITELIB}/moto/opensearchserverless/exceptions.pyc
+${PYSITELIB}/moto/opensearchserverless/exceptions.pyo
+${PYSITELIB}/moto/opensearchserverless/models.py
+${PYSITELIB}/moto/opensearchserverless/models.pyc
+${PYSITELIB}/moto/opensearchserverless/models.pyo
+${PYSITELIB}/moto/opensearchserverless/responses.py
+${PYSITELIB}/moto/opensearchserverless/responses.pyc
+${PYSITELIB}/moto/opensearchserverless/responses.pyo
+${PYSITELIB}/moto/opensearchserverless/urls.py
+${PYSITELIB}/moto/opensearchserverless/urls.pyc
+${PYSITELIB}/moto/opensearchserverless/urls.pyo
 ${PYSITELIB}/moto/opsworks/__init__.py
 ${PYSITELIB}/moto/opsworks/__init__.pyc
 ${PYSITELIB}/moto/opsworks/__init__.pyo
@@ -1857,6 +2140,21 @@ ${PYSITELIB}/moto/organizations/urls.pyo
 ${PYSITELIB}/moto/organizations/utils.py
 ${PYSITELIB}/moto/organizations/utils.pyc
 ${PYSITELIB}/moto/organizations/utils.pyo
+${PYSITELIB}/moto/osis/__init__.py
+${PYSITELIB}/moto/osis/__init__.pyc
+${PYSITELIB}/moto/osis/__init__.pyo
+${PYSITELIB}/moto/osis/exceptions.py
+${PYSITELIB}/moto/osis/exceptions.pyc
+${PYSITELIB}/moto/osis/exceptions.pyo
+${PYSITELIB}/moto/osis/models.py
+${PYSITELIB}/moto/osis/models.pyc
+${PYSITELIB}/moto/osis/models.pyo
+${PYSITELIB}/moto/osis/responses.py
+${PYSITELIB}/moto/osis/responses.pyc
+${PYSITELIB}/moto/osis/responses.pyo
+${PYSITELIB}/moto/osis/urls.py
+${PYSITELIB}/moto/osis/urls.pyc
+${PYSITELIB}/moto/osis/urls.pyo
 ${PYSITELIB}/moto/packages/__init__.py
 ${PYSITELIB}/moto/packages/__init__.pyc
 ${PYSITELIB}/moto/packages/__init__.pyo
@@ -1890,6 +2188,24 @@ ${PYSITELIB}/moto/packages/cfnresponse/_
 ${PYSITELIB}/moto/packages/cfnresponse/cfnresponse.py
 ${PYSITELIB}/moto/packages/cfnresponse/cfnresponse.pyc
 ${PYSITELIB}/moto/packages/cfnresponse/cfnresponse.pyo
+${PYSITELIB}/moto/panorama/__init__.py
+${PYSITELIB}/moto/panorama/__init__.pyc
+${PYSITELIB}/moto/panorama/__init__.pyo
+${PYSITELIB}/moto/panorama/exceptions.py
+${PYSITELIB}/moto/panorama/exceptions.pyc
+${PYSITELIB}/moto/panorama/exceptions.pyo
+${PYSITELIB}/moto/panorama/models.py
+${PYSITELIB}/moto/panorama/models.pyc
+${PYSITELIB}/moto/panorama/models.pyo
+${PYSITELIB}/moto/panorama/responses.py
+${PYSITELIB}/moto/panorama/responses.pyc
+${PYSITELIB}/moto/panorama/responses.pyo
+${PYSITELIB}/moto/panorama/urls.py
+${PYSITELIB}/moto/panorama/urls.pyc
+${PYSITELIB}/moto/panorama/urls.pyo
+${PYSITELIB}/moto/panorama/utils.py
+${PYSITELIB}/moto/panorama/utils.pyc
+${PYSITELIB}/moto/panorama/utils.pyo
 ${PYSITELIB}/moto/personalize/__init__.py
 ${PYSITELIB}/moto/personalize/__init__.pyc
 ${PYSITELIB}/moto/personalize/__init__.pyo
@@ -1938,9 +2254,31 @@ ${PYSITELIB}/moto/polly/urls.pyo
 ${PYSITELIB}/moto/polly/utils.py
 ${PYSITELIB}/moto/polly/utils.pyc
 ${PYSITELIB}/moto/polly/utils.pyo
+${PYSITELIB}/moto/proxy.py
+${PYSITELIB}/moto/proxy.pyc
+${PYSITELIB}/moto/proxy.pyo
+${PYSITELIB}/moto/py.typed
+${PYSITELIB}/moto/qldb/__init__.py
+${PYSITELIB}/moto/qldb/__init__.pyc
+${PYSITELIB}/moto/qldb/__init__.pyo
+${PYSITELIB}/moto/qldb/exceptions.py
+${PYSITELIB}/moto/qldb/exceptions.pyc
+${PYSITELIB}/moto/qldb/exceptions.pyo
+${PYSITELIB}/moto/qldb/models.py
+${PYSITELIB}/moto/qldb/models.pyc
+${PYSITELIB}/moto/qldb/models.pyo
+${PYSITELIB}/moto/qldb/responses.py
+${PYSITELIB}/moto/qldb/responses.pyc
+${PYSITELIB}/moto/qldb/responses.pyo
+${PYSITELIB}/moto/qldb/urls.py
+${PYSITELIB}/moto/qldb/urls.pyc
+${PYSITELIB}/moto/qldb/urls.pyo
 ${PYSITELIB}/moto/quicksight/__init__.py
 ${PYSITELIB}/moto/quicksight/__init__.pyc
 ${PYSITELIB}/moto/quicksight/__init__.pyo
+${PYSITELIB}/moto/quicksight/data_models.py
+${PYSITELIB}/moto/quicksight/data_models.pyc
+${PYSITELIB}/moto/quicksight/data_models.pyo
 ${PYSITELIB}/moto/quicksight/exceptions.py
 ${PYSITELIB}/moto/quicksight/exceptions.pyc
 ${PYSITELIB}/moto/quicksight/exceptions.pyo
@@ -1953,6 +2291,9 @@ ${PYSITELIB}/moto/quicksight/responses.p
 ${PYSITELIB}/moto/quicksight/urls.py
 ${PYSITELIB}/moto/quicksight/urls.pyc
 ${PYSITELIB}/moto/quicksight/urls.pyo
+${PYSITELIB}/moto/quicksight/utils.py
+${PYSITELIB}/moto/quicksight/utils.pyc
+${PYSITELIB}/moto/quicksight/utils.pyo
 ${PYSITELIB}/moto/ram/__init__.py
 ${PYSITELIB}/moto/ram/__init__.pyc
 ${PYSITELIB}/moto/ram/__init__.pyo
@@ -1977,8 +2318,8 @@ ${PYSITELIB}/moto/rds/exceptions.pyo
 ${PYSITELIB}/moto/rds/models.py
 ${PYSITELIB}/moto/rds/models.pyc
 ${PYSITELIB}/moto/rds/models.pyo
-${PYSITELIB}/moto/rds/resources/cluster_options/aurora-postgresql.json
-${PYSITELIB}/moto/rds/resources/cluster_options/neptune.json
+${PYSITELIB}/moto/rds/resources/cluster_options/aurora-postgresql.json.gz
+${PYSITELIB}/moto/rds/resources/cluster_options/neptune.json.gz
 ${PYSITELIB}/moto/rds/responses.py
 ${PYSITELIB}/moto/rds/responses.pyc
 ${PYSITELIB}/moto/rds/responses.pyo
@@ -2045,6 +2386,21 @@ ${PYSITELIB}/moto/rekognition/responses.
 ${PYSITELIB}/moto/rekognition/urls.py
 ${PYSITELIB}/moto/rekognition/urls.pyc
 ${PYSITELIB}/moto/rekognition/urls.pyo
+${PYSITELIB}/moto/resiliencehub/__init__.py
+${PYSITELIB}/moto/resiliencehub/__init__.pyc
+${PYSITELIB}/moto/resiliencehub/__init__.pyo
+${PYSITELIB}/moto/resiliencehub/exceptions.py
+${PYSITELIB}/moto/resiliencehub/exceptions.pyc
+${PYSITELIB}/moto/resiliencehub/exceptions.pyo
+${PYSITELIB}/moto/resiliencehub/models.py
+${PYSITELIB}/moto/resiliencehub/models.pyc
+${PYSITELIB}/moto/resiliencehub/models.pyo
+${PYSITELIB}/moto/resiliencehub/responses.py
+${PYSITELIB}/moto/resiliencehub/responses.pyc
+${PYSITELIB}/moto/resiliencehub/responses.pyo
+${PYSITELIB}/moto/resiliencehub/urls.py
+${PYSITELIB}/moto/resiliencehub/urls.pyc
+${PYSITELIB}/moto/resiliencehub/urls.pyo
 ${PYSITELIB}/moto/resourcegroups/__init__.py
 ${PYSITELIB}/moto/resourcegroups/__init__.pyc
 ${PYSITELIB}/moto/resourcegroups/__init__.pyo
@@ -2072,6 +2428,18 @@ ${PYSITELIB}/moto/resourcegroupstagginga
 ${PYSITELIB}/moto/resourcegroupstaggingapi/urls.py
 ${PYSITELIB}/moto/resourcegroupstaggingapi/urls.pyc
 ${PYSITELIB}/moto/resourcegroupstaggingapi/urls.pyo
+${PYSITELIB}/moto/robomaker/__init__.py
+${PYSITELIB}/moto/robomaker/__init__.pyc
+${PYSITELIB}/moto/robomaker/__init__.pyo
+${PYSITELIB}/moto/robomaker/models.py
+${PYSITELIB}/moto/robomaker/models.pyc
+${PYSITELIB}/moto/robomaker/models.pyo
+${PYSITELIB}/moto/robomaker/responses.py
+${PYSITELIB}/moto/robomaker/responses.pyc
+${PYSITELIB}/moto/robomaker/responses.pyo
+${PYSITELIB}/moto/robomaker/urls.py
+${PYSITELIB}/moto/robomaker/urls.pyc
+${PYSITELIB}/moto/robomaker/urls.pyo
 ${PYSITELIB}/moto/route53/__init__.py
 ${PYSITELIB}/moto/route53/__init__.pyc
 ${PYSITELIB}/moto/route53/__init__.pyo
@@ -2090,6 +2458,24 @@ ${PYSITELIB}/moto/route53/urls.pyo
 ${PYSITELIB}/moto/route53/utils.py
 ${PYSITELIB}/moto/route53/utils.pyc
 ${PYSITELIB}/moto/route53/utils.pyo
+${PYSITELIB}/moto/route53domains/__init__.py
+${PYSITELIB}/moto/route53domains/__init__.pyc
+${PYSITELIB}/moto/route53domains/__init__.pyo
+${PYSITELIB}/moto/route53domains/exceptions.py
+${PYSITELIB}/moto/route53domains/exceptions.pyc
+${PYSITELIB}/moto/route53domains/exceptions.pyo
+${PYSITELIB}/moto/route53domains/models.py
+${PYSITELIB}/moto/route53domains/models.pyc
+${PYSITELIB}/moto/route53domains/models.pyo
+${PYSITELIB}/moto/route53domains/responses.py
+${PYSITELIB}/moto/route53domains/responses.pyc
+${PYSITELIB}/moto/route53domains/responses.pyo
+${PYSITELIB}/moto/route53domains/urls.py
+${PYSITELIB}/moto/route53domains/urls.pyc
+${PYSITELIB}/moto/route53domains/urls.pyo
+${PYSITELIB}/moto/route53domains/validators.py
+${PYSITELIB}/moto/route53domains/validators.pyc
+${PYSITELIB}/moto/route53domains/validators.pyo
 ${PYSITELIB}/moto/route53resolver/__init__.py
 ${PYSITELIB}/moto/route53resolver/__init__.pyc
 ${PYSITELIB}/moto/route53resolver/__init__.pyo
@@ -2165,6 +2551,21 @@ ${PYSITELIB}/moto/s3control/responses.py
 ${PYSITELIB}/moto/s3control/urls.py
 ${PYSITELIB}/moto/s3control/urls.pyc
 ${PYSITELIB}/moto/s3control/urls.pyo
+${PYSITELIB}/moto/s3tables/__init__.py
+${PYSITELIB}/moto/s3tables/__init__.pyc
+${PYSITELIB}/moto/s3tables/__init__.pyo
+${PYSITELIB}/moto/s3tables/exceptions.py
+${PYSITELIB}/moto/s3tables/exceptions.pyc
+${PYSITELIB}/moto/s3tables/exceptions.pyo
+${PYSITELIB}/moto/s3tables/models.py
+${PYSITELIB}/moto/s3tables/models.pyc
+${PYSITELIB}/moto/s3tables/models.pyo
+${PYSITELIB}/moto/s3tables/responses.py
+${PYSITELIB}/moto/s3tables/responses.pyc
+${PYSITELIB}/moto/s3tables/responses.pyo
+${PYSITELIB}/moto/s3tables/urls.py
+${PYSITELIB}/moto/s3tables/urls.pyc
+${PYSITELIB}/moto/s3tables/urls.pyo
 ${PYSITELIB}/moto/sagemaker/__init__.py
 ${PYSITELIB}/moto/sagemaker/__init__.pyc
 ${PYSITELIB}/moto/sagemaker/__init__.pyo
@@ -2186,6 +2587,33 @@ ${PYSITELIB}/moto/sagemaker/utils.pyo
 ${PYSITELIB}/moto/sagemaker/validators.py
 ${PYSITELIB}/moto/sagemaker/validators.pyc
 ${PYSITELIB}/moto/sagemaker/validators.pyo
+${PYSITELIB}/moto/sagemakermetrics/__init__.py
+${PYSITELIB}/moto/sagemakermetrics/__init__.pyc
+${PYSITELIB}/moto/sagemakermetrics/__init__.pyo
+${PYSITELIB}/moto/sagemakermetrics/exceptions.py
+${PYSITELIB}/moto/sagemakermetrics/exceptions.pyc
+${PYSITELIB}/moto/sagemakermetrics/exceptions.pyo
+${PYSITELIB}/moto/sagemakermetrics/models.py
+${PYSITELIB}/moto/sagemakermetrics/models.pyc
+${PYSITELIB}/moto/sagemakermetrics/models.pyo
+${PYSITELIB}/moto/sagemakermetrics/responses.py
+${PYSITELIB}/moto/sagemakermetrics/responses.pyc
+${PYSITELIB}/moto/sagemakermetrics/responses.pyo
+${PYSITELIB}/moto/sagemakermetrics/urls.py
+${PYSITELIB}/moto/sagemakermetrics/urls.pyc
+${PYSITELIB}/moto/sagemakermetrics/urls.pyo
+${PYSITELIB}/moto/sagemakerruntime/__init__.py
+${PYSITELIB}/moto/sagemakerruntime/__init__.pyc
+${PYSITELIB}/moto/sagemakerruntime/__init__.pyo
+${PYSITELIB}/moto/sagemakerruntime/models.py
+${PYSITELIB}/moto/sagemakerruntime/models.pyc
+${PYSITELIB}/moto/sagemakerruntime/models.pyo
+${PYSITELIB}/moto/sagemakerruntime/responses.py
+${PYSITELIB}/moto/sagemakerruntime/responses.pyc
+${PYSITELIB}/moto/sagemakerruntime/responses.pyo
+${PYSITELIB}/moto/sagemakerruntime/urls.py
+${PYSITELIB}/moto/sagemakerruntime/urls.pyc
+${PYSITELIB}/moto/sagemakerruntime/urls.pyo
 ${PYSITELIB}/moto/scheduler/__init__.py
 ${PYSITELIB}/moto/scheduler/__init__.pyc
 ${PYSITELIB}/moto/scheduler/__init__.pyo
@@ -2324,6 +2752,21 @@ ${PYSITELIB}/moto/sesv2/urls.pyo
 ${PYSITELIB}/moto/settings.py
 ${PYSITELIB}/moto/settings.pyc
 ${PYSITELIB}/moto/settings.pyo
+${PYSITELIB}/moto/shield/__init__.py
+${PYSITELIB}/moto/shield/__init__.pyc
+${PYSITELIB}/moto/shield/__init__.pyo
+${PYSITELIB}/moto/shield/exceptions.py
+${PYSITELIB}/moto/shield/exceptions.pyc
+${PYSITELIB}/moto/shield/exceptions.pyo
+${PYSITELIB}/moto/shield/models.py
+${PYSITELIB}/moto/shield/models.pyc
+${PYSITELIB}/moto/shield/models.pyo
+${PYSITELIB}/moto/shield/responses.py
+${PYSITELIB}/moto/shield/responses.pyc
+${PYSITELIB}/moto/shield/responses.pyo
+${PYSITELIB}/moto/shield/urls.py
+${PYSITELIB}/moto/shield/urls.pyc
+${PYSITELIB}/moto/shield/urls.pyo
 ${PYSITELIB}/moto/signer/__init__.py
 ${PYSITELIB}/moto/signer/__init__.pyc
 ${PYSITELIB}/moto/signer/__init__.pyo
@@ -2387,60 +2830,64 @@ ${PYSITELIB}/moto/ssm/exceptions.pyo
 ${PYSITELIB}/moto/ssm/models.py
 ${PYSITELIB}/moto/ssm/models.pyc
 ${PYSITELIB}/moto/ssm/models.pyo
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-south-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-central-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-south-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/me-central-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json
-${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/af-south-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-east-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-northeast-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-northeast-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-northeast-3.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-south-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-south-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-southeast-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-southeast-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-southeast-3.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ca-central-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-central-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-central-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-north-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-south-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-south-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-west-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-west-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-west-3.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/me-central-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/me-south-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/sa-east-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-east-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-east-2.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-west-1.json
-${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-west-2.json
-${PYSITELIB}/moto/ssm/resources/regions.json
-${PYSITELIB}/moto/ssm/resources/services.json
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-south-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-4.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-5.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/ca-west-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-central-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-south-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/il-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/me-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/af-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-east-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-northeast-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-northeast-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-northeast-3.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-south-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-southeast-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-southeast-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ap-southeast-3.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/ca-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-central-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-north-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-south-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-west-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-west-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/eu-west-3.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/me-central-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/me-south-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/sa-east-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-east-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-east-2.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-west-1.json.gz
+${PYSITELIB}/moto/ssm/resources/ecs/optimized_amis/us-west-2.json.gz
+${PYSITELIB}/moto/ssm/resources/regions.json.gz
+${PYSITELIB}/moto/ssm/resources/services.json.gz
 ${PYSITELIB}/moto/ssm/responses.py
 ${PYSITELIB}/moto/ssm/responses.pyc
 ${PYSITELIB}/moto/ssm/responses.pyo
@@ -2477,6 +2924,1086 @@ ${PYSITELIB}/moto/stepfunctions/exceptio
 ${PYSITELIB}/moto/stepfunctions/models.py
 ${PYSITELIB}/moto/stepfunctions/models.pyc
 ${PYSITELIB}/moto/stepfunctions/models.pyo
+${PYSITELIB}/moto/stepfunctions/parser/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/api.py
+${PYSITELIB}/moto/stepfunctions/parser/api.pyc
+${PYSITELIB}/moto/stepfunctions/parser/api.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicLexer.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicLexer.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicLexer.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParserListener.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParserListener.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParserListener.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParserVisitor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParserVisitor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLIntrinsicParserVisitor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLLexer.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLLexer.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLLexer.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParserListener.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParserListener.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParserListener.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParserVisitor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParserVisitor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/ASLParserVisitor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlr/runtime/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlt4utils/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlt4utils/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlt4utils/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlt4utils/antlr4utils.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlt4utils/antlr4utils.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/antlt4utils/antlr4utils.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_decl_binding.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_decl_binding.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_decl_binding.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_binding.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_binding.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_binding.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_array.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_array.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_array.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_object.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_object.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_object.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_terminal.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_terminal.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/assign/assign_template_value_terminal.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catch_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catch_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catch_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catch_outcome.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catch_outcome.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catch_outcome.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_outcome.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_outcome.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_outcome.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_props.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_props.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/catch/catcher_props.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/comment.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/comment.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/comment.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/custom_error_name.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/custom_error_name.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/custom_error_name.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/error_equals_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/error_equals_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/error_equals_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/error_name.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/error_name.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/error_name.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/failure_event.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/failure_event.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/failure_event.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/states_error_name.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/states_error_name.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/states_error_name.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/states_error_name_type.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/states_error_name_type.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/error_name/states_error_name_type.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/end.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/end.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/end.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/next.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/next.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/next.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/start_at.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/start_at.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/flow/start_at.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_binding.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_binding.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_binding.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_array.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_array.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_array.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_object.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_object.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_object.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_terminal.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_terminal.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/jsonata/jsonata_template_value_terminal.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/outputdecl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/outputdecl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/outputdecl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/parargs.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/parargs.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/parargs.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/input_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/input_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/input_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/items_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/items_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/items_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/output_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/output_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/output_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/result_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/result_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/path/result_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payload_value.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payload_value.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payload_value.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadarr/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadarr/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadarr/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadarr/payload_arr.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadarr/payload_arr.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadarr/payload_arr.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_intrinsic_func.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_intrinsic_func.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_intrinsic_func.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_path_context_obj.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_path_context_obj.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_path_context_obj.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_value.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_value.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_value.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_var.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_var.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadbinding/payload_binding_var.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadtmpl/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadtmpl/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadtmpl/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadtmpl/payload_tmpl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadtmpl/payload_tmpl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadtmpl/payload_tmpl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_bool.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_bool.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_bool.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_float.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_float.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_float.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_int.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_int.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_int.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_lit.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_lit.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_lit.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_null.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_null.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_null.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_str.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_str.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_str.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_variable_sample.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_variable_sample.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/payload/payloadvalue/payloadvaluelit/payload_value_variable_sample.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/query_language.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/query_language.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/query_language.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/result_selector.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/result_selector.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/result_selector.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/backoff_rate_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/backoff_rate_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/backoff_rate_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/interval_seconds_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/interval_seconds_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/interval_seconds_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/jitter_strategy_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/jitter_strategy_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/jitter_strategy_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/max_attempts_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/max_attempts_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/max_attempts_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/max_delay_seconds_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/max_delay_seconds_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/max_delay_seconds_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_outcome.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_outcome.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_outcome.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_props.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_props.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retrier_props.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retry_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retry_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retry_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retry_outcome.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retry_outcome.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/retry/retry_outcome.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/heartbeat.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/heartbeat.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/heartbeat.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/timeout.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/timeout.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/timeouts/timeout.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/variable_sample.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/variable_sample.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/common/variable_sample.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/component.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/component.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/component.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/eval_component.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/eval_component.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/eval_component.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_bool.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_bool.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_bool.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_context_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_context_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_context_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_float.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_float.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_float.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_function.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_function.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_function.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_int.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_int.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_int.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_json_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_json_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_json_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_list.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_list.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_list.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_string.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_string.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_string.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_var.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_var.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/argument/function_argument_var.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/component.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/component.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/component.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/function.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/function.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/function.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_contains.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_contains.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_contains.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_get_item.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_get_item.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_get_item.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_length.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_length.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_length.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_partition.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_partition.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_partition.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_range.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_range.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_range.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_unique.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_unique.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/array/array_unique.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/base_64_decode.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/base_64_decode.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/base_64_decode.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/base_64_encode.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/base_64_encode.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/encoding_decoding/base_64_encode.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/generic/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/generic/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/generic/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/generic/string_format.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/generic/string_format.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/generic/string_format.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/hash_algorithm.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/hash_algorithm.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/hash_algorithm.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/hash_func.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/hash_func.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/hash_calculations/hash_func.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/json_merge.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/json_merge.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/json_merge.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/json_to_string.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/json_to_string.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/json_to_string.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/string_to_json.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/string_to_json.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/json_manipulation/string_to_json.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/math_add.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/math_add.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/math_add.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/math_random.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/math_random.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/math_operations/math_random.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_array.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_array.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_array.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_format.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_format.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_format.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_json_to_string.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_json_to_string.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_json_to_string.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_string_to_json.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_string_to_json.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_string_to_json.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_uuid.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_uuid.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/states_function_uuid.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/string_operations/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/string_operations/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/string_operations/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/string_operations/string_split.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/string_operations/string_split.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/string_operations/string_split.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/unique_id_generation/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/unique_id_generation/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/unique_id_generation/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/unique_id_generation/uuid.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/unique_id_generation/uuid.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/function/statesfunction/unique_id_generation/uuid.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/custom_function_name.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/custom_function_name.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/custom_function_name.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/function_name.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/function_name.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/function_name.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/state_function_name_types.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/state_function_name_types.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/state_function_name_types.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/states_function_name.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/states_function_name.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/functionname/states_function_name.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/jsonata.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/jsonata.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/jsonata.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/member.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/member.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/member.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/member_access.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/member_access.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/member_access.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/program.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/program.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/intrinsic/program.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/program.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/program.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/program.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/states.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/states.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/states.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/version.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/version.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/program/version.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/choice_rule.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/choice_rule.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/choice_rule.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/choices_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/choices_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/choices_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_func.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_func.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_func.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_operator_type.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_operator_type.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_operator_type.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_type.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_type.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_type.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_variable.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_variable.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/comparison_variable.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/boolean_equals.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/boolean_equals.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/boolean_equals.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/is_operator.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/is_operator.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/is_operator.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/numeric.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/numeric.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/numeric.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/string_operators.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/string_operators.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/string_operators.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/timestamp_operators.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/timestamp_operators.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/implementations/timestamp_operators.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/operator.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/operator.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/operator/operator.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/variable.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/variable.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/comparison/variable.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/default_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/default_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/default_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/state_choice.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/state_choice.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/choice/state_choice.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/execute_state.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/execute_state.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/execute_state.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/execution_type.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/execution_type.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/execution_type.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval_s3.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval_s3.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_eval_s3.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_csv.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_csv.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_csv.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_json.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_json.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/eval/resource_output_transformer/transformer_json.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/item_reader_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/item_reader_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/item_reader_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/csv_header_location.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/csv_header_location.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/csv_header_location.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/csv_headers.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/csv_headers.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/csv_headers.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/input_type.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/input_type.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/input_type.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/max_items_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/max_items_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/max_items_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/reader_config_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/reader_config_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/reader_config_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/reader_config_props.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/reader_config_props.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_reader/reader_config/reader_config_props.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_selector.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_selector.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/item_selector.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/items/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/items/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/items/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/items/items.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/items/items.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/items/items.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/distributed_iteration_component.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/distributed_iteration_component.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/distributed_iteration_component.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/inline_iteration_component.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/inline_iteration_component.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/inline_iteration_component.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/distributed_item_processor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/distributed_item_processor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/distributed_item_processor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/distributed_item_processor_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/distributed_item_processor_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/distributed_item_processor_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/inline_item_processor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/inline_item_processor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/inline_item_processor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/inline_item_processor_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/inline_item_processor_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/inline_item_processor_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/item_processor_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/item_processor_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/item_processor_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/item_processor_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/item_processor_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/item_processor_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/map_run_record.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/map_run_record.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/map_run_record.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/processor_config.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/processor_config.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/itemprocessor/processor_config.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_component.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_component.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_component.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_declaration.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_declaration.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_declaration.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iteration_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/distributed_iterator.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/distributed_iterator.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/distributed_iterator.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/distributed_iterator_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/distributed_iterator_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/distributed_iterator_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/inline_iterator.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/inline_iterator.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/inline_iterator.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/inline_iterator_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/inline_iterator_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/inline_iterator_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/iterator_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/iterator_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/iterator_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/iterator_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/iterator_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/iterator/iterator_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/job.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/job.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/iteration/job.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/label.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/label.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/label.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/max_concurrency.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/max_concurrency.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/max_concurrency.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/mode.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/mode.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/mode.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval_s3.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval_s3.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/resource_eval/resource_eval_s3.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/result_writer_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/result_writer_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/result_writer/result_writer_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/state_map.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/state_map.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/state_map.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/tolerated_failure.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/tolerated_failure.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_map/tolerated_failure.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/branch_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/branch_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/branch_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/branches_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/branches_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/branches_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/state_parallel.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/state_parallel.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_parallel/state_parallel.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/credentials.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/credentials.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/credentials.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/lambda_eval_utils.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/lambda_eval_utils.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/lambda_eval_utils.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/resource.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/resource.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/resource.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_api_gateway.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_api_gateway.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_api_gateway.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_aws_sdk.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_aws_sdk.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_aws_sdk.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_batch.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_batch.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_batch.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_callback.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_callback.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_callback.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_dynamodb.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_dynamodb.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_dynamodb.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_ecs.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_ecs.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_ecs.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_events.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_events.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_events.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_glue.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_glue.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_glue.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_lambda.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_lambda.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_lambda.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sfn.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sfn.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sfn.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sns.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sns.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sns.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sqs.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sqs.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_sqs.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_unsupported.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_unsupported.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/service/state_task_service_unsupported.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_activitiy.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_activitiy.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_activitiy.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_factory.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_factory.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_factory.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_lambda.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_lambda.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/exec/state_task/state_task_lambda.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/cause_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/cause_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/cause_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/error_decl.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/error_decl.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/error_decl.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/state_fail.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/state_fail.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/fail/state_fail.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_continue_with.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_continue_with.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_continue_with.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/result.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/result.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/result.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/state_pass.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/state_pass.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_pass/state_pass.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_props.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_props.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_props.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_succeed/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_succeed/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_succeed/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_succeed/state_succeed.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_succeed/state_succeed.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_succeed/state_succeed.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_type.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_type.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/state_type.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/state_wait.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/state_wait.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/state_wait.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/seconds.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/seconds.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/seconds.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/seconds_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/seconds_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/seconds_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/timestamp.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/timestamp.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/timestamp.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/timestamp_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/timestamp_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/timestamp_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/wait_function.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/wait_function.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/state/wait/wait_function/wait_function.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/program/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/program/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/program/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/program/test_state_program.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/program/test_state_program.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/program/test_state_program.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/state/test_state_state_props.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/state/test_state_state_props.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/component/test_state/state/test_state_state_props.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/callback/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/callback/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/callback/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/callback/callback.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/callback/callback.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/callback/callback.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/contex_object.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/contex_object.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/contex_object.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/count_down_latch.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/count_down_latch.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/count_down_latch.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/environment.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/environment.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/environment.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/evaluation_details.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/evaluation_details.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/evaluation_details.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/event_detail.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/event_detail.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/event_detail.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/event_manager.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/event_manager.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/event_manager.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/logging.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/logging.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/event/logging.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/program_state.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/program_state.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/program_state.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/states.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/states.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/states.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/environment.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/environment.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/environment.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/program_state.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/program_state.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/test_state/program_state.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/variable_store.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/variable_store.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/eval/variable_store.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/jsonata.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/jsonata.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/jsonata.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/validations.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/validations.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/jsonata/validations.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/asl_parser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/asl_parser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/asl_parser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/intrinsic_parser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/intrinsic_parser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/intrinsic_parser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/preprocessor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/preprocessor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/intrinsic/preprocessor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/preprocessor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/preprocessor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/preprocessor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/asl_parser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/asl_parser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/asl_parser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/preprocessor.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/preprocessor.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/test_state/preprocessor.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/typed_props.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/typed_props.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/parse/typed_props.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/express_static_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/express_static_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/express_static_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/intrinsic_static_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/intrinsic_static_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/intrinsic_static_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/variable_names_intrinsic_static_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/variable_names_intrinsic_static_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/intrinsic/variable_names_intrinsic_static_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/static_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/static_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/static_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/test_state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/test_state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/test_state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/test_state/test_state_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/test_state/test_state_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/test_state/test_state_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/usage_metrics_static_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/usage_metrics_static_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/usage_metrics_static_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/variable_references_static_analyser.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/variable_references_static_analyser.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/static_analyser/variable_references_static_analyser.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/boto_client.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/boto_client.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/boto_client.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/encoding.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/encoding.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/encoding.pyo
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/json_path.py
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/json_path.pyc
+${PYSITELIB}/moto/stepfunctions/parser/asl/utils/json_path.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/activity.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/activity.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/activity.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution_worker_comm.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution_worker_comm.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/execution_worker_comm.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/state_machine.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/state_machine.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/state_machine.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/store.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/store.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/store.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/execution.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/execution.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/execution.pyo
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/execution_worker.py
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/execution_worker.pyc
+${PYSITELIB}/moto/stepfunctions/parser/backend/test_state/execution_worker.pyo
+${PYSITELIB}/moto/stepfunctions/parser/models.py
+${PYSITELIB}/moto/stepfunctions/parser/models.pyc
+${PYSITELIB}/moto/stepfunctions/parser/models.pyo
+${PYSITELIB}/moto/stepfunctions/parser/provider.py
+${PYSITELIB}/moto/stepfunctions/parser/provider.pyc
+${PYSITELIB}/moto/stepfunctions/parser/provider.pyo
+${PYSITELIB}/moto/stepfunctions/parser/quotas.py
+${PYSITELIB}/moto/stepfunctions/parser/quotas.pyc
+${PYSITELIB}/moto/stepfunctions/parser/quotas.pyo
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/__init__.py
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/__init__.pyc
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/__init__.pyo
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_activity.py
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_activity.pyc
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_activity.pyo
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_activity_plugin.py
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_activity_plugin.pyc
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_activity_plugin.pyo
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_statemachine.py
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_statemachine.pyc
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_statemachine.pyo
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_statemachine_plugin.py
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_statemachine_plugin.pyc
+${PYSITELIB}/moto/stepfunctions/parser/resource_providers/aws_stepfunctions_statemachine_plugin.pyo
+${PYSITELIB}/moto/stepfunctions/parser/stepfunctions_utils.py
+${PYSITELIB}/moto/stepfunctions/parser/stepfunctions_utils.pyc
+${PYSITELIB}/moto/stepfunctions/parser/stepfunctions_utils.pyo
+${PYSITELIB}/moto/stepfunctions/parser/usage.py
+${PYSITELIB}/moto/stepfunctions/parser/usage.pyc
+${PYSITELIB}/moto/stepfunctions/parser/usage.pyo
+${PYSITELIB}/moto/stepfunctions/parser/utils.py
+${PYSITELIB}/moto/stepfunctions/parser/utils.pyc
+${PYSITELIB}/moto/stepfunctions/parser/utils.pyo
 ${PYSITELIB}/moto/stepfunctions/responses.py
 ${PYSITELIB}/moto/stepfunctions/responses.pyc
 ${PYSITELIB}/moto/stepfunctions/responses.pyo
@@ -2513,7 +4040,7 @@ ${PYSITELIB}/moto/support/exceptions.pyo
 ${PYSITELIB}/moto/support/models.py
 ${PYSITELIB}/moto/support/models.pyc
 ${PYSITELIB}/moto/support/models.pyo
-${PYSITELIB}/moto/support/resources/describe_trusted_advisor_checks.json
+${PYSITELIB}/moto/support/resources/describe_trusted_advisor_checks.json.gz
 ${PYSITELIB}/moto/support/responses.py
 ${PYSITELIB}/moto/support/responses.pyc
 ${PYSITELIB}/moto/support/responses.pyo
@@ -2586,6 +4113,18 @@ ${PYSITELIB}/moto/textract/responses.pyo
 ${PYSITELIB}/moto/textract/urls.py
 ${PYSITELIB}/moto/textract/urls.pyc
 ${PYSITELIB}/moto/textract/urls.pyo
+${PYSITELIB}/moto/timestreamquery/__init__.py
+${PYSITELIB}/moto/timestreamquery/__init__.pyc
+${PYSITELIB}/moto/timestreamquery/__init__.pyo
+${PYSITELIB}/moto/timestreamquery/exceptions.py
+${PYSITELIB}/moto/timestreamquery/exceptions.pyc
+${PYSITELIB}/moto/timestreamquery/exceptions.pyo
+${PYSITELIB}/moto/timestreamquery/models.py
+${PYSITELIB}/moto/timestreamquery/models.pyc
+${PYSITELIB}/moto/timestreamquery/models.pyo
+${PYSITELIB}/moto/timestreamquery/urls.py
+${PYSITELIB}/moto/timestreamquery/urls.pyc
+${PYSITELIB}/moto/timestreamquery/urls.pyo
 ${PYSITELIB}/moto/timestreamwrite/__init__.py
 ${PYSITELIB}/moto/timestreamwrite/__init__.pyc
 ${PYSITELIB}/moto/timestreamwrite/__init__.pyo
@@ -2616,6 +4155,24 @@ ${PYSITELIB}/moto/transcribe/responses.p
 ${PYSITELIB}/moto/transcribe/urls.py
 ${PYSITELIB}/moto/transcribe/urls.pyc
 ${PYSITELIB}/moto/transcribe/urls.pyo
+${PYSITELIB}/moto/transfer/__init__.py
+${PYSITELIB}/moto/transfer/__init__.pyc
+${PYSITELIB}/moto/transfer/__init__.pyo
+${PYSITELIB}/moto/transfer/exceptions.py
+${PYSITELIB}/moto/transfer/exceptions.pyc
+${PYSITELIB}/moto/transfer/exceptions.pyo
+${PYSITELIB}/moto/transfer/models.py
+${PYSITELIB}/moto/transfer/models.pyc
+${PYSITELIB}/moto/transfer/models.pyo
+${PYSITELIB}/moto/transfer/responses.py
+${PYSITELIB}/moto/transfer/responses.pyc
+${PYSITELIB}/moto/transfer/responses.pyo
+${PYSITELIB}/moto/transfer/types.py
+${PYSITELIB}/moto/transfer/types.pyc
+${PYSITELIB}/moto/transfer/types.pyo
+${PYSITELIB}/moto/transfer/urls.py
+${PYSITELIB}/moto/transfer/urls.pyc
+${PYSITELIB}/moto/transfer/urls.pyo
 ${PYSITELIB}/moto/utilities/__init__.py
 ${PYSITELIB}/moto/utilities/__init__.pyc
 ${PYSITELIB}/moto/utilities/__init__.pyo
@@ -2625,6 +4182,9 @@ ${PYSITELIB}/moto/utilities/arns.pyo
 ${PYSITELIB}/moto/utilities/aws_headers.py
 ${PYSITELIB}/moto/utilities/aws_headers.pyc
 ${PYSITELIB}/moto/utilities/aws_headers.pyo
+${PYSITELIB}/moto/utilities/collections.py
+${PYSITELIB}/moto/utilities/collections.pyc
+${PYSITELIB}/moto/utilities/collections.pyo
 ${PYSITELIB}/moto/utilities/constants.py
 ${PYSITELIB}/moto/utilities/constants.pyc
 ${PYSITELIB}/moto/utilities/constants.pyo
@@ -2634,6 +4194,9 @@ ${PYSITELIB}/moto/utilities/distutils_ve
 ${PYSITELIB}/moto/utilities/docker_utilities.py
 ${PYSITELIB}/moto/utilities/docker_utilities.pyc
 ${PYSITELIB}/moto/utilities/docker_utilities.pyo
+${PYSITELIB}/moto/utilities/id_generator.py
+${PYSITELIB}/moto/utilities/id_generator.pyc
+${PYSITELIB}/moto/utilities/id_generator.pyo
 ${PYSITELIB}/moto/utilities/paginator.py
 ${PYSITELIB}/moto/utilities/paginator.pyc
 ${PYSITELIB}/moto/utilities/paginator.pyo
@@ -2664,6 +4227,36 @@ ${PYSITELIB}/moto/wafv2/urls.pyo
 ${PYSITELIB}/moto/wafv2/utils.py
 ${PYSITELIB}/moto/wafv2/utils.pyc
 ${PYSITELIB}/moto/wafv2/utils.pyo
+${PYSITELIB}/moto/workspaces/__init__.py
+${PYSITELIB}/moto/workspaces/__init__.pyc
+${PYSITELIB}/moto/workspaces/__init__.pyo
+${PYSITELIB}/moto/workspaces/exceptions.py
+${PYSITELIB}/moto/workspaces/exceptions.pyc
+${PYSITELIB}/moto/workspaces/exceptions.pyo
+${PYSITELIB}/moto/workspaces/models.py
+${PYSITELIB}/moto/workspaces/models.pyc
+${PYSITELIB}/moto/workspaces/models.pyo
+${PYSITELIB}/moto/workspaces/responses.py
+${PYSITELIB}/moto/workspaces/responses.pyc
+${PYSITELIB}/moto/workspaces/responses.pyo
+${PYSITELIB}/moto/workspaces/urls.py
+${PYSITELIB}/moto/workspaces/urls.pyc
+${PYSITELIB}/moto/workspaces/urls.pyo
+${PYSITELIB}/moto/workspacesweb/__init__.py
+${PYSITELIB}/moto/workspacesweb/__init__.pyc
+${PYSITELIB}/moto/workspacesweb/__init__.pyo
+${PYSITELIB}/moto/workspacesweb/exceptions.py
+${PYSITELIB}/moto/workspacesweb/exceptions.pyc
+${PYSITELIB}/moto/workspacesweb/exceptions.pyo
+${PYSITELIB}/moto/workspacesweb/models.py
+${PYSITELIB}/moto/workspacesweb/models.pyc
+${PYSITELIB}/moto/workspacesweb/models.pyo
+${PYSITELIB}/moto/workspacesweb/responses.py
+${PYSITELIB}/moto/workspacesweb/responses.pyc
+${PYSITELIB}/moto/workspacesweb/responses.pyo
+${PYSITELIB}/moto/workspacesweb/urls.py
+${PYSITELIB}/moto/workspacesweb/urls.pyc
+${PYSITELIB}/moto/workspacesweb/urls.pyo
 ${PYSITELIB}/moto/xray/__init__.py
 ${PYSITELIB}/moto/xray/__init__.pyc
 ${PYSITELIB}/moto/xray/__init__.pyo

Index: pkgsrc/net/py-moto/distinfo
diff -u pkgsrc/net/py-moto/distinfo:1.9 pkgsrc/net/py-moto/distinfo:1.10
--- pkgsrc/net/py-moto/distinfo:1.9     Sat Jan 27 19:05:56 2024
+++ pkgsrc/net/py-moto/distinfo Fri Feb  7 22:07:53 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.9 2024/01/27 19:05:56 adam Exp $
+$NetBSD: distinfo,v 1.10 2025/02/07 22:07:53 adam Exp $
 
-BLAKE2s (moto-4.1.14.tar.gz) = c685bc2ac01428757fb05960b0e70dabdec82ff9d9d84fcda7bc31979fe2e33f
-SHA512 (moto-4.1.14.tar.gz) = 6bd963f8aa82aee2166a5deff61e37ffc915b4c14ffd218256ef465b0469f2066eaf70c40df8be40c91a6fc07bec02389ecef26d61de4d503c5e2b630f8ffd38
-Size (moto-4.1.14.tar.gz) = 3612859 bytes
+BLAKE2s (moto-5.0.28.tar.gz) = 22cd0e88d904849bf1c99577e6ef77218727a411d7b528c52aea7fd363ec1cda
+SHA512 (moto-5.0.28.tar.gz) = 1c66279543324a726544e583d5091da7d47aec7dbbb4a2d565b6017e370cfd8c51d613fb56cb6d4279d4101426d88231fd6c70c59082e7b20acf4311278b41d2
+Size (moto-5.0.28.tar.gz) = 6537950 bytes



Home | Main Index | Thread Index | Old Index