From 0cefd20565f5225ea8c1818080fe0d586d3e424f Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 5 Dec 2025 16:22:02 -0400 Subject: [PATCH] [WIP] Prepare integration packaging during indexing Signed-off-by: Juan Cruz Viotti --- CMakeLists.txt | 1 + src/index/CMakeLists.txt | 3 +- src/index/index.cc | 52 +- src/pkg/CMakeLists.txt | 15 + src/pkg/include/sourcemeta/one/pkg.h | 34 + src/pkg/npm/npmignore | 1 + src/pkg/pkg.cc | 36 + .../include/sourcemeta/one/shared_metapack.h | 1 + test/sandbox/manifest-html.txt | 2569 +++++++++++++++++ 9 files changed, 2710 insertions(+), 2 deletions(-) create mode 100644 src/pkg/CMakeLists.txt create mode 100644 src/pkg/include/sourcemeta/one/pkg.h create mode 100644 src/pkg/npm/npmignore create mode 100644 src/pkg/pkg.cc diff --git a/CMakeLists.txt b/CMakeLists.txt index 0cdca925..79af7bb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,6 +62,7 @@ if(ONE_INDEX) add_subdirectory(src/resolver) add_subdirectory(src/html) add_subdirectory(src/web) + add_subdirectory(src/pkg) add_subdirectory(src/index) add_subdirectory(collections) add_dependencies(sourcemeta_one_index diff --git a/src/index/CMakeLists.txt b/src/index/CMakeLists.txt index a28969f0..ecb25976 100644 --- a/src/index/CMakeLists.txt +++ b/src/index/CMakeLists.txt @@ -5,12 +5,13 @@ sourcemeta_executable(NAMESPACE sourcemeta PROJECT one NAME index set_target_properties(sourcemeta_one_index PROPERTIES OUTPUT_NAME sourcemeta-one-index) target_compile_definitions(sourcemeta_one_index - PRIVATE SOURCEMETA_ONE_COLLECTIONS="${ONE_PREFIX}/share/sourcemeta/one/collections") + PRIVATE SOURCEMETA_ONE_DATA_DIRECTORY="${ONE_PREFIX}/share/sourcemeta/one") target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::one::resolver) target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::one::shared) target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::one::configuration) target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::one::web) +target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::one::pkg) target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::core::build) target_link_libraries(sourcemeta_one_index PRIVATE sourcemeta::core::uri) diff --git a/src/index/index.cc b/src/index/index.cc index e5b3cf5e..e30a423a 100644 --- a/src/index/index.cc +++ b/src/index/index.cc @@ -6,6 +6,7 @@ #include #include +#include #include #include #include @@ -40,6 +41,9 @@ static auto attribute_not_disabled( collection.extra.at(property).to_boolean(); } +static const std::filesystem::path DATA_DIRECTORY{ + SOURCEMETA_ONE_DATA_DIRECTORY}; + static auto print_progress(std::mutex &mutex, const std::size_t threads, const std::string_view title, const std::string_view prefix, @@ -98,7 +102,7 @@ static auto index_main(const std::string_view &program, std::filesystem::canonical(app.positional().at(0))}; std::cerr << "Using configuration: " << configuration_path.string() << "\n"; const auto raw_configuration{sourcemeta::one::Configuration::read( - configuration_path, SOURCEMETA_ONE_COLLECTIONS)}; + configuration_path, DATA_DIRECTORY / "collections")}; if (app.contains("verbose")) { sourcemeta::core::prettify(raw_configuration, std::cerr); @@ -235,6 +239,7 @@ static auto index_main(const std::string_view &program, constexpr auto THREAD_STACK_SIZE{8 * 1024 * 1024}; const auto explorer_path{output.path() / "explorer"}; + sourcemeta::core::parallel_for_each( resolver.begin(), resolver.end(), [&output, &schemas_path, &explorer_path, &resolver, &mutex, &adapter, @@ -470,6 +475,51 @@ static auto index_main(const std::string_view &program, concurrency); } + ///////////////////////////////////////////////////////////////////////////// + // (12) Generate integration packages + ///////////////////////////////////////////////////////////////////////////// + + // TODO: Determine from the configuration file + const auto generate_package{true}; + + if (generate_package) { + const auto pkg_path{output.path() / "pkg"}; + // TODO: Only if "pkg" is set? + sourcemeta::core::parallel_for_each( + resolver.begin(), resolver.end(), + [&output, &schemas_path, &resolver, &mutex, &adapter, + &mark_version_path, + &pkg_path](const auto &schema, const auto threads, const auto cursor) { + print_progress(mutex, threads, "Packaging", schema.first, cursor, + resolver.size()); + // TODO: Test overlaps here? + // TODO: Maybe indeed keep the same SENTINEL structure, and deal with + // it by always exposing a resolve() for the URI that gets you the + // schema and TS type? The resolve signature itself on TS can be an + // enum of all valid URIs + DISPATCH( + pkg_path / (schema.second.relative_path.string() + ".json"), + {schemas_path / schema.second.relative_path / SENTINEL / + "bundle.metapack", + mark_version_path}, + resolver, mutex, "Packaging", schema.first, "bundle", adapter, + output); + }, + concurrency, THREAD_STACK_SIZE); + + DISPATCH( + pkg_path / ".npmignore", + {DATA_DIRECTORY / "pkg" / "npm" / "npmignore", mark_version_path}, + resolver, mutex, "Packaging", "npm", "npmignore", adapter, output); + + // TODO: Also do this with a dispatch that takes base and just fills in some + // details + auto manifest_npm{sourcemeta::core::JSON::make_object()}; + manifest_npm.assign("name", sourcemeta::core::JSON{"XXXXXXXX"}); + manifest_npm.assign("version", sourcemeta::core::JSON{"0.0.0"}); + output.write_json_if_different(pkg_path / "package.json", manifest_npm); + } + // TODO: Print the size of the output directory here output.remove_unknown_files(); diff --git a/src/pkg/CMakeLists.txt b/src/pkg/CMakeLists.txt new file mode 100644 index 00000000..b89ee654 --- /dev/null +++ b/src/pkg/CMakeLists.txt @@ -0,0 +1,15 @@ +sourcemeta_library(NAMESPACE sourcemeta PROJECT one NAME pkg + SOURCES pkg.cc) + +target_link_libraries(sourcemeta_one_pkg PUBLIC sourcemeta::core::build) +target_link_libraries(sourcemeta_one_pkg PRIVATE sourcemeta::core::json) +target_link_libraries(sourcemeta_one_pkg PUBLIC sourcemeta::one::resolver) +target_link_libraries(sourcemeta_one_pkg PUBLIC sourcemeta::one::configuration) +target_link_libraries(sourcemeta_one_pkg PRIVATE sourcemeta::one::shared) + +install(FILES npm/npmignore + DESTINATION "${CMAKE_INSTALL_DATADIR}/sourcemeta/one/pkg/npm" + COMPONENT sourcemeta_one) + +target_sources(sourcemeta_one_pkg PRIVATE + npm/npmignore) diff --git a/src/pkg/include/sourcemeta/one/pkg.h b/src/pkg/include/sourcemeta/one/pkg.h new file mode 100644 index 00000000..81160b0e --- /dev/null +++ b/src/pkg/include/sourcemeta/one/pkg.h @@ -0,0 +1,34 @@ +#ifndef SOURCEMETA_ONE_PKG_H_ +#define SOURCEMETA_ONE_PKG_H_ + +#include +#include +#include + +#include // std::filesystem + +namespace sourcemeta::one { + +struct GENERATE_PKG_EXTRACT_JSON { + using Context = sourcemeta::one::Resolver; + static auto + handler(const std::filesystem::path &destination, + const sourcemeta::core::BuildDependencies + &dependencies, + const sourcemeta::core::BuildDynamicCallback &, + const Context &resolver) -> void; +}; + +struct GENERATE_PKG_COPY_FILE { + using Context = sourcemeta::one::Resolver; + static auto + handler(const std::filesystem::path &destination, + const sourcemeta::core::BuildDependencies + &dependencies, + const sourcemeta::core::BuildDynamicCallback &, + const Context &resolver) -> void; +}; + +} // namespace sourcemeta::one + +#endif diff --git a/src/pkg/npm/npmignore b/src/pkg/npm/npmignore new file mode 100644 index 00000000..752e0b65 --- /dev/null +++ b/src/pkg/npm/npmignore @@ -0,0 +1 @@ +*.deps diff --git a/src/pkg/pkg.cc b/src/pkg/pkg.cc new file mode 100644 index 00000000..da0c7f75 --- /dev/null +++ b/src/pkg/pkg.cc @@ -0,0 +1,36 @@ +#include + +#include + +#include // assert +#include // std::ofstream + +namespace sourcemeta::one { + +auto GENERATE_PKG_EXTRACT_JSON::handler( + const std::filesystem::path &destination, + const sourcemeta::core::BuildDependencies + &dependencies, + const sourcemeta::core::BuildDynamicCallback &, + const Context &) -> void { + auto document{sourcemeta::one::read_json(dependencies.front())}; + assert(destination.is_absolute()); + std::filesystem::create_directories(destination.parent_path()); + std::ofstream stream{destination}; + assert(!stream.fail()); + sourcemeta::core::prettify(document, stream); +} + +auto GENERATE_PKG_COPY_FILE::handler( + const std::filesystem::path &destination, + const sourcemeta::core::BuildDependencies + &dependencies, + const sourcemeta::core::BuildDynamicCallback &, + const Context &) -> void { + assert(destination.is_absolute()); + std::filesystem::create_directories(destination.parent_path()); + std::filesystem::copy_file(dependencies.front(), destination, + std::filesystem::copy_options::overwrite_existing); +} + +} // namespace sourcemeta::one diff --git a/src/shared/include/sourcemeta/one/shared_metapack.h b/src/shared/include/sourcemeta/one/shared_metapack.h index ce556c11..0faa8bee 100644 --- a/src/shared/include/sourcemeta/one/shared_metapack.h +++ b/src/shared/include/sourcemeta/one/shared_metapack.h @@ -45,6 +45,7 @@ auto write_json(const std::filesystem::path &destination, const sourcemeta::core::JSON &extension, const std::chrono::milliseconds duration) -> void; +// TODO: This doesn't do anything anymore, as we have `.format()`. Delete it auto write_pretty_json(const std::filesystem::path &destination, const sourcemeta::core::JSON &document, const sourcemeta::core::JSON::String &mime, diff --git a/test/sandbox/manifest-html.txt b/test/sandbox/manifest-html.txt index 425560c9..b2981c4f 100644 --- a/test/sandbox/manifest-html.txt +++ b/test/sandbox/manifest-html.txt @@ -7999,6 +7999,2575 @@ ./explorer/test/v2.0/schema/%/schema-html.metapack.deps ./explorer/test/v2.0/schema/%/schema.metapack ./explorer/test/v2.0/schema/%/schema.metapack.deps +./pkg +./pkg/.npmignore +./pkg/.npmignore.deps +./pkg/geojson +./pkg/geojson/v1.0.5 +./pkg/geojson/v1.0.5/boundingbox.json +./pkg/geojson/v1.0.5/boundingbox.json.deps +./pkg/geojson/v1.0.5/feature.json +./pkg/geojson/v1.0.5/feature.json.deps +./pkg/geojson/v1.0.5/featurecollection.json +./pkg/geojson/v1.0.5/featurecollection.json.deps +./pkg/geojson/v1.0.5/geojson.json +./pkg/geojson/v1.0.5/geojson.json.deps +./pkg/geojson/v1.0.5/geometry.json +./pkg/geojson/v1.0.5/geometry.json.deps +./pkg/geojson/v1.0.5/geometrycollection.json +./pkg/geojson/v1.0.5/geometrycollection.json.deps +./pkg/geojson/v1.0.5/linearringcoordinates.json +./pkg/geojson/v1.0.5/linearringcoordinates.json.deps +./pkg/geojson/v1.0.5/linestring.json +./pkg/geojson/v1.0.5/linestring.json.deps +./pkg/geojson/v1.0.5/linestringcoordinates.json +./pkg/geojson/v1.0.5/linestringcoordinates.json.deps +./pkg/geojson/v1.0.5/multilinestring.json +./pkg/geojson/v1.0.5/multilinestring.json.deps +./pkg/geojson/v1.0.5/multipoint.json +./pkg/geojson/v1.0.5/multipoint.json.deps +./pkg/geojson/v1.0.5/multipolygon.json +./pkg/geojson/v1.0.5/multipolygon.json.deps +./pkg/geojson/v1.0.5/point.json +./pkg/geojson/v1.0.5/point.json.deps +./pkg/geojson/v1.0.5/pointcoordinates.json +./pkg/geojson/v1.0.5/pointcoordinates.json.deps +./pkg/geojson/v1.0.5/polygon.json +./pkg/geojson/v1.0.5/polygon.json.deps +./pkg/geojson/v1.0.5/polygoncoordinates.json +./pkg/geojson/v1.0.5/polygoncoordinates.json.deps +./pkg/package.json +./pkg/sourcemeta +./pkg/sourcemeta/one +./pkg/sourcemeta/one/api +./pkg/sourcemeta/one/api/error.json +./pkg/sourcemeta/one/api/error.json.deps +./pkg/sourcemeta/one/api/list +./pkg/sourcemeta/one/api/list/response.json +./pkg/sourcemeta/one/api/list/response.json.deps +./pkg/sourcemeta/one/api/schemas +./pkg/sourcemeta/one/api/schemas/dependencies +./pkg/sourcemeta/one/api/schemas/dependencies/response.json +./pkg/sourcemeta/one/api/schemas/dependencies/response.json.deps +./pkg/sourcemeta/one/api/schemas/evaluate +./pkg/sourcemeta/one/api/schemas/evaluate/response.json +./pkg/sourcemeta/one/api/schemas/evaluate/response.json.deps +./pkg/sourcemeta/one/api/schemas/health +./pkg/sourcemeta/one/api/schemas/health/response.json +./pkg/sourcemeta/one/api/schemas/health/response.json.deps +./pkg/sourcemeta/one/api/schemas/locations +./pkg/sourcemeta/one/api/schemas/locations/response.json +./pkg/sourcemeta/one/api/schemas/locations/response.json.deps +./pkg/sourcemeta/one/api/schemas/metadata +./pkg/sourcemeta/one/api/schemas/metadata/response.json +./pkg/sourcemeta/one/api/schemas/metadata/response.json.deps +./pkg/sourcemeta/one/api/schemas/position.json +./pkg/sourcemeta/one/api/schemas/position.json.deps +./pkg/sourcemeta/one/api/schemas/positions +./pkg/sourcemeta/one/api/schemas/positions/response.json +./pkg/sourcemeta/one/api/schemas/positions/response.json.deps +./pkg/sourcemeta/one/api/schemas/search +./pkg/sourcemeta/one/api/schemas/search/response.json +./pkg/sourcemeta/one/api/schemas/search/response.json.deps +./pkg/sourcemeta/one/api/schemas/stats +./pkg/sourcemeta/one/api/schemas/stats/response.json +./pkg/sourcemeta/one/api/schemas/stats/response.json.deps +./pkg/sourcemeta/one/api/schemas/trace +./pkg/sourcemeta/one/api/schemas/trace/response.json +./pkg/sourcemeta/one/api/schemas/trace/response.json.deps +./pkg/sourcemeta/one/configuration +./pkg/sourcemeta/one/configuration/collection.json +./pkg/sourcemeta/one/configuration/collection.json.deps +./pkg/sourcemeta/one/configuration/configuration.json +./pkg/sourcemeta/one/configuration/configuration.json.deps +./pkg/sourcemeta/one/configuration/contents.json +./pkg/sourcemeta/one/configuration/contents.json.deps +./pkg/sourcemeta/one/configuration/extends.json +./pkg/sourcemeta/one/configuration/extends.json.deps +./pkg/sourcemeta/one/configuration/page.json +./pkg/sourcemeta/one/configuration/page.json.deps +./pkg/sourcemeta/one/configuration/rpath.json +./pkg/sourcemeta/one/configuration/rpath.json.deps +./pkg/sourcemeta/std +./pkg/sourcemeta/std/v0 +./pkg/sourcemeta/std/v0/bipm +./pkg/sourcemeta/std/v0/bipm/si +./pkg/sourcemeta/std/v0/bipm/si/2019 +./pkg/sourcemeta/std/v0/bipm/si/2019/base +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/attosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centiampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centiampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centicandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centicandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centigram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centigram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centikelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centikelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centimetre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centimetre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centimole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centimole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centisecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/centisecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/deciampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/deciampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decicandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decicandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decigram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decigram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decikelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decikelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decimetre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decimetre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decimole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decimole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decisecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/decisecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/examole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/examole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/exasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/femtosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gigasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/gram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/hectosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kiloampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kiloampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/kilosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/megasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microcandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microcandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microgram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microgram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microkelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microkelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/micrometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/micrometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/micromole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/micromole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microsecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/microsecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/milliampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/milliampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millicandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millicandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/milligram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/milligram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millikelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millikelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millimetre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millimetre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millimole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millimole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millisecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/millisecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/nanosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/petasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/picosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quectosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/quettasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/ronnasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/rontosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teraampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teraampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teracandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teracandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teragram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teragram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/terakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/terakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/terametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/terametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teramole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/teramole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/terasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/terasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yoctosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/yottasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptoampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptoampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptocandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptocandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptokelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptokelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptometre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptometre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptomole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptomole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptosecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zeptosecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettaampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettaampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettacandela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettacandela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettagram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettagram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettakelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettakelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettametre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettametre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettamole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettamole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettasecond.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/prefixed/zettasecond.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/amount-of-substance.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/amount-of-substance.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/electric-current.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/electric-current.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/length.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/length.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/luminous-intensity.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/luminous-intensity.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/mass.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/mass.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/thermodynamic-temperature.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/thermodynamic-temperature.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/time.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/quantity/time.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/symbol.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/symbol.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/ampere.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/ampere.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/candela.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/candela.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/kelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/kelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/kilogram.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/kilogram.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/metre.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/metre.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/mole.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/mole.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/second.json +./pkg/sourcemeta/std/v0/bipm/si/2019/base/unit/second.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/compound +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/joule-per-kelvin.json +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/joule-per-kelvin.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/joule-second.json +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/joule-second.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/lumen-per-watt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/lumen-per-watt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/metre-per-second.json +./pkg/sourcemeta/std/v0/bipm/si/2019/compound/metre-per-second.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/avogadro.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/avogadro.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/boltzmann.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/boltzmann.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/caesium-frequency.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/caesium-frequency.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/elementary-charge.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/elementary-charge.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/light-speed.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/light-speed.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/luminous-efficacy.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/luminous-efficacy.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/planck.json +./pkg/sourcemeta/std/v0/bipm/si/2019/constant/planck.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/attoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centibecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centibecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centicoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centicoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centidegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centidegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centifarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centifarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centigray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centigray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centihenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centihenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centihertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centihertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centijoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centijoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centikatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centikatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centilumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centilumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centilux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centilux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centinewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centinewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centipascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centipascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centisiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centisiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centisievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centisievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centisteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centisteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centitesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centitesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centivolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centivolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiwatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiwatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/centiweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decibecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decibecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decicoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decicoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decidegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decidegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decifarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decifarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decigray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decigray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decihenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decihenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decihertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decihertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decijoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decijoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decikatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decikatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decilumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decilumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decilux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decilux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decinewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decinewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decipascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decipascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decisiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decisiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decisievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decisievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decisteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decisteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decitesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decitesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decivolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/decivolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciwatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciwatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/deciweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/exaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/femtoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/giganewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/giganewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/gigaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/hectoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kiloohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kiloohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kiloradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kiloradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kilowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kiloweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/kiloweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/meganewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/meganewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/megaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microbecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microbecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microcoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microcoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microdegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microdegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microfarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microfarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microgray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microgray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microhenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microhenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microhertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microhertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microjoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microjoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microkatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microkatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microlumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microlumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microlux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microlux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/micronewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/micronewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/micropascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/micropascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microsiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microsiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microsievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microsievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microsteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microsteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microtesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microtesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microvolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microvolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microwatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microwatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/microweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millibecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millibecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millicoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millicoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millidegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millidegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millifarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millifarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milligray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milligray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millihenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millihenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millihertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millihertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millijoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millijoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millikatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millikatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millilumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millilumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millilux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millilux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millinewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millinewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millipascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millipascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millisiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millisiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millisievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millisievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millisteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millisteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millitesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millitesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millivolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/millivolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliwatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliwatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/milliweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/nanoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/petaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/piconewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/piconewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/picoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quectoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/quettaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/ronnaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/rontoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teracoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teracoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teradegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teradegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teragray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teragray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teralumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teralumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teralux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teralux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teranewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teranewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teraohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teraohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teraradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teraradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teratesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teratesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teravolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teravolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/terawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teraweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/teraweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yoctoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/yottaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptobecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptobecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptocoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptocoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptodegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptodegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptofarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptofarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptogray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptogray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptohenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptohenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptohertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptohertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptojoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptojoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptokatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptokatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptolumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptolumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptolux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptolux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptonewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptonewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptoohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptoohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptopascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptopascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptoradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptoradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptosiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptosiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptosievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptosievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptosteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptosteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptotesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptotesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptovolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptovolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptowatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptowatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptoweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zeptoweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettabecquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettabecquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettacoulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettacoulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettadegree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettadegree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettafarad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettafarad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettagray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettagray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettahenry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettahenry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettahertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettahertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettajoule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettajoule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettakatal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettakatal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettalumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettalumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettalux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettalux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettanewton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettanewton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettaohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettaohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettapascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettapascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettaradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettaradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettasiemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettasiemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettasievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettasievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettasteradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettasteradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettatesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettatesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettavolt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettavolt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettawatt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettawatt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettaweber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/prefixed/zettaweber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/absorbed-dose.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/absorbed-dose.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/activity-referred-to-radionuclide.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/activity-referred-to-radionuclide.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/amount-of-heat.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/amount-of-heat.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/capacitance.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/capacitance.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/catalytic-activity.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/catalytic-activity.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/celsius-temperature.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/celsius-temperature.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/dose-equivalent.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/dose-equivalent.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-charge.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-charge.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-conductance.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-conductance.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-potential-difference.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-potential-difference.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-resistance.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/electric-resistance.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/energy.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/energy.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/force.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/force.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/frequency.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/frequency.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/illuminance.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/illuminance.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/inductance.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/inductance.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/kerma.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/kerma.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/luminous-flux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/luminous-flux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/magnetic-flux-density.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/magnetic-flux-density.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/magnetic-flux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/magnetic-flux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/plane-angle.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/plane-angle.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/power.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/power.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/pressure.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/pressure.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/radiant-flux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/radiant-flux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/solid-angle.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/solid-angle.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/stress.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/stress.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/work.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/quantity/work.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/symbol.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/symbol.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/becquerel.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/becquerel.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/coulomb.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/coulomb.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/degree-celsius.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/degree-celsius.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/farad.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/farad.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/gray.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/gray.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/henry.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/henry.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/hertz.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/hertz.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/joule.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/joule.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/katal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/katal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/lumen.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/lumen.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/lux.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/lux.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/newton.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/newton.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/ohm.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/ohm.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/pascal.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/pascal.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/radian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/radian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/siemens.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/siemens.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/sievert.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/sievert.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/steradian.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/steradian.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/tesla.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/tesla.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/volt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/volt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/watt.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/watt.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/weber.json +./pkg/sourcemeta/std/v0/bipm/si/2019/derived/unit/weber.json.deps +./pkg/sourcemeta/std/v0/bipm/si/2019/symbol.json +./pkg/sourcemeta/std/v0/bipm/si/2019/symbol.json.deps +./pkg/sourcemeta/std/v0/ieee +./pkg/sourcemeta/std/v0/ieee/floating-point +./pkg/sourcemeta/std/v0/ieee/floating-point/2019 +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary16-special.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary16-special.json.deps +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary16.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary16.json.deps +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary32-special.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary32-special.json.deps +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary32.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary32.json.deps +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary64-special.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary64-special.json.deps +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary64.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/binary64.json.deps +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/special.json +./pkg/sourcemeta/std/v0/ieee/floating-point/2019/special.json.deps +./pkg/sourcemeta/std/v0/ieee/posix +./pkg/sourcemeta/std/v0/ieee/posix/2017 +./pkg/sourcemeta/std/v0/ieee/posix/2017/path-absolute.json +./pkg/sourcemeta/std/v0/ieee/posix/2017/path-absolute.json.deps +./pkg/sourcemeta/std/v0/ieee/posix/2017/path-relative.json +./pkg/sourcemeta/std/v0/ieee/posix/2017/path-relative.json.deps +./pkg/sourcemeta/std/v0/ieee/posix/2017/path.json +./pkg/sourcemeta/std/v0/ieee/posix/2017/path.json.deps +./pkg/sourcemeta/std/v0/ietf +./pkg/sourcemeta/std/v0/ietf/email +./pkg/sourcemeta/std/v0/ietf/email/address.json +./pkg/sourcemeta/std/v0/ietf/email/address.json.deps +./pkg/sourcemeta/std/v0/ietf/encoding +./pkg/sourcemeta/std/v0/ietf/encoding/base16.json +./pkg/sourcemeta/std/v0/ietf/encoding/base16.json.deps +./pkg/sourcemeta/std/v0/ietf/encoding/base32.json +./pkg/sourcemeta/std/v0/ietf/encoding/base32.json.deps +./pkg/sourcemeta/std/v0/ietf/encoding/base32hex.json +./pkg/sourcemeta/std/v0/ietf/encoding/base32hex.json.deps +./pkg/sourcemeta/std/v0/ietf/encoding/base64.json +./pkg/sourcemeta/std/v0/ietf/encoding/base64.json.deps +./pkg/sourcemeta/std/v0/ietf/encoding/base64url.json +./pkg/sourcemeta/std/v0/ietf/encoding/base64url.json.deps +./pkg/sourcemeta/std/v0/ietf/http +./pkg/sourcemeta/std/v0/ietf/http/etag-strong.json +./pkg/sourcemeta/std/v0/ietf/http/etag-strong.json.deps +./pkg/sourcemeta/std/v0/ietf/http/etag-weak.json +./pkg/sourcemeta/std/v0/ietf/http/etag-weak.json.deps +./pkg/sourcemeta/std/v0/ietf/http/etag.json +./pkg/sourcemeta/std/v0/ietf/http/etag.json.deps +./pkg/sourcemeta/std/v0/ietf/http/http-url.json +./pkg/sourcemeta/std/v0/ietf/http/http-url.json.deps +./pkg/sourcemeta/std/v0/ietf/http/https-url.json +./pkg/sourcemeta/std/v0/ietf/http/https-url.json.deps +./pkg/sourcemeta/std/v0/ietf/http/method-standard.json +./pkg/sourcemeta/std/v0/ietf/http/method-standard.json.deps +./pkg/sourcemeta/std/v0/ietf/http/method.json +./pkg/sourcemeta/std/v0/ietf/http/method.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status-client-error.json +./pkg/sourcemeta/std/v0/ietf/http/status-client-error.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status-informational.json +./pkg/sourcemeta/std/v0/ietf/http/status-informational.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status-redirection.json +./pkg/sourcemeta/std/v0/ietf/http/status-redirection.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status-server-error.json +./pkg/sourcemeta/std/v0/ietf/http/status-server-error.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status-standard.json +./pkg/sourcemeta/std/v0/ietf/http/status-standard.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status-successful.json +./pkg/sourcemeta/std/v0/ietf/http/status-successful.json.deps +./pkg/sourcemeta/std/v0/ietf/http/status.json +./pkg/sourcemeta/std/v0/ietf/http/status.json.deps +./pkg/sourcemeta/std/v0/ietf/ip +./pkg/sourcemeta/std/v0/ietf/ip/v4 +./pkg/sourcemeta/std/v0/ietf/ip/v4/address.json +./pkg/sourcemeta/std/v0/ietf/ip/v4/address.json.deps +./pkg/sourcemeta/std/v0/ietf/ip/v6 +./pkg/sourcemeta/std/v0/ietf/ip/v6/address.json +./pkg/sourcemeta/std/v0/ietf/ip/v6/address.json.deps +./pkg/sourcemeta/std/v0/ietf/jsonpointer +./pkg/sourcemeta/std/v0/ietf/jsonpointer/pointer.json +./pkg/sourcemeta/std/v0/ietf/jsonpointer/pointer.json.deps +./pkg/sourcemeta/std/v0/ietf/language +./pkg/sourcemeta/std/v0/ietf/language/3066 +./pkg/sourcemeta/std/v0/ietf/language/3066/tag-syntax.json +./pkg/sourcemeta/std/v0/ietf/language/3066/tag-syntax.json.deps +./pkg/sourcemeta/std/v0/ietf/language/5646 +./pkg/sourcemeta/std/v0/ietf/language/5646/tag-syntax.json +./pkg/sourcemeta/std/v0/ietf/language/5646/tag-syntax.json.deps +./pkg/sourcemeta/std/v0/ietf/problem-details +./pkg/sourcemeta/std/v0/ietf/problem-details/problem.json +./pkg/sourcemeta/std/v0/ietf/problem-details/problem.json.deps +./pkg/sourcemeta/std/v0/ietf/uri +./pkg/sourcemeta/std/v0/ietf/uri/uri-reference.json +./pkg/sourcemeta/std/v0/ietf/uri/uri-reference.json.deps +./pkg/sourcemeta/std/v0/ietf/uri/uri-relative.json +./pkg/sourcemeta/std/v0/ietf/uri/uri-relative.json.deps +./pkg/sourcemeta/std/v0/ietf/uri/uri.json +./pkg/sourcemeta/std/v0/ietf/uri/uri.json.deps +./pkg/sourcemeta/std/v0/ietf/uri/url.json +./pkg/sourcemeta/std/v0/ietf/uri/url.json.deps +./pkg/sourcemeta/std/v0/ietf/uri/urn.json +./pkg/sourcemeta/std/v0/ietf/uri/urn.json.deps +./pkg/sourcemeta/std/v0/iso +./pkg/sourcemeta/std/v0/iso/c +./pkg/sourcemeta/std/v0/iso/c/2024 +./pkg/sourcemeta/std/v0/iso/c/2024/bool.json +./pkg/sourcemeta/std/v0/iso/c/2024/bool.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/double.json +./pkg/sourcemeta/std/v0/iso/c/2024/double.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/float-special.json +./pkg/sourcemeta/std/v0/iso/c/2024/float-special.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/float.json +./pkg/sourcemeta/std/v0/iso/c/2024/float.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/int16.json +./pkg/sourcemeta/std/v0/iso/c/2024/int16.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/int32.json +./pkg/sourcemeta/std/v0/iso/c/2024/int32.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/int64.json +./pkg/sourcemeta/std/v0/iso/c/2024/int64.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/int8.json +./pkg/sourcemeta/std/v0/iso/c/2024/int8.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/uint16.json +./pkg/sourcemeta/std/v0/iso/c/2024/uint16.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/uint32.json +./pkg/sourcemeta/std/v0/iso/c/2024/uint32.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/uint64.json +./pkg/sourcemeta/std/v0/iso/c/2024/uint64.json.deps +./pkg/sourcemeta/std/v0/iso/c/2024/uint8.json +./pkg/sourcemeta/std/v0/iso/c/2024/uint8.json.deps +./pkg/sourcemeta/std/v0/iso/country +./pkg/sourcemeta/std/v0/iso/country/2020 +./pkg/sourcemeta/std/v0/iso/country/2020/alpha-2.json +./pkg/sourcemeta/std/v0/iso/country/2020/alpha-2.json.deps +./pkg/sourcemeta/std/v0/iso/country/2020/alpha-3.json +./pkg/sourcemeta/std/v0/iso/country/2020/alpha-3.json.deps +./pkg/sourcemeta/std/v0/iso/country/2020/alpha-all.json +./pkg/sourcemeta/std/v0/iso/country/2020/alpha-all.json.deps +./pkg/sourcemeta/std/v0/iso/country/2020/numeric.json +./pkg/sourcemeta/std/v0/iso/country/2020/numeric.json.deps +./pkg/sourcemeta/std/v0/iso/currency +./pkg/sourcemeta/std/v0/iso/currency/2015 +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-code.json +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-code.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-currency.json +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-currency.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-fund.json +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-fund.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-precious-metal.json +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-precious-metal.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-test.json +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-test.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-unknown.json +./pkg/sourcemeta/std/v0/iso/currency/2015/alpha-unknown.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/historical +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/alpha-code.json +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/alpha-code.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/alpha-currency.json +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/alpha-currency.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/numeric-code.json +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/numeric-code.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/numeric-currency.json +./pkg/sourcemeta/std/v0/iso/currency/2015/historical/numeric-currency.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-code-additional.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-code-additional.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-code.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-code.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-currency.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-currency.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-fund.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-fund.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-precious-metal.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-precious-metal.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-test.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-test.json.deps +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-unknown.json +./pkg/sourcemeta/std/v0/iso/currency/2015/numeric-unknown.json.deps +./pkg/sourcemeta/std/v0/iso/datetime +./pkg/sourcemeta/std/v0/iso/datetime/2019 +./pkg/sourcemeta/std/v0/iso/datetime/2019/date +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-century.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-century.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-decade.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-decade.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-century.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-century.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-decade.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-decade.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-month.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-month.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-year.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-expanded-year.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-month.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-month.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-year.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/calendar-year.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-expanded-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-expanded-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-expanded-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-expanded-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-reduced-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-reduced-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-reduced-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-expanded-reduced-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-reduced-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-reduced-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-reduced-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/date/week-reduced-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-minute-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-minute-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-minute-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-minute-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shift-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shift-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shift-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shift-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shifthour-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shifthour-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shifthour-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-shifthour-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-utc-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-utc-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-utc-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/calendar-utc-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-minute-utc-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-minute-utc-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-minute-utc-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-minute-utc-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shift-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shift-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shift-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shift-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shifthour-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shifthour-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shifthour-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-shifthour-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-utc-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-utc-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-utc-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/ordinal-utc-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-minute-shift-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-minute-shift-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-minute-shift-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-minute-shift-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shift-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shift-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shift-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shift-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shifthour-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shifthour-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shifthour-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-shifthour-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-utc-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-utc-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-utc-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/datetime/week-utc-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/designator-extension.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/designator-extension.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/designator.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/designator.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/weeks.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/duration/weeks.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/duration-end-week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-duration-week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/interval/start-end-week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/duration-end-week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-duration-week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-calendar-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-calendar-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-calendar-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-calendar-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-ordinal-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-ordinal-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-ordinal-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-ordinal-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-week-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-week-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-week-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/recurring/start-end-week-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/beginning-day-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/beginning-day-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/beginning-day-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/beginning-day-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-hour-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-hour-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-minute-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-minute-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-minute-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-minute-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-second-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-second-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-second-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/decimal-second-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/hour-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/hour-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/hour-minute-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/hour-minute-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/hour-minute-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/hour-minute-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-shift-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-shift-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-shift-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/local-day-shift-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/shift-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/shift-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/shift-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/shift-extended.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/utc-day-basic.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/utc-day-basic.json.deps +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/utc-day-extended.json +./pkg/sourcemeta/std/v0/iso/datetime/2019/time/utc-day-extended.json.deps +./pkg/sourcemeta/std/v0/iso/it +./pkg/sourcemeta/std/v0/iso/it/2015 +./pkg/sourcemeta/std/v0/iso/it/2015/byte.json +./pkg/sourcemeta/std/v0/iso/it/2015/byte.json.deps +./pkg/sourcemeta/std/v0/iso/language +./pkg/sourcemeta/std/v0/iso/language/2023 +./pkg/sourcemeta/std/v0/iso/language/2023/set-1.json +./pkg/sourcemeta/std/v0/iso/language/2023/set-1.json.deps +./pkg/sourcemeta/std/v0/iso/language/2023/set-2-bibliographic.json +./pkg/sourcemeta/std/v0/iso/language/2023/set-2-bibliographic.json.deps +./pkg/sourcemeta/std/v0/iso/language/2023/set-2-terminologic.json +./pkg/sourcemeta/std/v0/iso/language/2023/set-2-terminologic.json.deps +./pkg/sourcemeta/std/v0/iso/language/2023/set-3.json +./pkg/sourcemeta/std/v0/iso/language/2023/set-3.json.deps +./pkg/sourcemeta/std/v0/iso/language/2023/set-5.json +./pkg/sourcemeta/std/v0/iso/language/2023/set-5.json.deps +./pkg/sourcemeta/std/v0/iso/units +./pkg/sourcemeta/std/v0/iso/units/2022 +./pkg/sourcemeta/std/v0/iso/units/2022/percentage.json +./pkg/sourcemeta/std/v0/iso/units/2022/percentage.json.deps +./pkg/sourcemeta/std/v0/jsonrpc +./pkg/sourcemeta/std/v0/jsonrpc/v2.0 +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/batch-request.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/batch-request.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/batch-response.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/batch-response.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/code-predefined.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/code-predefined.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/code.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/code.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/error.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/error.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/identifier.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/identifier.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/method-internal.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/method-internal.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/method.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/method.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/notification.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/notification.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/parameters.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/parameters.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/request.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/request.json.deps +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/response.json +./pkg/sourcemeta/std/v0/jsonrpc/v2.0/response.json.deps +./pkg/sourcemeta/std/v0/misc +./pkg/sourcemeta/std/v0/misc/schema-like.json +./pkg/sourcemeta/std/v0/misc/schema-like.json.deps +./pkg/sourcemeta/std/v0/misc/single-line-text.json +./pkg/sourcemeta/std/v0/misc/single-line-text.json.deps +./pkg/sourcemeta/std/v0/w3c +./pkg/sourcemeta/std/v0/w3c/xmlschema +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001 +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/any-uri.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/any-uri.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/base64-binary.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/base64-binary.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/boolean.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/boolean.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/byte.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/byte.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/date-time.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/date-time.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/date.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/date.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/decimal.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/decimal.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/double.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/double.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/duration.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/duration.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/entities.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/entities.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/entity.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/entity.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/float.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/float.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-day.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-day.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-month-day.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-month-day.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-month.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-month.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-year-month.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-year-month.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-year.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/g-year.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/hex-binary.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/hex-binary.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/id.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/id.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/idref.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/idref.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/idrefs.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/idrefs.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/int.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/int.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/integer.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/integer.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/language.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/language.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/long.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/long.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/name.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/name.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/ncname.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/ncname.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/negative-integer.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/negative-integer.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/nmtoken.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/nmtoken.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/nmtokens.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/nmtokens.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/non-negative-integer.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/non-negative-integer.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/non-positive-integer.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/non-positive-integer.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/normalized-string.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/normalized-string.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/notation.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/notation.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/positive-integer.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/positive-integer.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/qname.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/qname.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/short.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/short.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/string.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/string.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/time.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/time.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/token.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/token.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-byte.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-byte.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-int.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-int.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-long.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-long.json.deps +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-short.json +./pkg/sourcemeta/std/v0/w3c/xmlschema/2001/unsigned-short.json.deps +./pkg/sourcemeta/std/v0/xbrl +./pkg/sourcemeta/std/v0/xbrl/dtr +./pkg/sourcemeta/std/v0/xbrl/dtr/type +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31 +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/area-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/area-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/datetime-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/datetime-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/domain-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/domain-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/electric-charge-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/electric-charge-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/electric-current-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/electric-current-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/energy-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/energy-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/energy-per-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/energy-per-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/escaped-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/escaped-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/flow-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/flow-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/force-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/force-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/frequency-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/frequency-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/ghg-emissions-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/ghg-emissions-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/ghg-emissions-per-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/ghg-emissions-per-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/guidance-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/guidance-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/gyear-list-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/gyear-list-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/insolation-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/insolation-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/irradiance-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/irradiance-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/length-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/length-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/mass-flow-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/mass-flow-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/mass-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/mass-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/memory-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/memory-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-area-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-area-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-duration-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-duration-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-energy-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-energy-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-length-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-length-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-mass-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-mass-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-volume-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/monetary-per-volume-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/no-decimals-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/no-decimals-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/no-lang-string-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/no-lang-string-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/no-lang-token-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/no-lang-token-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/non-negative-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/non-negative-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/non-negative-no-decimals-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/non-negative-no-decimals-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/per-share-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/per-share-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/percent-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/percent-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/plane-angle-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/plane-angle-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/power-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/power-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/prefixed-content-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/prefixed-content-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/pressure-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/pressure-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/speed-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/speed-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/sqname-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/sqname-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/sqnames-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/sqnames-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/temperature-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/temperature-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/text-block-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/text-block-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/voltage-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/voltage-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/volume-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/volume-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/volume-per-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/volume-per-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/weight-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/weight-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/xml-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/xml-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/xml-nodes-item-type.json +./pkg/sourcemeta/std/v0/xbrl/dtr/type/2024-01-31/xml-nodes-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance +./pkg/sourcemeta/std/v0/xbrl/instance/2003 +./pkg/sourcemeta/std/v0/xbrl/instance/2003/any-uri-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/any-uri-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/base64-binary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/base64-binary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/boolean-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/boolean-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/byte-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/byte-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/date-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/date-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/date-time-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/date-time-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/decimal-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/decimal-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/double-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/double-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/duration-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/duration-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/float-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/float-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/fraction-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/fraction-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-day-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-day-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-month-day-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-month-day-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-month-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-month-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-year-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-year-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-year-month-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/g-year-month-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/hex-binary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/hex-binary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/int-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/int-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/integer-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/integer-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/language-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/language-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/long-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/long-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/name-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/name-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/ncname-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/ncname-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/negative-integer-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/negative-integer-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/non-negative-integer-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/non-negative-integer-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/non-positive-integer-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/non-positive-integer-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/normalized-string-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/normalized-string-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/positive-integer-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/positive-integer-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/pure-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/pure-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/qname-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/qname-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/shares-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/shares-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/short-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/short-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/string-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/string-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/time-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/time-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/token-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/token-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-byte-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-byte-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-int-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-int-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-long-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-long-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-short-item-type.json +./pkg/sourcemeta/std/v0/xbrl/instance/2003/unsigned-short-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr +./pkg/sourcemeta/std/v0/xbrl/utr/area-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/area-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/area-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/area-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/duration-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/duration-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/duration-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/duration-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/electric-charge-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/electric-charge-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/electric-charge-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/electric-charge-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/electric-current-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/electric-current-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/electric-current-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/electric-current-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/energy-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/energy-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/energy-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/energy-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/energy-per-monetary-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/energy-per-monetary-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/energy-per-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/energy-per-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/flow-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/flow-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/flow-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/flow-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/force-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/force-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/force-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/force-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/frequency-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/frequency-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/frequency-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/frequency-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-per-monetary-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-per-monetary-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-per-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/ghg-emissions-per-monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/length-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/length-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/length-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/length-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/mass-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/mass-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/mass-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/mass-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/memory-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/memory-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/memory-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/memory-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/monetary-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/monetary-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/monetary-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/per-share-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/per-share-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/per-share-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/per-share-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/per-unit-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/per-unit-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/per-unit-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/per-unit-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/plane-angle-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/plane-angle-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/plane-angle-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/plane-angle-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/power-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/power-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/power-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/power-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/pressure-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/pressure-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/pressure-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/pressure-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/pure-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/pure-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/pure-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/pure-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/shares-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/shares-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/shares-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/shares-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/temperature-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/temperature-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/temperature-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/temperature-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/voltage-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/voltage-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/voltage-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/voltage-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/volume-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/volume-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/volume-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/volume-item-type.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/volume-per-monetary-item-type-normative.json +./pkg/sourcemeta/std/v0/xbrl/utr/volume-per-monetary-item-type-normative.json.deps +./pkg/sourcemeta/std/v0/xbrl/utr/volume-per-monetary-item-type.json +./pkg/sourcemeta/std/v0/xbrl/utr/volume-per-monetary-item-type.json.deps +./pkg/test +./pkg/test/bundling +./pkg/test/bundling/double.json +./pkg/test/bundling/double.json.deps +./pkg/test/bundling/single.json +./pkg/test/bundling/single.json.deps +./pkg/test/camelcase +./pkg/test/camelcase/test +./pkg/test/camelcase/test/no-id-absolute-ref.json +./pkg/test/camelcase/test/no-id-absolute-ref.json.deps +./pkg/test/camelcase/test/no-id.json +./pkg/test/camelcase/test/no-id.json.deps +./pkg/test/doc +./pkg/test/doc/.period.json +./pkg/test/doc/.period.json.deps +./pkg/test/doc/string-1.json +./pkg/test/doc/string-1.json.deps +./pkg/test/extension +./pkg/test/extension/to-without.json +./pkg/test/extension/to-without.json.deps +./pkg/test/extension/with.json +./pkg/test/extension/with.json.deps +./pkg/test/extension/without.json +./pkg/test/extension/without.json.deps +./pkg/test/hyper +./pkg/test/hyper/2020-12.json +./pkg/test/hyper/2020-12.json.deps +./pkg/test/no-blaze +./pkg/test/no-blaze/string.json +./pkg/test/no-blaze/string.json.deps +./pkg/test/same +./pkg/test/same/schema.json +./pkg/test/same/schema.json.deps +./pkg/test/schemas +./pkg/test/schemas/%25 +./pkg/test/schemas/%25/test.json +./pkg/test/schemas/%25/test.json.deps +./pkg/test/schemas/absolute-refs.json +./pkg/test/schemas/absolute-refs.json.deps +./pkg/test/schemas/annotation.json +./pkg/test/schemas/annotation.json.deps +./pkg/test/schemas/camelcase.json +./pkg/test/schemas/camelcase.json.deps +./pkg/test/schemas/html.json +./pkg/test/schemas/html.json.deps +./pkg/test/schemas/id-same-as-base.json +./pkg/test/schemas/id-same-as-base.json.deps +./pkg/test/schemas/index.html.json +./pkg/test/schemas/index.html.json.deps +./pkg/test/schemas/meta-ref.json +./pkg/test/schemas/meta-ref.json.deps +./pkg/test/schemas/no-id.json +./pkg/test/schemas/no-id.json.deps +./pkg/test/schemas/no-schema-nor-id.json +./pkg/test/schemas/no-schema-nor-id.json.deps +./pkg/test/schemas/no-schema.json +./pkg/test/schemas/no-schema.json.deps +./pkg/test/schemas/string +./pkg/test/schemas/string.json +./pkg/test/schemas/string.json.deps +./pkg/test/schemas/string/overlap.json +./pkg/test/schemas/string/overlap.json.deps +./pkg/test/schemas/versions +./pkg/test/schemas/versions/v1.2.3.json +./pkg/test/schemas/versions/v1.2.3.json.deps +./pkg/test/schemas/with-rebase-same-host.json +./pkg/test/schemas/with-rebase-same-host.json.deps +./pkg/test/schemas/with-rebase.json +./pkg/test/schemas/with-rebase.json.deps +./pkg/test/schemas/yaml.json +./pkg/test/schemas/yaml.json.deps +./pkg/test/schemas/yml.json +./pkg/test/schemas/yml.json.deps +./pkg/test/v2.0 +./pkg/test/v2.0/schema.json +./pkg/test/v2.0/schema.json.deps ./schemas ./schemas/geojson ./schemas/geojson/v1.0.5